Practitioner-GP-Example

Tree View

Practitioner

Table View

Practitioner.id[0]Healthcare-Worker-Practitioner-GP-Example
Practitioner.identifier[0].system[0]https://fhir.nhs.uk/Id/sds-user-id
Practitioner.identifier[0].value[0]3415870201
Practitioner.identifier[1].use[0]usual
Practitioner.identifier[1].system[0]https://fhir.hl7.org.uk/Id/gmp-number
Practitioner.identifier[1].value[0]G1234567
Practitioner.active[0]True
Practitioner.name[0].use[0]official
Practitioner.name[0].family[0]ALI
Practitioner.name[0].given[0]RAZIA
Practitioner.name[0].prefix[0]Dr

XML View

<Practitioner xmlns="http://hl7.org/fhir">
    <id value="Healthcare-Worker-Practitioner-GP-Example" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/sds-user-id" />
        <value value="3415870201" />
    </identifier>
    <identifier>
        <use value="usual" />
        <system value="https://fhir.hl7.org.uk/Id/gmp-number" />
        <value value="G1234567" />
    </identifier>
    <active value="true" />
    <name>
        <use value="official" />
        <family value="ALI" />
        <given value="RAZIA" />
        <prefix value="Dr" />
    </name>
</Practitioner>

JSON View

{
    "resourceType": "Practitioner",
    "id": "Healthcare-Worker-Practitioner-GP-Example",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "3415870201"
        },
        {
            "use": "usual",
            "system": "https://fhir.hl7.org.uk/Id/gmp-number",
            "value": "G1234567"
        }
    ],
    "active": true,
    "name":  [
        {
            "use": "official",
            "family": "ALI",
            "given":  [
                "RAZIA"
            ],
            "prefix":  [
                "Dr"
            ]
        }
    ]
}