FHIR Data Standards Wales for PSOM v1.0.0-rc3
Important: This is the release candidate of the FHIR Data Standards Wales for PSOM version 1.0.0-rc2 Implementation Guide. It is intended for trial use, and is published for early comment and feedback. Click here to give feedback.

Example Practitioner - Consultant

Practitioner
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>
        <system value="https://fhir.hl7.org.uk/Id/gmc-number" />
        <value value="9630333" />
    </identifier>
    <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"
            ]
        }
    ]
}