Procedure

Procedure-InVitroFertilisation-Example

Example of a procedure resource indicating method of pregnancy conception and source of Egg donor.

Procedure
{
    "resourceType": "Procedure",
    "id": "Procedure-InVitroFertilisation-Example",
    "status": "completed",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "52637005",
                "display": "In vitro fertilisation"
            }
        ]
    },
    "subject": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9449307687"
        }
    },
    "performedDateTime": "2023-08-05",
    "note":  [
        {
            "text": "Woman`s own egg"
        }
    ]
}
<Procedure xmlns="http://hl7.org/fhir">
    <id value="Procedure-InVitroFertilisation-Example" />
    <status value="completed" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="52637005" />
            <display value="In vitro fertilisation" />
        </coding>
    </code>
    <subject>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9449307687" />
        </identifier>
    </subject>
    <performedDateTime value="2023-08-05" />
    <note>
        <text value="Woman`s own egg" />
    </note>
</Procedure>


Procedure-MichaelJonesTransplant

Example of a simple procedure resource with minimal information.

Procedure
{
    "resourceType": "Procedure",
    "id": "UKCore-Procedure-MichaelJonesTransplant-Example",
    "status": "completed",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "23719005",
                "display": "Transplantation of bone marrow"
            }
        ]
    },
    "subject": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9999999999"
        }
    },
    "performedDateTime": "2020-01-19"
}
<Procedure xmlns="http://hl7.org/fhir">
    <id value="UKCore-Procedure-MichaelJonesTransplant-Example" />
    <status value="completed" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="23719005" />
            <display value="Transplantation of bone marrow" />
        </coding>
    </code>
    <subject>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9999999999" />
        </identifier>
    </subject>
    <performedDateTime value="2020-01-19" />
</Procedure>