Vitals Timeseries
daily.data.igg.created

Each sample is uniquely identified by a triple key (3-tuple) comprising of its resource type name, its source (ID or slug) and its timestamp. e.g., (igg, fitbit, 2023-01-23T12:34:56Z).

If multiple samples are received at the same triple key, the last sample received replaces all its previous versions.

Properties

event_typerequired
const string

Constant: daily.data.igg.created

datarequired
TimeseriesData
datarequired
ClientFacingTimeseries[]
id
integer | null

Measurement id. Note, this field has been deprecated and is no longer used

timestamprequired
string

The timestamp of the measurement.

timezone_offset
integer | null

Time zone UTC offset of the measurement. Positive offset indicates east of UTC; negative offset indicates west of UTC; and null indicates the time zone information is unavailable at source.

valuerequired
number

The value of the measurement.

type
string | null

The reading type of the measurement, e.g. cuff, scale, manual_scan, etc.

unitrequired
string

The unit of the value. We use SI units where possible, e.g. mmol/L for glucose/cholesterol, bpm for heart rate, etc.

source_idrequired
integer
sourcerequired
ClientFacingSource
namerequired
string

Name of source of information

slugrequired
string

Slug for designated source

logorequired
string

URL for source logo

user_idrequired
string
user_keyrequired
string

Examples

{
  "event_type": "daily.data.igg.created",
  "data": {
    "data": [
      {
        "timestamp": "2023-05-26T20:56:47.037483+00:00",
        "timezone_offset": null,
        "value": 12.0,
        "type": "dairy",
        "unit": "FSU"
      }
    ],
    "source_id": 1,
    "source": {
      "name": "Oura",
      "slug": "oura",
      "logo": "https://logo_url.com"
    },
    "user_id": "920570eb-b2bc-471a-a9bd-dcec86bdc04f",
    "user_key": "1ca25631-8824-43f5-9440-d426c3d6aae2"
  }
}