Vitals Timeseries
daily.data.blood_pressure.created
Vitals Timeseries
daily.data.blood_pressure.created
New blood pressure samples have been 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., (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.created
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
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.blood_pressure.created",
"data": {
"data": [
{
"timestamp": "2023-05-26T20:56:48.259873+00:00",
"timezone_offset": null,
"systolic": "125",
"diastolic": "75",
"type": "cuff",
"unit": "mmHg"
}
],
"source_id": 1,
"source": {
"name": "Oura",
"slug": "oura",
"logo": "https://logo_url.com"
},
"user_id": "192d2b14-d860-4e1e-8c34-4f8d62e3d176",
"user_key": "ffca8fe6-549e-4068-a2d8-03f90bd5e49b"
}
}