StructureDefinition UKCore-PractitionerRole

PractitionerRole resources SHOULD be used where information about both a practitioner and their role within a specific organization is required, e.g. as the ServiceRequest.requestor.

References to Practitioner and Organization resources SHOULD only be made via identifier, rather than appending Practitioner and Organization resources to test order bundles. Issues with referencing via identifier SHOULD be reported to the NHS England Genomics Unit for investigation.

Profile url FHIR Module Normative Status
https://fhir.hl7.org.uk/StructureDefinition/UKCore-PractitionerRole UKCore trial-use

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
identifierΣ0..*Identifier
activeS Σ0..1boolean
periodS Σ I0..1Period
practitionerS Σ I0..1Reference(Practitioner)
organizationS Σ I0..1Reference(Organization)
codeΣ0..*CodeableConcept
specialtyS Σ0..*CodeableConceptBinding
locationS Σ I0..*Reference(Location)
healthcareServiceI0..*Reference(HealthcareService)
telecomS Σ I0..*ContactPoint
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
daysOfWeek0..*codeBinding
allDay0..1boolean
availableStartTime0..1time
availableEndTime0..1time
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
description1..1string
duringI0..1Period
availabilityExceptions0..1string
endpointI0..*Reference(Endpoint)


FHIRMDSHL7v2
PractitionerRole.practitionerRequestor - Full name, Requestor - Professional registration number, Requestor - Professional registration number type, Additional contact - Full name, Additional contact - Professional registration number, Additional contact - Professional registration number type, Patient - GP full name, Patient - GP GMC number, Previous genomic report - Report performer full name, Previous genomic report - Original requester full name, Previous non genomic report - Report performer full name, Previous non genomic report - Original requester full nameORC-12, ORC-12.1, ORC-12.9, PD1-4.2 and PD1-4.3, PD1-4.1, OBX-16, ORC-12
PractitionerRole.codeRequestor - Job Title, Additional contact - Job TitleCTD-1
PractitionerRole.specialtyRequestor - Current Specialty, Requestor - Department name, Additional contact - Current Specialty, Additional contact - Department nameAdditional CTD-1 segments
PractitionerRole.telecomRequestor - Phone, Requestor - Email address, Requestor - Genomic report delivery method, Requestor - Central email for address and reporting (many), Additional contact - Phone, Additional contact - Email address, Additional contact - Genomic report delivery method, Additional contact - Central email for address and reporting (many)ORC-14
PractitionerRole.organizationRequestor - Organization name, Requestor - Organization address, Requestor - Organization ODS code, Additional contact - Organization name, address and ODS code, Additional contact - Organization address, Additional contact - Organization ODS code, Patient - GP Practice ODS Code, Previous genomic report - Report performer organisation ODS code, Previous genomic report - Original requester organisation ODS code, Previous non genomic report - Report performer organisation ODS code, Previous non genomic report - Original requester organisation ODS codeORC-21, ORC-22, ORC-21.10, OBX-23.10
PractitionerRole.healthcareServicePLCM activity - ODS code of the laboratory site delivering requested test, PLCM activity - Commissioned service category codeAdditional CTD-1 segments

Additional Guidance

practitioner

SHALL be present. Users SHOULD reference practitioners using an appropriate naming system within the NHS defined within the NHS England IG .Display name MAY be included to aid readability and verification of included identifiers.
 "practitioner": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "9999999999"
        },
        "display": "Dr. Gene Smith"
    },

organization

SHALL be present. Users SHOULD reference organizations using an ODS code. Display name MAY be included to aid readability and verification of included identifiers. Requester ODS codes SHOULD use the lowest level site code rather than trust code (most granular code available) where possible, to aid contact retrieval.
 "organization": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RGT01"
        },
        "display": "Addenbrooke's Hospital"
    },

specialty

The specialty field SHOULD be used to record department for the requesting clinician, issues with the use of this field, including issues with the [bound UK Core ValueSet](https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode) not representing certain departments SHOULD be reported to the NHS England Genomics Unit
"specialty":  [
        {
            "coding":  [
                {
                    "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode",
                    "code": "120",
                    "display": "Ear Nose and Throat"
                }
            ]
        }
    ],

telecom

The telecom field SHOULD be used to record contact details for the practitioner. For central mailboxes, e.g. those used for providing reports back to the requester, these SHOULD be marked with an appropriate 'contactpoint-comment' extension. Additionally, where are there multiple Practitioners involved in providing care, the contact details for each Practitioners for that location (or service) SHOULD be specified.
"telecom":  [
        {
            "system": "phone",
            "value": "01223586638"
        },
        {
            "system": "email",
            "value": "gene.smith@nhs.net"
        },
        {
            "system": "email",
            "value": "Add-tr.entsecretaries@nhs.net",
            "extension":  [
                {
                    "url": "http://hl7.org/fhir/StructureDefinition/contactpoint-comment",
                    "valueString": "reporting"
                }
            ]
        }
    ]