Observation-Neutrophils-Example

Example of an Observation indicating the Neutrophil count in a specimen.

Observation
{
    "resourceType": "Observation",
    "id": "Observation-Neutrophils-Example",
    "status": "final",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "1022551000000104",
                "display": "Neutrophil count"
            }
        ]
    },
    "subject": {
        "reference": "Patient/Patient-PatrickSammy-Example",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9449307873"
        }
    },
    "valueQuantity": {
        "value": 0.51,
        "unit": "10^9/l",
        "system": "http://unitsofmeasure.org",
        "code": "10^9/L"
    },
    "effectiveDateTime": "2023-09-03"
}
<Observation xmlns="http://hl7.org/fhir">
    <id value="Observation-Neutrophils-Example" />
    <status value="final" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="1022551000000104" />
            <display value="Neutrophil count" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/Patient-PatrickSammy-Example" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9449307873" />
        </identifier>
    </subject>
    <effectiveDateTime value="2023-09-03" />
    <valueQuantity>
        <value value="0.51" />
        <unit value="10^9/l" />
        <system value="http://unitsofmeasure.org" />
        <code value="10^9/L" />
    </valueQuantity>
</Observation>