A Patient as used in Appointment booking.
Important: This site is under development by NHS Digital, It is advised not to develop against these specifications until a formal announcement has been made.
Introduction
This resource is contained within the Appointment resource.
References to FHIR Profiles
STU3 | Developed Profile: Patient |
STU3 | HL7 Base Profile: Patient |
STU3 | User Stories: - |
Key FHIR Elements
The following FHIR elements are key to this implementation :
See example resource.
The Patient resource MUST include the following data items:
Element | Cardinality | Description | Example(s) | |
---|---|---|---|---|
id | [1..1] | An id which is unique within the containing Appointment resource. | 123 | |
identifier | [1..1] | The Patient’s NHS Number | … | |
identifier.extension | [1..1] | A Care Connect extension that fixes this identifier to be an NHS Number | see example | |
identifier.use | [1..1] | Shows that this identifier is a nationally recognised one. | Fixed value: official |
|
identifier.system | [1..1] | Shows that the value is an NHS Number | Fixed value: https://fhir.nhs.uk/Id/nhs-number |
|
identifier.value | [1..1] | The Patient’s NHS Number | 11122233333 |
|
name | [1..1] | The Patient’s name, as retrieved from PDS | see example | |
telecom | [1..1] | The number the patient can be contacted on | see example | |
gender | [1..1] | The patient’s gender as retrieved from PDS | male | female | other | unknown |
|
birthdate | [1..1 | The patient’s gender as retrieved from PDS | 1974-12-31 | |
address | [1..1] | Patient’s full address as retrieved from PDS | see example |
Example resource
{
"resourceType": "Patient",
"meta": {
"profile": "https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Patient-1"
},
"id": "P1",
"identifier": [
{
"extension": [
{
"url": "https://fhir.hl7.org.uk/STU3/StructureDefinition/Extension-CareConnect-NHSNumberVerificationStatus-1",
"valueCodeableConcept": {
"coding": [
{
"system": "https://fhir.hl7.org.uk/STU3/CodeSystem/CareConnect-NHSNumberVerificationStatus-1",
"code": "01",
"display": "Number present and verified"
}
]
}
}
],
"use": "official",
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9476719931"
}
],
"name": [
{
"use": "official",
"prefix": "Mr",
"given": "John",
"family": "Smith"
}
],
"telecom": [
{
"system": "phone",
"value": "01234 567 890",
"use": "home",
"rank": 1
}
],
"gender": "male",
"birthDate": "1974-12-25",
"address": [
{
"use": "home",
"text": "123 High Street, Leeds LS1 4HR",
"line": [
"123 High Street",
"Leeds"
],
"city": "Leeds",
"postalCode": "LS1 4HR"
}
]
}