added

New properties for medical vital signs endpoint

We recently added several new properties and objects for the vital signs endpoint response:

PropertyTypeDescriptionExample
codesArray[Object]A list of all codes.[
{
"code": "46680005",
"codeSystem": "2.16.840.1.113883.6.96",
"codeSystemName": "SNOMED CT"
},
{
"code": "74728-7",
"codeSystem": "2.16.840.1.113883.6.1",
"codeSystemName": "LOINC",
"name": "Vital Signs"
}
]
nameStringName representing the set of vitals"Vital Signs"

Within an object of the results array:

PropertyTypeDescriptionExample
rawObjectUn-normalized content as represented from the source. See raw object{
"codes": [],
"name": "Diastolic BP",
"unit": "mmHg",
"value": "85"
}
valuesArray[Object]Array of objects containing values, which are converted into standard units. Useful for showing data on a graph, or performing math functions. See value object.[
{
"unit": "mm[Hg]",
"value": 85
}
]