PractitionerRole-LoisLane-Example

Example of a PractitionerRole resource linking Practitioner and Organization identifiers and indicating preferred reporting address.

PractitionerRole
{
    "resourceType": "PractitionerRole",
    "id": "PractitionerRole-LoisLane-Example",
    "practitioner": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "9999999998"
        },
        "display": "Phletobomist-Lois Lane"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RTD"
        },
        "display": "THE NEWCASTLE UPON TYNE HOSPITALS NHS FOUNDATION TRUST"
    },
    "specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "823",
                    "display": "Haematology"
                }
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "0191241 8787 /8775 / 8754"
        },
        {
            "system": "email",
            "value": "NUTH.DNA@nhs.net"
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="PractitionerRole-LoisLane-Example" />
    <practitioner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/sds-user-id" />
            <value value="9999999998" />
        </identifier>
        <display value="Phletobomist-Lois Lane" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RTD" />
        </identifier>
        <display value="THE NEWCASTLE UPON TYNE HOSPITALS NHS FOUNDATION TRUST" />
    </organization>
    <specialty>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" />
            <code value="823" />
            <display value="Haematology" />
        </coding>
    </specialty>
    <telecom>
        <system value="phone" />
        <value value="0191241 8787 /8775 / 8754" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="NUTH.DNA@nhs.net" />
    </telecom>
</PractitionerRole>