Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source.
The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type.
Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
For a list of methods for this resource, see the end of this page.
Resource representations
{ "dataStreamId" : string , "name" : string , "dataStreamName" : string , "type" : string , "dataType" : { "name" : string , "field" : [ { "name" : string , "format" : string , "optional" : boolean } ] } , "device" : { "uid" : string , "type" : string , "version" : string , "model" : string , "manufacturer" : string } , "application" : { "packageName" : string , "version" : string , "detailsUrl" : string , "name" : string } , "dataQualityStandard" : [ string ] }
application
nested object
application.
detailsUrl
string
application.
name
string
application.
packageName
string
application.
version
string
dataQualityStandard[]
list
dataStreamId
string
- The physical device's manufacturer, model, and serial number (UID).
- The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client.
- The data source's type.
- The data source's stream name.
The exact format of the data stream ID created by an Android application is: type:dataType.name
The exact format of the data stream ID created by a REST client is: type:dataType.name
When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number
Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
dataStreamName
string
dataType
nested object
dataType.
field[]
list
dataType.field[].
format
string
Acceptable values are:
- "
blob
" - "
floatList
" - "
floatPoint
" - "
integer
" - "
integerList
" - "
map
" - "
string
"
dataType.field[].
name
string
dataType.field[].
optional
boolean
dataType.
name
string
device
nested object
device.
manufacturer
string
device.
model
string
device.
type
string
Acceptable values are:
- "
chestStrap
" - "
headMounted
" - "
phone
" - "
scale
" - "
smartDisplay
" - "
tablet
" - "
unknown
" - "
watch
"
device.
uid
string
The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
device.
version
string
name
string
type
string
Acceptable values are:
- "
derived
" - "
raw
"
Methods
- create
- Creates a new data source that is unique across all data sources belonging
to this user.
A data source is a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point in every dataset inserted into or read from the Fitness API has an associated data source.
Each data source produces a unique stream of dataset updates, with a unique data source identifier. Not all changes to data source affect the data stream ID, so that data collected by updated versions of the same application/device can still be considered to belong to the same data source.
Data sources are identified using a string generated by the server, based on the contents of the source being created. ThedataStreamId
field should not be set when invoking this method. It will be automatically generated by the server with the correct format. If adataStreamId
is set, it must match the format that the server would generate. This format is a combination of some fields from the data source, and has a specific order. If it doesn't match, the request will fail with an error.
Specifying a DataType which is not a known type (beginning with "com.google.") will create a DataSource with a custom data type . Custom data types are only readable by the application that created them. Custom data types are deprecated; use standard data types instead.
In addition to the data source fields included in the data source ID, the developer project number that is authenticated when creating the data source is included. This developer project number is obfuscated when read by any other developer reading public data types. - delete
- Deletes the specified data source. The request will fail if the data source contains any data points.
- get
- Returns the specified data source.
- list
- Lists all data sources that are visible to the developer, using the OAuth scopes provided. The list is not exhaustive; the user may have private data sources that are only visible to other developers, or calls using other scopes.
- update
- Updates the specified data source. The
dataStreamId
,dataType
,type
,dataStreamName
, anddevice
properties with the exception ofversion
, cannot be modified.
Data sources are identified by theirdataStreamId
.