Vital Signs — the canonical Observation
Every vital follows the same shape: status, category=vital-signs, a LOINC code, a subject, an effective time, and a value with UCUM units.
Vitals are the easiest Observations to learn because they're tightly profiled in base FHIR (and US Core inherits + tightens).
Required pattern
status— usuallyfinalcategory— must includevital-signscode— LOINC. e.g. body weight =29463-7, height =8302-2, heart rate =8867-4.subject— Patienteffective[x]—effectiveDateTimeoreffectivePeriodvalue[x]— usuallyvalueQuantitywith systemhttp://unitsofmeasure.org(UCUM)
UCUM units are case-sensitive: kg not Kg, mm[Hg] for blood pressure (with brackets!).
{
"resourceType": "Observation",
"id": "weight",
"meta": {
"profile": [
"http://hl7.org/fhir/us/core/StructureDefinition/us-core-vital-signs"
]
},
"status": "final",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
"code": "vital-signs"
}
]
}
],
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "29463-7",
"display": "Body weight"
}
]
},
"subject": {
"reference": "Patient/amy-shaw"
},
"effectiveDateTime": "2024-09-12",
"valueQuantity": {
"value": 72.5,
"unit": "kg",
"system": "http://unitsofmeasure.org",
"code": "kg"
}
}