XML View
<Practitioner xmlns="http://hl7.org/fhir">
<id value="UKCore-Practitioner-PharmacistJimmyChuck-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="P12345678" />
</identifier>
<name>
<family value="Chuck" />
<given value="Jimmy" />
<prefix value="Mr" />
</name>
<telecom>
<system value="phone" />
<value value="0113 6323222" />
<use value="work" />
</telecom>
<address>
<line value="INHOUSE PHARMACY" />
<line value="ST. JAMES'S UNIVERSITY HOSPITAL" />
<line value="BECKETT STREET" />
<city value="LEEDS" />
<postalCode value="LS9 7TF" />
<country value="ENGLAND" />
</address>
</Practitioner>
JSON View
{
"resourceType": "Practitioner",
"id": "UKCore-Practitioner-PharmacistJimmyChuck-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": "P12345678"
}
],
"name": [
{
"family": "Chuck",
"given": [
"Jimmy"
],
"prefix": [
"Mr"
]
}
],
"telecom": [
{
"system": "phone",
"value": "0113 6323222",
"use": "work"
}
],
"address": [
{
"line": [
"INHOUSE PHARMACY",
"ST. JAMES'S UNIVERSITY HOSPITAL",
"BECKETT STREET"
],
"city": "LEEDS",
"postalCode": "LS9 7TF",
"country": "ENGLAND"
}
]
}