PractitionerRole-MarySmith-Example

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

PractitionerRole
{
    "resourceType": "PractitionerRole",
    "id": "PractitionerRole-MarySmith-Example",
    "practitioner": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "9999999998"
        },
        "display": "RN. Mary Smith"
    },
    "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RGD12"
        },
        "display": "ST JAMES'S UNIVERSITY HOSPITAL"
    },
    "specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "302",
                    "display": "Endocrinology and Diabetes"
                }
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "0112577851"
        },
        {
            "system": "email",
            "value": "lipidclinicstjames@nhs.net"
        },
        {
            "system": "email",
            "value": "clinicalgeneticsstjames@nhs.net",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-comment",
                    "valueString": "reporting"
                }
            ]
        }
    ]
}
<PractitionerRole xmlns="http://hl7.org/fhir">
    <id value="PractitionerRole-MarySmith-Example" />
    <practitioner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/sds-user-id" />
            <value value="9999999998" />
        </identifier>
        <display value="RN. Mary Smith" />
    </practitioner>
    <organization>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RGD12" />
        </identifier>
        <display value="ST JAMES&#39;S UNIVERSITY HOSPITAL" />
    </organization>
    <specialty>
        <coding>
            <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" />
            <code value="302" />
            <display value="Endocrinology and Diabetes" />
        </coding>
    </specialty>
    <telecom>
        <system value="phone" />
        <value value="0112577851" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="lipidclinicstjames@nhs.net" />
    </telecom>
    <telecom>
        <extension url="http://hl7.org/fhir/StructureDefinition/contactpoint-comment">
            <valueString value="reporting" />
        </extension>
        <system value="email" />
        <value value="clinicalgeneticsstjames@nhs.net" />
    </telecom>
</PractitionerRole>