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.

HealthcareService

{
    "resourceType": "HealthcareService",
    "id": "54b0506d-49af-4245-9d40-d7d64902055e",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "A99968"
        }
    ],
    "active": true,
    "providedBy": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RBA"
        }
    },
    "type":  [
        {
            "coding":  [
                {
                    "system": "http://snomed.info/sct",
                    "code": "892571000000101",
                    "display": "Medical oncology service"
                }
            ]
        }
    ],
    "specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "800",
                    "display": "Clinical oncology"
                }
            ]
        }
    ],
    "location":  [
        {
            "reference": "urn:uuid:8a5d7d67-64fb-44ec-9802-2dc214bb3dcb"
        }
    ],
    "name": "SOMERSET BOWEL CANCER SCREENING CENTRE",
    "telecom":  [
        {
            "system": "phone",
            "value": "01823 333444",
            "use": "work"
        }
    ]
}
<HealthcareService xmlns="http://hl7.org/fhir">
    <id value="54b0506d-49af-4245-9d40-d7d64902055e" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
        <value value="A99968" />
    </identifier>
    <active value="true" />
    <providedBy>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RBA" />
        </identifier>
    </providedBy>
    <type>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="892571000000101" />
            <display value="Medical oncology service" />
        </coding>
    </type>
    <specialty>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" />
            <code value="800" />
            <display value="Clinical oncology" />
        </coding>
    </specialty>
    <location>
        <reference value="urn:uuid:8a5d7d67-64fb-44ec-9802-2dc214bb3dcb" />
    </location>
    <name value="SOMERSET BOWEL CANCER SCREENING CENTRE" />
    <telecom>
        <system value="phone" />
        <value value="01823 333444" />
        <use value="work" />
    </telecom>
</HealthcareService>
HealthcareService
back to top