Vitals
DocsInk accepts Vital information through the Observation resource. For a complete reference and usage, please visit https://www.hl7.org/fhir/observation.html
In order for a posted vital record to be reviewable by clinical staff, an associated check-in must be created and set as an identifier of the Observation resource.
Request Example
{
"resourceType": "Observation",
"identifier": [
{
"system": "urn:oid:2.16.840.1.113883.3.7742",
"value": "155877894"
}
],
"status": "final",
"code": {
"coding": {
"code": "3141-9",
"display": "Patient Body Weight - Measured",
"system": "http://loinc.org"
}
},
"subject": {
"reference": "/Patient/DI-490807"
},
"context": {
"reference": "urn:uuid:encounter:1592571788381"
},
"effectiveDateTime": "2019-11-19",
"performer": [
{
"reference": "/Patient/DI-490807"
}
],
"valueQuantity": {
"value": 185,
"unit": "lb"
}
}