This page is part of the FHIR Specification (v1.8.0: STU 3 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4 R3
The FHIR Vitals Signs profile sets a minimum expectations for the Observation Resource to record, search and fetch the vital signs associated with a patient that include the primary vitals signs plus additional measurements such as height weigth and BMI. When a FHIR implementation supports any of the vital signs listed below, the implementation SHALL conform to this profile for the vitals sign observation.
This profile identifies the required core elements and values. Support for basic mandatory searching of resources are defined below in the Quick Start section. It is based on the Argonaut DSTU2 Vital Signs Profile .
Example Usage Scenarios:
The following are example usage scenarios for the US VitalSigns profile:
The following data-elements are mandatory (i.e data MUST be present). These are presented below in a simple human-readable explanation. Profile specific guidance and an example are provided as well. The links to the Profile Definitions provide the formal views of the profile content, descriptions, mappings and the StructureDefinitions in JSON and XML.
Each Observation must have:
Profile specific implementation guidance:
Vital Sign Name | LOINC Code | UCUM Unit Code | Notes | Examples |
---|---|---|---|---|
Vital Signs Panel | 8716-3 | - | This is the top-level grouping structure for a set of vital signs. It has no value in Observation.valueQuantity ; instead, it just includes related links (with type=has-member) to the Observations in this set (e.g. respiratory rate, heart rate, BP). Note that querying for the panel may miss individual results that are not part of an actual panel. | Vital Signs Panel Example |
Respiratory Rate | 9279-1 | /min | Vital Signs Respiratory Rate Example | |
Heart rate | 8867-4 | /min | Vital Signs Heart Rate Example | |
Oxygen saturation | 59408-5 | % | 59408-5 (Oxygen saturation in Arterial blood by Pulse oximetry) replaces the deprecated code 2710-2 which had been listed in C-CDA. | Vital Signs Oxygen Saturation Example |
Body temperature | 8310-5 | Cel, [degF] | Vital Signs Body Temperature Example | |
Body height | 8302-2 | cm, [in_i] | Vital Signs Body height Example | |
Body length | 8306-3 | cm, [in_i] | Like height, but lying down, typically this is used for infants | Vital Signs Body Length Example |
Head circumference | 8287-5 | cm, [in_i] | Vital Signs Head Cirmcumference Example | |
Body weight | 29463-7 | g, kg,[lb_av] | Vital Signs Body Weight Example | |
Body mass index | 39156-5 | kg/m2 | Vital Body Mass Example | |
Blood pressure systolic and diastolic | 55284-4 | This is a grouping structure. It has no value in Observation.valueQuantity but contains at least one component (systolic and/or diastolic). | Vital Signs Blood Pressure Example, Vital Signs Blood Pressure Example with missing Diastolic measurement | |
Systolic blood pressure | 8480-6 | mm[Hg] | Observation.component code for a blood pressure Observation | Vital Signs Blood Pressure Example |
Diastolic blood pressure | 8462-4 | mm[Hg] | Observation.component code for a blood pressure Observation | Vital Signs Blood Pressure Example |
Mean blood pressure | 8478-0 | mm[Hg] | The mean blood pressure is most commonly a direct average taken off of an instrument. | Vital Signs Mean Blood Pressure Example |
Below is an overview of required search and read operations
Clients
GET [base]/Observation?patient=[id]&category=vital-signs
.GET [base]/Observation?patient=[id]&category=vital-signs&date=[date]{&date=[date]}
.GET [base]/Observation?patient=[id]&code[vital sign LOINC{,LOINC2,LOINC3,...}]
.GET [base]/Observation?patient=[id]&code=[LOINC{,LOINC2...}]vital-signs&date=[date]{&date=[date]}
.Servers
GET [base]/Observation?patient=[id]&category=vital-signs
.GET [base]/Observation?patient=[id]&category=vital-signs&date=[date]{&date=[date]}
.GET [base]/Observation?patient=[id]&code[vital sign LOINC{,LOINC2,LOINC3,...}]
.GET [base]/Observation?patient=[id]&code=[LOINC{,LOINC2...}]vital-signs&date=[date]{&date=[date]}
.Example: Search for all Vitals Signs measuirements for a patient
GET [base]/Observation?patient=1186747&category=vital-signs
Support: Mandatory to support search by category code.
Implementation Notes: Search based on vital sign category code. This search fetches a bundle of all Observation resources with category 'vital-signs' for the specified patient (how to search by reference) and (how to search by token). The table above is the minimum set, additional vital signs are allowed.
Response Class:
Example: Search for all heart rate observations for a patient:
GET [base]/Observation?patient=1186747&code=8867-4
Example: Search for all heart rate, respiratory rate and blood pressure observations for a patient
GET [base]/Observation?patient=1186747&code=8867-4,9279-1,55284-4
Support: Mandatory to support search by vital sign LOINC(s) listed above.
Implementation Notes: 1)Search based on vital sign LOINC code(s). This fetches a bundle of all Observation resources for specific vital sign(s) listed in the table above for the specified patient (how to search by reference) and [how to search by token)]. 2) The Argonaut Observation "code" parameter has been defined to search both in both Observation.code and Observation.component.code. For example when fetching blood pressures the same resources will be returned whether the search is based on 55284-4(Systolic and Diastolic BP), or the component codes 8480-6(Systolic BP) or 8462-4 (Diastolic BP).
Response Class:
Example: Find all the blood pressures after 2013-03-14
GET [base]/Observation?patient=555580&code=55284-4&date=ge2015-01-14
Support: Mandatory to support search by category code and date
Implementation Notes: Search based on vital sign category code and date. This fetches a bundle of all Observation resources with category 'vital-signs' for the specified patient for a specified time period (how to search by reference) and (how to search by token).
Response Class:
Profiles: | |
VitalSigns | FHIR Vital Signs Profile |
BodyWeight | FHIR Body Weight Profile |
RespRate | FHIR Respiratory Rate Profile |
HeartRate | FHIR Heart Rate Profile |
BodyTemp | FHIR Body Temperature Profile |
BodyHeight | FHIR Body Height Profile |
BodyLength | FHIR Body Length Profile |
HeadCircum | FHIR Head Circumference Profile |
OxygenSat | FHIR Oxygen Saturation Profile |
BMI | FHIR Body Mass Index (BMI) Profile |
MBP | FHIR Mean Blood Pressure Profile |
BP | FHIR Blood Pressure Profile |
VitalsPanel | FHIR Vital Signs Panel Profile |