Skip to main content

Overview

Vital Signs are represented as an FHIR Observation resources, restricted by US Core Vital Signs Profile. Each specific vital sign should also conform to its own profile as it is listed below: Supported Profiles Each Observation has next elements:
  • a status
  • a category code of “vital-signs”
  • a LOINC code, if available, which tells you what is being measured
  • a patient
  • a clinically relevant time
Each Observation must support:
  • a result value
    • if the result value is a numeric quantity, a standard UCUM unit
  • a reason if the value is absent*
  • component results

Must support elements, mandatory and optional search parameters

Observationmust support these elements:
  • status
  • Slices for category
    • category:VSCat
      • coding
        -system
        -code
  • code
  • subject
  • effectiveDateTime
  • valueQuantity
  • dataAbsentReason
  • component
    -code
    -valueQuantity
    -dataAbsentReason
The following search parameters and search parameter combinations SHALL be supported: SHALL support searching for all Observation for a patient using the patient and category search parameters: GET [base url]/Observation?patient={Type/}[id]&category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs SHALL support searching using the combination of the patient and code search parameters:
  • including optional support for OR search on code (e.g.code={system|}|{code},{system|}|{code},…)
GET [base url]/Observation?patient={Type/}[id]&code={system|}|{code}{,{system|}|{code},...} SHALL support searching using the combination of the patient and category and date search parameters:
  • including support for these date comparators: gt,lt,ge,le
  • including optional support for AND search on date (e.g.date={date}&date={date}…)
    GET [base url]/Observation?patient={Type/}[id]&category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs&date={gt|lt|ge|le}{date}}
The following search parameters and search parameter combinations SHOULD be supported:
SHOULD support searching using the combination of the patient and category and status search parameters:
  • including support for OR search on status (e.g.status={system|}|{code},{system|}|{code},…)
GET [base url]/Observation?patient={Type/}[id]&category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs&status={system|}|{code} SHOULD support searching using the combination of the patient and code and date search parameters:
  • including optional support for OR search on code (e.g.code={system|}|{code},{system|}|{code},…)
  • including support for these date comparators: gt,lt,ge,le
  • including optional support for AND search on date (e.g.date={date}&date={date}…)
GET [base url]/Observation?patient={Type/}[id]&code={system|}|{code},{system|}|{code},...}&date={gt|lt|ge|le}{date} The response to any search operation is always a list of resources in a Bundle or an Operation Outcome.

Observation By Patient Id

Search for Observation by patient. METHOD GET
PARAMS
[base url] - FHIR base url
[id] - Id for the Patient
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation By Id

Get Observation by ID. METHOD GET
or
PARAMS
[base url] - FHIR base url
{id} - Id for Observation resource
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation by patient and category

Get Observations for the specified patient and category search parameters: METHOD GET
PARAMS
[base url] - FHIR base url
[id] - patient id
{Type/} - Type for the Reference. Example: Patient
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation by patient and code

Get Observations for the specified patient and code search parameters: METHOD GET
PARAMS
[base url] - FHIR base url
[id] - patient id
{Type/} - Type for the Reference. Example: Patient
{code} - observation code
{system|} - terminology system used to represend observation code
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation by patient and category and date search parameters

Get Observations for the specified patient and category and date search parameters: METHOD GET
PARAMS [base url] - FHIR base url
[id] - patient id
{Type/} - Type for the Reference. Example: Patient
{date} - observation effective date
{gt|lt|ge|le} - prefix for date value
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation by patient and category and status search parameters

Get Observations for the specified patient and category and status search parameters:: METHOD GET
PARAMS [base url] - FHIR base url
[id] - patient id
{Type/} - Type for the Reference. Example: Patient
{date} - observation effective date
{gt|lt|ge|le} - prefix for date value
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE:

Observation by patient and code and date search parameters

Get Observations for the specified patient and code and date search parameters: METHOD GET
PARAMS
[base url] - FHIR base url
[id] - patient id
{Type/} - Type for the Reference. Example: Patient
{date} - observation effective date
{gt|lt|ge|le} - prefix for date value
{code} - observation code
{system|} - terminology system used to represend observation code
HEADERS The Authorization token SHALL be obtained during the Authentication and Authorization process. Go to Authentication and Authorization for further details. RESPONSES EXAMPLE: