NHS Digital FHIR Implementation Guide (Retired - 2.1.50)

This guidance is under active development by NHS Digital and content may be added or updated on a regular basis.

Practitioner

{
    "resourceType": "Practitioner",
    "id": "1557E58E-3B1E-41DD-B3B5-D4D393DC5A3D",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/sds-user-id",
            "value": "896547302565"
        }
    ],
    "name":  [
        {
            "use": "official",
            "family": "Smith",
            "prefix":  [
                "Dr"
            ]
        }
    ]
}
<Practitioner xmlns="http://hl7.org/fhir">
    <id value="1557E58E-3B1E-41DD-B3B5-D4D393DC5A3D" />
    <!--  <AgentPerson classCode="AGNT">.agentPerson  1.2.826.0.1285.0.2.0.65 
     -->
    <identifier>
        <system value="https://fhir.nhs.uk/Id/sds-user-id" />
        <value value="896547302565" />
    </identifier>
    <!--  <AgentPerson classCode="AGNT">.agentPerson.name  -->
    <name>
        <use value="official" />
        <family value="Smith" />
        <prefix value="Dr" />
    </name>
</Practitioner>
Practitioner
back to top