Practitioner

Practitioner-LucyHale-Example

Example of a practitioner resource. NOTE: it is expected that all practitioner details will normally reside in the SPINE directory services (SDS). Pratitioner resources should only be included in messages by exception.

Practitioner
{
    "resourceType": "Practitioner",
    "id": "Practitioner-LucyHale-Example",
    "identifier":  [
        {
            "use": "official",
            "system": "https://fhir.hl7.org.uk/Id/gmc-number",
            "value": "C9999999"
        }
    ],
    "name":  [
        {
            "use": "official",
            "text": "Lucy Hale",
            "family": "Hale",
            "given":  [
                "Lucy"
            ]
        }
    ],
    "qualification":  [
        {
            "code": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v2-0360",
                        "code": "MD",
                        "display": "Doctor of Medicine"
                    }
                ]
            }
        }
    ]
}
<Practitioner xmlns="http://hl7.org/fhir">
    <id value="Practitioner-LucyHale-Example" />
    <identifier>
        <use value="official" />
        <system value="https://fhir.hl7.org.uk/Id/gmc-number" />
        <value value="C9999999" />
    </identifier>
    <name>
        <use value="official" />
        <text value="Lucy Hale" />
        <family value="Hale" />
        <given value="Lucy" />
    </name>
    <qualification>
        <code>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0360" />
                <code value="MD" />
                <display value="Doctor of Medicine" />
            </coding>
        </code>
    </qualification>
</Practitioner>