NHS Digital FHIR Implementation Guide (Retired - 2.1.50)

This guidance is under active development by NHS Digital and content may be added or updated on a regular basis.

PractitionerRole

{
    "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