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., (blood_pressure, 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.blood_pressure.updated

datarequired
TimeseriesData
datarequired
ClientFacingBloodPressureTimeseries[]
id
integer | null

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

timestamprequired
string
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.

systolicrequired
number
diastolicrequired
number
type
string | null
unitrequired
string
source_idrequired
integer
sourcerequired
ClientFacingSource
providerrequired
string

Provider slug. e.g., oura, fitbit, garmin.

type
string | null

The type of the data source (app or device) by which the summary or the timeseries data were recorded. This defaults to unknown when Vital cannot extract or infer that information

app_id
string | null

The identifier of the app which recorded this summary. This is only applicable to multi-source providers like Apple Health and Android Health Connect.

namerequired
string

[⚠️ Deprecated] Deprecated.

slugrequired
string

[⚠️ Deprecated] Deprecated.

logorequired
string

[⚠️ Deprecated] Deprecated.

user_idrequired
string

Examples

{
  "event_type": "daily.data.blood_pressure.updated",
  "data": {
    "data": [
      {
        "timestamp": "2023-09-19T13:06:04.287159+00:00",
        "timezone_offset": null,
        "systolic": "125",
        "diastolic": "75",
        "type": null,
        "unit": "mmHg"
      }
    ],
    "source_id": 1,
    "source": {
      "name": "Oura",
      "slug": "oura",
      "logo": "https://logo_url.com"
    },
    "user_id": "e1edc790-41e6-484f-92f2-20ac3b83633d"
  }
}