Notice
- Important: This guidance is under active development by NHS England and content may be added or updated on a regular basis.
- This Implementation Guide is currently in Draft and SHOULD NOT be used for development or active implementation without express direction from the NHS England Genomics Unit.
Patient-LindsaySorrellPDS-Example
Example of a patient returned by a PDS search.
Patient |
id : Patient-LindsaySorrellPDS-Example |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex |
value |
coding |
system : http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender |
code : M |
display : Male |
meta |
versionId : 2 |
security |
system : http://terminology.hl7.org/CodeSystem/v3-Confidentiality |
code : U |
display : unrestricted |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9449307946 |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus |
value |
coding |
system : https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland |
version : 2.2.0 |
code : 01 |
display : Number present and verified |
name |
given : Lindsay |
family : Sorrell |
birthDate : 2011-04-12 |
address |
line : 31 THE AVENUE |
line : BERWICK COURT |
{ "resourceType": "Patient", "id": "Patient-LindsaySorrellPDS-Example", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex", "valueCodeableConcept": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender", "code": "M", "display": "Male" } ] } } ], "meta": { "versionId": "2", "security": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-Confidentiality", "code": "U", "display": "unrestricted" } ] }, "identifier": [ { "system": "https://fhir.nhs.uk/Id/nhs-number", "value": "9449307946", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus", "valueCodeableConcept": { "coding": [ { "system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland", "version": "2.2.0", "code": "01", "display": "Number present and verified" } ] } } ] } ], "name": [ { "given": [ "Lindsay" ], "family": "Sorrell" } ], "birthDate": "2011-04-12", "address": [ { "line": [ "31 THE AVENUE", "BERWICK COURT" ] } ] }
<Patient xmlns="http://hl7.org/fhir"> <id value="Patient-LindsaySorrellPDS-Example" /> <meta> <versionId value="2" /> <security> <system value="http://terminology.hl7.org/CodeSystem/v3-Confidentiality" /> <code value="U" /> <display value="unrestricted" /> </security> </meta> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex"> <valueCodeableConcept> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender" /> <code value="M" /> <display value="Male" /> </coding> </valueCodeableConcept> </extension> <identifier> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus"> <valueCodeableConcept> <coding> <system value="https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland" /> <version value="2.2.0" /> <code value="01" /> <display value="Number present and verified" /> </coding> </valueCodeableConcept> </extension> <system value="https://fhir.nhs.uk/Id/nhs-number" /> <value value="9449307946" /> </identifier> <name> <family value="Sorrell" /> <given value="Lindsay" /> </name> <birthDate value="2011-04-12" /> <address> <line value="31 THE AVENUE" /> <line value="BERWICK COURT" /> </address> </Patient>