UK Core Implementation Guide 0.2.0 - STU1

Example to illustrate the professed religious affiliations of the patient using the common extension

Table View

Patient.id[0]Patient-Extension-Religion-Example
Patient.extension[0].url[0]http://hl7.org/fhir/StructureDefinition/patient-religion
Patient.extension[0].valueCodeableConcept[0].coding[0].system[0]http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation
Patient.extension[0].valueCodeableConcept[0].coding[0].code[0]1041
Patient.extension[0].valueCodeableConcept[0].coding[0].display[0]Roman Catholic Church

XML View

<Patient xmlns="http://hl7.org/fhir">
    <id value="Patient-Extension-Religion-Example" />
    <!--  **************extension start**************  -->
    <extension url="http://hl7.org/fhir/StructureDefinition/patient-religion">
        <valueCodeableConcept>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation" />
                <code value="1041" />
                <display value="Roman Catholic Church" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <!--  **************extension end**************  -->
</Patient>

JSON View

{
    "resourceType": "Patient",
    "id": "Patient-Extension-Religion-Example",
    "extension":  [
        {
            "url": "http://hl7.org/fhir/StructureDefinition/patient-religion",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation",
                        "code": "1041",
                        "display": "Roman Catholic Church"
                    }
                ]
            }
        }
    ]
}

back to top