Important: This is the release candidate of the FHIR Data Standards Wales for PSOM version 1.0 Implementation Guide. It is intended for trial use, and is published for early comment and feedback. Click here to give feedback.
Example Practitioner - Consultant
- Overview
- Table
- XML
- JSON
- Narrative
Practitioner |
id : Example-DataStandardsWales-PSOM-Practitioner-Consultant |
meta |
profile : https://fhir.nhs.wales/StructureDefinition/DataStandardsWales-Practitioner |
identifier |
system : https://fhir.hl7.org.uk/Id/gmc-number |
value : 9630333 |
name |
family : Patel |
given : Dhiren |
prefix : Dr |
Practitioner.id[0] | Example-DataStandardsWales-PSOM-Practitioner-Consultant |
Practitioner.meta[0].profile[0] | https://fhir.nhs.wales/StructureDefinition/DataStandardsWales-Practitioner |
Practitioner.identifier[0].system[0] | https://fhir.hl7.org.uk/Id/gmc-number |
Practitioner.identifier[0].value[0] | 9630333 |
Practitioner.name[0].family[0] | Patel |
Practitioner.name[0].given[0] | Dhiren |
Practitioner.name[0].prefix[0] | Dr |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="Example-DataStandardsWales-PSOM-Practitioner-Consultant" /> <meta> <profile value="https://fhir.nhs.wales/StructureDefinition/DataStandardsWales-Practitioner" /> </meta> <identifier> <!-- MEDPX002B Senior Responsible Professional Identifier Code System --> <system value="https://fhir.hl7.org.uk/Id/gmc-number" /> <!-- MEDPX002C Senior Responsible Professional Identifier --> <value value="9630333" /> </identifier> <!-- MEDPX002A Senior Responsible Professional Name --> <name> <family value="Patel" /> <given value="Dhiren" /> <prefix value="Dr" /> </name> </Practitioner>
{ "resourceType": "Practitioner", "id": "Example-DataStandardsWales-PSOM-Practitioner-Consultant", "meta": { "profile": [ "https://fhir.nhs.wales/StructureDefinition/DataStandardsWales-Practitioner" ] }, "identifier": [ { "system": "https://fhir.hl7.org.uk/Id/gmc-number", "value": "9630333" } ], "name": [ { "family": "Patel", "given": [ "Dhiren" ], "prefix": [ "Dr" ] } ] }