UK Core Implementation Guide 1.0.0 - STU1

An example to illustrate a practitioner who is a consultant

Table View

Practitioner.id[0]UKCore-Practitioner-ConsultantSandraGose-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 consultant</div>
Practitioner.identifier[0].system[0]https://fhir.hl7.org.uk/Id/gmc-number
Practitioner.identifier[0].value[0]C12345678
Practitioner.name[0].family[0]Gose
Practitioner.name[0].given[0]Sandra
Practitioner.name[0].prefix[0]Mrs
Practitioner.telecom[0].system[0]phone
Practitioner.telecom[0].value[0]0113 6323211
Practitioner.telecom[0].use[0]work
Practitioner.address[0].line[0]Admissions Department
Practitioner.address[0].line[1]ST. JAMES'S UNIVERSITY HOSPITAL
Practitioner.address[0].line[2]BECKETT STREET
Practitioner.address[0].city[0]LEEDS
Practitioner.address[0].postalCode[0]LS9 7TF
Practitioner.address[0].country[0]ENGLAND
Practitioner.gender[0]female

Tree View

Practitioner

XML View

<Practitioner xmlns="http://hl7.org/fhir">
<id value="UKCore-Practitioner-ConsultantSandraGose-Example" />
<status value="additional" />
--- We have skipped the narrative for better readability of the resource ---
</text>
<system value="https://fhir.hl7.org.uk/Id/gmc-number" />
<value value="C12345678" />
</identifier>
<family value="Gose" />
<given value="Sandra" />
<prefix value="Mrs" />
</name>
<system value="phone" />
<value value="0113 6323211" />
<use value="work" />
</telecom>
<line value="Admissions Department" />
<line value="ST. JAMES'S UNIVERSITY HOSPITAL" />
<line value="BECKETT STREET" />
<city value="LEEDS" />
<postalCode value="LS9 7TF" />
<country value="ENGLAND" />
</address>
<gender value="female" />
</Practitioner>

JSON View

{
"resourceType": "Practitioner",
"id": "UKCore-Practitioner-ConsultantSandraGose-Example",
"text": {
"status": "additional",
--- We have skipped the narrative for better readability of the resource ---
},
{
"system": "https://fhir.hl7.org.uk/Id/gmc-number",
"value": "C12345678"
}
],
"name": [
{
"family": "Gose",
"given": [
"Sandra"
],
"prefix": [
"Mrs"
]
}
],
"telecom": [
{
"system": "phone",
"value": "0113 6323211",
"use": "work"
}
],
"address": [
{
"line": [
"Admissions Department",
"ST. JAMES'S UNIVERSITY HOSPITAL",
"BECKETT STREET"
],
"city": "LEEDS",
"postalCode": "LS9 7TF",
"country": "ENGLAND"
}
],
"gender": "female"
}

back to top