PractitionerRole-EugeneSmith-Example

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

PractitionerRole
{
    "resourceType": "PractitionerRole",
    "id": "PractitionerRole-EugeneSmith-Example",
    "practitioner": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "9999999998"
        },
        "display": "Dr. Eugene Smith"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RPA02"
        },
        "display": "MEDWAY MARITIME HOSPITAL"
    },
    "specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "820",
                    "display": "General Pathology"
                }
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "01634976477"
        },
        {
            "system": "email",
            "value": "medwaypath@nhs.net"
        },
        {
            "system": "email",
            "value": "clinicalgeneticsmedway@nhs.net",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-comment",
                    "valueString": "reporting"
                }
            ]
        },
        {
            "system": "email",
            "value": "asmithgppracticeg@nhs.net",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-comment",
                    "valueString": "reporting"
                }
            ]
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="PractitionerRole-EugeneSmith-Example" />
    <practitioner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/sds-user-id" />
            <value value="9999999998" />
        </identifier>
        <display value="Dr. Eugene Smith" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RPA02" />
        </identifier>
        <display value="MEDWAY MARITIME HOSPITAL" />
    </organization>
    <specialty>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" />
            <code value="820" />
            <display value="General Pathology" />
        </coding>
    </specialty>
    <telecom>
        <system value="phone" />
        <value value="01634976477" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="medwaypath@nhs.net" />
    </telecom>
    <telecom>
        <extension url="http://hl7.org/fhir/StructureDefinition/contactpoint-comment">
            <valueString value="reporting" />
        </extension>
        <system value="email" />
        <value value="clinicalgeneticsmedway@nhs.net" />
    </telecom>
    <telecom>
        <extension url="http://hl7.org/fhir/StructureDefinition/contactpoint-comment">
            <valueString value="reporting" />
        </extension>
        <system value="email" />
        <value value="asmithgppracticeg@nhs.net" />
    </telecom>
</PractitionerRole>