Practitioner

All external doctors are stored as Practitioner Resource

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..0codeBinding
text0..1Narrative
contained0..0Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBindingFixed Value
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1codeFixed Value
displayΣ0..1string
userSelectedΣ0..1boolean
id0..1string
extensionI0..*Extension
systemΣ1..1uriFixed Value
versionΣ0..1string
codeΣ1..1codeFixed Value
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
systemΣ1..1uriFixed Value
valueΣ I1..1string
periodΣ I0..1Period
id0..1string
extensionI0..*Extension
referenceΣ I0..1string
typeΣ0..1uriBinding
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ1..1uriFixed Value
valueΣ1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
displayΣ1..1string
RISΣ0..1Identifier-Profil für die Abbildung einer RIS-internen User ID
activeΣ0..0boolean
nameΣ0..1HumanName
telecomΣ I0..*UContactPoint
addressΣ0..*UAddress
genderΣ0..1codeBinding
birthDateΣ0..0date
photoI0..0Attachment
communication0..0CodeableConceptBinding

For Internal employees the RIS-identifier is mandatory.

Example JSON

Example data record:

{
    "resourceType": "Practitioner",
    "meta": {
        "versionId": "1",
        "lastUpdated": "2020-08-06T15:07:48.228+02:00",
        "profile":  [
            "http://dedalus-group.com/fhir/StructureDefinition/Practitioner"
        ]
    },
    "identifier":  [
        {
            "type": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code": "LANR"
                    }
                ]
            },
            "system": "https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR",
            "value": "123456789"
        }
    ],
    "name":  [
        {
            "family": "Attending",
            "given":  [
                "Bernhard"
            ],
            "suffix":  [
                "Dr."
            ]
        }
    ]
}

Example XML

Example data record::

<Practitioner xmlns="http://hl7.org/fhir">
    <meta>
        <versionId value="1" />
        <lastUpdated value="2020-08-06T15:07:48.228+02:00" />
        <profile value="http://dedalus-group.com/fhir/StructureDefinition/Practitioner" />
    </meta>
    <identifier>
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
                <code value="LANR" />
            </coding>
        </type>
        <system value="https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR" />
        <value value="123456789" />
    </identifier>
    <name>
        <family value="Attending" />
        <given value="Bernhard" />
        <suffix value="Dr." />
    </name>
</Practitioner>