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.

PractitionerRole - SDS + NHS 2

{
    "resourceType": "PractitionerRole",
    "id": "6dc16793-61c2-44b8-8d0f-f872101c016e",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/sds-role-profile-id",
            "value": "125686540025"
        }
    ],
    "practitioner": {
        "identifier": {
            "system": "https://fhir.hl7.org.uk/Id/gmp-number",
            "value": "G1234567"
        },
        "display": "Dr Razia Ali"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "M85011"
        },
        "display": "THE SWAN MEDICAL CENTRE"
    },
    "code":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.nhs.uk/CodeSystem/NHSDigital-SDS-JobRoleCode",
                    "code": "R0260"
                }
            ]
        }
    ],
    "specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "100",
                    "display": "GENERAL SURGERY"
                }
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "01234567890",
            "use": "work"
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="6dc16793-61c2-44b8-8d0f-f872101c016e" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/sds-role-profile-id" />
        <value value="125686540025" />
    </identifier>
    <practitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmp-number" />
            <value value="G1234567" />
        </identifier>
        <display value="Dr Razia Ali" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="M85011" />
        </identifier>
        <display value="THE SWAN MEDICAL CENTRE" />
    </organization>
    <code>
        <coding>
            <system value="https://fhir.nhs.uk/CodeSystem/NHSDigital-SDS-JobRoleCode" />
            <code value="R0260" />
        </coding>
    </code>
    <specialty>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" />
            <code value="100" />
            <display value="GENERAL SURGERY" />
        </coding>
    </specialty>
    <telecom>
        <system value="phone" />
        <value value="01234567890" />
        <use value="work" />
    </telecom>
</PractitionerRole>
PractitionerRole
back to top