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.

RBA11

{
    "resourceType": "Location",
    "id": "8a5d7d67-64fb-44ec-9802-2dc214bb3dcb",
    "identifier":  [
        {
            "use": "official",
            "system": "https://fhir.nhs.uk/Id/ods-site-code",
            "value": "RBA11"
        }
    ],
    "status": "active",
    "mode": "instance",
    "address": {
        "use": "work",
        "line":  [
            "MUSGROVE PARK HOSPITAL"
        ],
        "city": "TAUNTON",
        "postalCode": "TA1 5DA",
        "country": "NLD"
    }
}
<Location xmlns="http://hl7.org/fhir">
    <id value="8a5d7d67-64fb-44ec-9802-2dc214bb3dcb" />
    <identifier>
        <use value="official" />
        <system value="https://fhir.nhs.uk/Id/ods-site-code" />
        <value value="RBA11" />
    </identifier>
    <status value="active" />
    <mode value="instance" />
    <address>
        <use value="work" />
        <line value="MUSGROVE PARK HOSPITAL" />
        <city value="TAUNTON" />
        <postalCode value="TA1 5DA" />
        <country value="NLD" />
    </address>
</Location>
Location
back to top