Clinical Observations

This guidance is under active development by NHS Digital and content may be added or updated on a regular basis.

Oxygen Saturation Observation Example

<Observation xmlns="http://hl7.org/fhir">
    <id value="OxygenSaturationObservation" />
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="deaa6c1a-b5d6-40a9-b12c-3f87e2b89105" />
    </identifier>
    <status value="final" />
    <category>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/observation-category" />
            <code value="vital-signs" />
            <display value="Vital Signs" />
        </coding>
    </category>
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="103228002" />
            <display value="Hemoglobin saturation with oxygen" />
        </coding>
        <coding>
            <system value="http://loinc.org" />
            <code value="2708-6" />
            <display value="Oxygen saturation in Arterial blood" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/30d3de6f-e800-47fa-b610-b02c7c8e9d57" />
    </subject>
    <effectiveDateTime value="2018-10-04T14:17:59+01:00" />
    <performer>
        <reference value="Practitioner/627be677-3eb2-4db4-9570-5669fd8c92f5" />
    </performer>
    <performer>
        <reference value="Organization/cdaea3db-8b40-41dc-9834-b42503e12382" />
    </performer>
    <valueQuantity>
        <value value="95" />
        <unit value="percent" />
        <system value="http://unitsofmeasure.org" />
        <code value="%" />
    </valueQuantity>
</Observation>
{
    "resourceType": "Observation",
    "id": "OxygenSaturationObservation",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "deaa6c1a-b5d6-40a9-b12c-3f87e2b89105"
        }
    ],
    "status": "final",
    "category":  [
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/observation-category",
                    "code": "vital-signs",
                    "display": "Vital Signs"
                }
            ]
        }
    ],
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "103228002",
                "display": "Hemoglobin saturation with oxygen"
            },
            {
                "system": "http://loinc.org",
                "code": "2708-6",
                "display": "Oxygen saturation in Arterial blood"
            }
        ]
    },
    "subject": {
        "reference": "Patient/30d3de6f-e800-47fa-b610-b02c7c8e9d57"
    },
    "effectiveDateTime": "2018-10-04T14:17:59+01:00",
    "performer":  [
        {
            "reference": "Practitioner/627be677-3eb2-4db4-9570-5669fd8c92f5"
        },
        {
            "reference": "Organization/cdaea3db-8b40-41dc-9834-b42503e12382"
        }
    ],
    "valueQuantity": {
        "value": 95,
        "unit": "percent",
        "system": "http://unitsofmeasure.org",
        "code": "%"
    }
}
back to top