Beispiele

Valides Minimalbeispiel Patient:

<Patient xmlns="http://hl7.org/fhir">
    <id value="patient" />
    <meta>
        <profile value="https://gematik.de/fhir/IsiK/StructureDefinition/IsiKPatient" />
    </meta>
    <identifier>
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
                <code value="MR" />
            </coding>
        </type>
        <system value="https://fhir.krankenhaus.example/NamingSystem/PID" />
        <value value="TestPID" />
    </identifier>
    <name>
        <use value="official" />
        <family value="Mustermann" />
        <given value="Max" />
    </name>
    <gender value="male" />
    <birthDate value="1972-01-01" />
    <address>
        <type value="both" />
        <line value="Musterweg 2" />
        <city value="Musterhausen" />
        <postalCode value="98764" />
        <country value="DE" />
    </address>
</Patient>