PractitionerRole-LucyHale-Example

Example of a PractitionerRole resource linking Practitioner and Organization identifiers.

PractitionerRole
{
    "resourceType": "PractitionerRole",
    "id": "3462583a-536c-4bad-99d3-44dc553921fd",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/sds-role-profile-id",
            "value": "100102238986"
        }
    ],
    "practitioner": {
        "identifier": {
            "system": "https://fhir.hl7.org.uk/Id/gmc-number",
            "value": "C9999999"
        },
        "display": "Lucy Hale"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RBV"
        },
        "display": "NHS Trust - THE CHRISTIE NHS FOUNDATION TRUST"
    },
    "telecom":  [
        {
            "system": "email",
            "value": "lucy.hale@nhs.net",
            "use": "work"
        },
        {
            "system": "phone",
            "value": "02476151602",
            "use": "work"
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="3462583a-536c-4bad-99d3-44dc553921fd" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/sds-role-profile-id" />
        <value value="100102238986" />
    </identifier>
    <practitioner>
        <identifier>
            <system value="https://fhir.hl7.org.uk/Id/gmc-number" />
            <value value="C9999999" />
        </identifier>
        <display value="Lucy Hale" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RBV" />
        </identifier>
        <display value="NHS Trust - THE CHRISTIE NHS FOUNDATION TRUST" />
    </organization>
    <telecom>
        <system value="email" />
        <value value="lucy.hale@nhs.net" />
        <use value="work" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="02476151602" />
        <use value="work" />
    </telecom>
</PractitionerRole>