added
New properties for medical vital signs endpoint
almost 6 years ago by Steven Santa Maria
We recently added several new properties and objects for the vital signs endpoint response:
Property | Type | Description | Example |
---|---|---|---|
codes | Array[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" } ] |
name | String | Name representing the set of vitals | "Vital Signs" |
Within an object of the results array:
Property | Type | Description | Example |
---|---|---|---|
raw | Object | Un-normalized content as represented from the source. See raw object | { "codes": [], "name": "Diastolic BP", "unit": "mmHg", "value": "85" } |
values | Array[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 } ] |