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 who is a general practitioner
Table View
Practitioner.id[0] | UKCore-Practitioner-DoctorPaulRastall-Example |
Practitioner.identifier[0].system[0] | https://fhir.nhs.uk/Id/sds-user-id |
Practitioner.identifier[0].value[0] | G12345678 |
Practitioner.name[0].family[0] | Rastall |
Practitioner.name[0].given[0] | Paul |
Practitioner.name[0].prefix[0] | Dr |
Practitioner.telecom[0].system[0] | phone |
Practitioner.telecom[0].value[0] | 0113 6323200 |
Practitioner.telecom[0].use[0] | work |
Practitioner.address[0].use[0] | work |
Practitioner.address[0].type[0] | both |
Practitioner.address[0].line[0] | Chapel Main Practice |
Practitioner.address[0].line[1] | 22 Brightside Crescent |
Practitioner.address[0].city[0] | Overtown |
Practitioner.address[0].district[0] | West Yorkshire |
Practitioner.address[0].postalCode[0] | LS10 4YU |
Practitioner.gender[0] | male |
XML View
<Practitioner xmlns="http://hl7.org/fhir"> <id value="UKCore-Practitioner-DoctorPaulRastall-Example" /> <identifier> <system value="https://fhir.nhs.uk/Id/sds-user-id" /> <value value="G12345678" /> </identifier> <name> <family value="Rastall" /> <given value="Paul" /> <prefix value="Dr" /> </name> <telecom> <system value="phone" /> <value value="0113 6323200" /> <use value="work" /> </telecom> <address> <use value="work" /> <type value="both" /> <line value="Chapel Main Practice" /> <line value="22 Brightside Crescent" /> <city value="Overtown" /> <district value="West Yorkshire" /> <postalCode value="LS10 4YU" /> </address> <gender value="male" /> </Practitioner>
JSON View
{ "resourceType": "Practitioner", "id": "UKCore-Practitioner-DoctorPaulRastall-Example", "identifier": [ { "system": "https://fhir.nhs.uk/Id/sds-user-id", "value": "G12345678" } ], "name": [ { "family": "Rastall", "given": [ "Paul" ], "prefix": [ "Dr" ] } ], "telecom": [ { "system": "phone", "value": "0113 6323200", "use": "work" } ], "address": [ { "use": "work", "type": "both", "line": [ "Chapel Main Practice", "22 Brightside Crescent" ], "city": "Overtown", "district": "West Yorkshire", "postalCode": "LS10 4YU" } ], "gender": "male" }