UK Core Implementation Guide STU3 Sequence - Sprint 6 Review

An example to illustrate an observation of the white cell count of a blood specimen

Table View

Observation.id[0]UKCore-Observation-WhiteCellCount-Example
Observation.identifier[0].system[0]https://tools.ietf.org/html/rfc4122
Observation.identifier[0].value[0]2af46949-4938-4c57-bad4-c4363e1965d5
Observation.status[0]final
Observation.category[0].coding[0].system[0]http://snomed.info/sct
Observation.category[0].coding[0].code[0]394595002
Observation.category[0].coding[0].display[0]Pathology
Observation.code[0].coding[0].system[0]http://snomed.info/sct
Observation.code[0].coding[0].code[0]1022541000000102
Observation.code[0].coding[0].display[0]Total white cell count
Observation.performer[0].reference[0]Oranization/UKCore-Organization-LeedsTeachingHospital-Example
Observation.valueQuantity[0].value[0]11.2
Observation.valueQuantity[0].unit[0]10*9/L
Observation.specimen[0].reference[0]Specimen/UKCore-Specimen-BloodSpecimen-Example
Observation.referenceRange[0].low[0].value[0]4.0
Observation.referenceRange[0].high[0].value[0]17.0

Tree View

Observation

XML View

<Observation xmlns="http://hl7.org/fhir">
    <id value="UKCore-Observation-WhiteCellCount-Example" />
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="2af46949-4938-4c57-bad4-c4363e1965d5" />
    </identifier>
    <status value="final" />
    <category>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="394595002" />
            <display value="Pathology" />
        </coding>
    </category>
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="1022541000000102" />
            <display value="Total white cell count" />
        </coding>
    </code>
    <performer>
        <reference value="Oranization/UKCore-Organization-LeedsTeachingHospital-Example" />
    </performer>
    <valueQuantity>
        <value value="11.2" />
        <unit value="10*9/L" />
    </valueQuantity>
    <specimen>
        <reference value="Specimen/UKCore-Specimen-BloodSpecimen-Example" />
    </specimen>
    <referenceRange>
        <low>
            <value value="4.0" />
        </low>
        <high>
            <value value="17.0" />
        </high>
    </referenceRange>
</Observation>

JSON View

{
    "resourceType": "Observation",
    "id": "UKCore-Observation-WhiteCellCount-Example",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "2af46949-4938-4c57-bad4-c4363e1965d5"
        }
    ],
    "status": "final",
    "category":  [
        {
            "coding":  [
                {
                    "system": "http://snomed.info/sct",
                    "code": "394595002",
                    "display": "Pathology"
                }
            ]
        }
    ],
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "1022541000000102",
                "display": "Total white cell count"
            }
        ]
    },
    "performer":  [
        {
            "reference": "Oranization/UKCore-Organization-LeedsTeachingHospital-Example"
        }
    ],
    "valueQuantity": {
        "value": 11.2,
        "unit": "10*9/L"
    },
    "specimen": {
        "reference": "Specimen/UKCore-Specimen-BloodSpecimen-Example"
    },
    "referenceRange":  [
        {
            "low": {
                "value": 4
            },
            "high": {
                "value": 17
            }
        }
    ]
}

back to top