UK Core Implementation Guide 1.0.0 - STU1

An example to illustrate a general practice organisation

Table View

Organization.id[0]UKCore-Organization-WhiteRoseMedicalCentre-Example
Organization.text[0].status[0]additional
Organization.text[0].div[0]<div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate an organization</div>
Organization.identifier[0].use[0]official
Organization.identifier[0].system[0]https://fhir.nhs.uk/Id/ods-organization-code
Organization.identifier[0].value[0]GP5
Organization.name[0]WHITE ROSE MEDICAL CENTRE
Organization.telecom[0].system[0]phone
Organization.telecom[0].value[0]0111 243 3144
Organization.address[0].line[0]WHITE ROSE MEDICAL PRACTICE
Organization.address[0].line[1]ROSE STREET
Organization.address[0].city[0]LEEDS
Organization.address[0].postalCode[0]LS1288T
Organization.address[0].country[0]ENGLAND

Tree View

Organization

XML View

<Organization xmlns="http://hl7.org/fhir">
<id value="UKCore-Organization-WhiteRoseMedicalCentre-Example" />
<status value="additional" />
--- We have skipped the narrative for better readability of the resource ---
</text>
<use value="official" />
<system value="https://fhir.nhs.uk/Id/ods-organization-code" />
<value value="GP5" />
</identifier>
<name value="WHITE ROSE MEDICAL CENTRE" />
<system value="phone" />
<value value="0111 243 3144" />
</telecom>
<line value="WHITE ROSE MEDICAL PRACTICE" />
<line value="ROSE STREET" />
<city value="LEEDS" />
<postalCode value="LS1288T" />
<country value="ENGLAND" />
</address>
</Organization>

JSON View

{
"resourceType": "Organization",
"id": "UKCore-Organization-WhiteRoseMedicalCentre-Example",
"text": {
"status": "additional",
--- We have skipped the narrative for better readability of the resource ---
},
{
"use": "official",
"system": "https://fhir.nhs.uk/Id/ods-organization-code",
"value": "GP5"
}
],
"name": "WHITE ROSE MEDICAL CENTRE",
"telecom": [
{
"system": "phone",
"value": "0111 243 3144"
}
],
"address": [
{
"line": [
"WHITE ROSE MEDICAL PRACTICE",
"ROSE STREET"
],
"city": "LEEDS",
"postalCode": "LS1288T",
"country": "ENGLAND"
}
]
}

back to top