Einsendende Person

https://demis.rki.de/fhir/StructureDefinition/SubmittingPerson

Der Einsender umfasst die Informationen zur Person, die die Probe einsendet. Er muss in der Meldung enthalten sein, wenn die Einsender-Einrichtung nicht enthalten ist.

identifierΣ0..*Identifier
activeΣ0..1boolean
genderΣ0..0codeBinding
birthDateΣ0..0date
photo0..0Attachment
communication0..0CodeableConceptBinding

Beispiel:

<Practitioner xmlns="http://hl7.org/fhir">
    <id value="SubmittingPerson-example" />
    <meta>
        <profile value="https://demis.rki.de/fhir/StructureDefinition/SubmittingPerson" />
    </meta>
    <name>
        <use value="official" />
        <family value="Mantle" />
        <given value="Karl-Heinz" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="+49 (0)12345 - 123456" />
        <use value="work" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="+49 (0)12345 - 123567" />
        <use value="home" />
    </telecom>
    <address>
        <use value="home" />
        <line value="Erster Weg 1" />
        <city value="Berlin" />
        <state value="DE-BE" />
        <postalCode value="10117" />
        <country value="DE" />
    </address>
</Practitioner>