Observation-NoTransplant-Example

Example of an observation indicating absence of transplant procedures.

Observation
{
    "resourceType": "Observation",
    "id": "Observation-NoTransplant-Example",
    "status": "final",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "77465005",
                "display": "Transplantation"
            }
        ]
    },
    "subject": {
        "reference": "Patient/Patient-MeirLieberman-Example",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9449307873"
        }
    },
    "effectiveDateTime": "2023-08-05",
    "valueBoolean": false
}
<Observation xmlns="http://hl7.org/fhir">
    <id value="Observation-NoTransplant-Example" />
    <status value="final" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="77465005" />
            <display value="Transplantation" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/Patient-MeirLieberman-Example" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9449307873" />
        </identifier>
    </subject>
    <effectiveDateTime value="2023-08-05" />
    <valueBoolean value="false" />
</Observation>