Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate a practitioner role of general practitioner
Table View
PractitionerRole.id[0] | UKCore-PractitionerRole-GeneralPractitioner-Example |
PractitionerRole.identifier[0].system[0] | https://fhir.nhs.uk/Id/sds-role-profile-id |
PractitionerRole.identifier[0].value[0] | 100334993514 |
PractitionerRole.practitioner[0].reference[0] | Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example |
PractitionerRole.organization[0].reference[0] | Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example |
PractitionerRole.code[0].coding[0].system[0] | http://snomed.info/sct |
PractitionerRole.code[0].coding[0].code[0] | 62247001 |
PractitionerRole.code[0].coding[0].display[0] | General practitioner |
PractitionerRole.specialty[0].coding[0].system[0] | https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode |
PractitionerRole.specialty[0].coding[0].code[0] | 600 |
PractitionerRole.specialty[0].coding[0].display[0] | General Medical Practice |
PractitionerRole.telecom[0].system[0] | phone |
PractitionerRole.telecom[0].value[0] | 0113 6323200 |
PractitionerRole.telecom[0].use[0] | work |
XML View
<PractitionerRole xmlns="http://hl7.org/fhir"> <id value="UKCore-PractitionerRole-GeneralPractitioner-Example" /> <identifier> <system value="https://fhir.nhs.uk/Id/sds-role-profile-id" /> <value value="100334993514" /> </identifier> <practitioner> <reference value="Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example" /> </practitioner> <organization> <reference value="Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example" /> </organization> <code> <coding> <system value="http://snomed.info/sct" /> <code value="62247001" /> <display value="General practitioner" /> </coding> </code> <specialty> <coding> <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode" /> <code value="600" /> <display value="General Medical Practice" /> </coding> </specialty> <telecom> <system value="phone" /> <value value="0113 6323200" /> <use value="work" /> </telecom> </PractitionerRole>
JSON View
{ "resourceType": "PractitionerRole", "id": "UKCore-PractitionerRole-GeneralPractitioner-Example", "identifier": [ { "system": "https://fhir.nhs.uk/Id/sds-role-profile-id", "value": "100334993514" } ], "practitioner": { "reference": "Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example" }, "organization": { "reference": "Organization/UKCore-Organization-WhiteRoseMedicalCentre-Example" }, "code": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "62247001", "display": "General practitioner" } ] } ], "specialty": [ { "coding": [ { "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-PracticeSettingCode", "code": "600", "display": "General Medical Practice" } ] } ], "telecom": [ { "system": "phone", "value": "0113 6323200", "use": "work" } ] }