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 - Example 2

{
    "resourceType": "PractitionerRole",
    "id": "56166769-c1c4-4d07-afa8-132b5dfca645",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/sds-role-profile-id",
            "value": "454567759542"
        }
    ],
    "practitioner": {
        "identifier": {
            "system": "https://fhir.hl7.org.uk/Id/gmc-number",
            "value": "C9876543"
        },
        "display": "Dr Smith"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RBA"
        },
        "display": "TAUNTON AND SOMERSET NHS FOUNDATION TRUST"
    },
    "code":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.nhs.uk/CodeSystem/NHSDigital-SDS-JobRoleCode",
                    "code": "S0030:G0100:R0620"
                }
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "01234567890",
            "use": "work"
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="56166769-c1c4-4d07-afa8-132b5dfca645" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/sds-role-profile-id" />
        <value value="454567759542" />
    </identifier>
    <practitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmc-number" />
            <value value="C9876543" />
        </identifier>
        <display value="Dr Smith" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RBA" />
        </identifier>
        <display value="TAUNTON AND SOMERSET NHS FOUNDATION TRUST" />
    </organization>
    <code>
        <coding>
            <system value="https://fhir.nhs.uk/CodeSystem/NHSDigital-SDS-JobRoleCode" />
            <code value="S0030:G0100:R0620" />
        </coding>
    </code>
    <telecom>
        <system value="phone" />
        <value value="01234567890" />
        <use value="work" />
    </telecom>
</PractitionerRole>
PractitionerRole
back to top