Clinical Observations

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

Temperature Observation Example

<Observation xmlns="http://hl7.org/fhir">
    <id value="TemperatureObservation" />
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="07907fc7-4a38-49af-b1cf-17503fdd1fa5" />
    </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="276885007" />
            <display value="Core body temperature" />
        </coding>
        <coding>
            <system value="http://loinc.org" />
            <code value="8310-5" />
            <display value="Body temperature" />
        </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="36.5" />
        <unit value="degree Celsius" />
        <system value="http://unitsofmeasure.org" />
        <code value="Cel" />
    </valueQuantity>
</Observation>
{
    "resourceType": "Observation",
    "id": "TemperatureObservation",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "07907fc7-4a38-49af-b1cf-17503fdd1fa5"
        }
    ],
    "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": "276885007",
                "display": "Core body temperature"
            },
            {
                "system": "http://loinc.org",
                "code": "8310-5",
                "display": "Body temperature"
            }
        ]
    },
    "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": 36.5,
        "unit": "degree Celsius",
        "system": "http://unitsofmeasure.org",
        "code": "Cel"
    }
}
back to top