Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed 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 doctor
Table View
Practitioner.id[0] | UKCore-Practitioner-DoctorPaulRastall-Example |
Practitioner.text[0].status[0] | additional |
Practitioner.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a practitioner who is a doctor</div> |
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 |
Tree View
Practitioner |
id : UKCore-Practitioner-DoctorPaulRastall-Example |
text |
status : additional |
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 |
line : 22 Brightside Crescent |
city : Overtown |
district : West Yorkshire |
postalCode : LS10 4YU |
gender : male |
XML View
<Practitioner xmlns="http://hl7.org/fhir"> <id value="UKCore-Practitioner-DoctorPaulRastall-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <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", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "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" }