NHS England FHIR Implementation Guide (deprecated)

Important Announcement regarding this Implementation Guide
  • As of 04/10/2023, this implementation guide has been deprecated and all development on the legacy NHS England FHIR Implementation Guide assets has ceased.
  • Therefore, vendors looking to start new implementations or looking to update existing implementations should use the new NHS England Implementation Guide. Vendors continuing to implement legacy NHS England FHIR Implementation Guide based solutions do so at their own risk and on the understanding that no maintenance or support will be available.

HMP Leeds

{
    "resourceType": "Organization",
    "id": "YDE47",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "YDE47"
        }
    ],
    "active": true,
    "type":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.nhs.uk/CodeSystem/organisation-role",
                    "code": "175",
                    "display": "PRISON"
                }
            ]
        }
    ],
    "name": "HMP LEEDS",
    "address":  [
        {
            "line":  [
                "GLOUCESTER TERRACE",
                "ARMLEY"
            ],
            "city": "LEEDS",
            "district": "WEST YORKSHIRE",
            "postalCode": "LS12 2TJ",
            "country": "ENGLAND"
        }
    ]
}
<Organization xmlns="http://hl7.org/fhir">
    <id value="YDE47" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
        <value value="YDE47" />
    </identifier>
    <active value="true" />
    <type>
        <coding>
            <system value="https://fhir.nhs.uk/CodeSystem/organisation-role" />
            <code value="175" />
            <display value="PRISON" />
        </coding>
    </type>
    <name value="HMP LEEDS" />
    <address>
        <line value="GLOUCESTER TERRACE" />
        <line value="ARMLEY" />
        <city value="LEEDS" />
        <district value="WEST YORKSHIRE" />
        <postalCode value="LS12 2TJ" />
        <country value="ENGLAND" />
    </address>
</Organization>
Organization
back to top