Patient*in

Der*Die Patient*in im Rahmen des ePflegeberichts hat einen Namen und eine Adresse. Darüber hinaus ist für Pflegekräfte interessant, welcher Konfession ein*e Patient*in angehört, daher wird die Extension patient-religion eingebunden.

GeNSPatient

value[x]
nameS1..HumanName, deutsches Basisprofil
genderS1..
birthDateS1..
address1..Adresse, deutsches Basisprofil
maritalStatusS1..
contactS

Beispielpatient

Der Beispielpatient bezieht sich auf den Beispielbericht. Dargestellt werden hier die folgenden Informationen:

  • In der Extension die religiöse Zugehörigkeit
  • Name des Patienten
  • Geschlecht
  • Geburtsdatum
  • nicht verstorben
  • Adresse
  • Familienstand
  • Kontaktperson

Darstellung als XML

<Patient xmlns="http://hl7.org/fhir">
    <id value="example" />
    <meta>
        <profile value="http://hs-osnabrueck.de/fhir/ePflegebericht/StructureDefinition/Patient" />
    </meta>
    <text>
        <status value="generated" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <extension url="http://hl7.org/fhir/StructureDefinition/patient-religion">
        <valueCodeableConcept>
            <coding>
                <system value="http://terminology.hl7.org/ValueSet/v3-ReligiousAffiliation" />
                <code value="1041" />
                <display value="Roman Catholic Church" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <active value="true" />
    <name>
        <use value="official" />
        <family value="Schimanski" />
        <given value="Hubert" />
    </name>
    <telecom>
        <use value="home" />
        <!--     home communication details aren't known     -->
    </telecom>
    <!--     use FHIR code system for male / female     -->
    <gender value="male" />
    <birthDate value="1939-04-27" />
    <deceasedBoolean value="false" />
    <address>
        <use value="home" />
        <type value="both" />
        <text value="Gerade Stra&#223;e 16, 32132 Halle" />
        <line value="Gerade Stra&#223;e 16" />
        <city value="Halle" />
        <postalCode value="32132" />
    </address>
    <maritalStatus>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" />
            <code value="M" />
        </coding>
    </maritalStatus>
    <contact>
        <relationship>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
                <code value="N" />
            </coding>
        </relationship>
        <name>
            <family value="Schimanski" />
            <given value="Gertrud" />
        </name>
        <address>
            <use value="home" />
            <type value="both" />
            <text value="Gerade Stra&#223;e 16, 32132 Halle" />
            <line value="Gerade Stra&#223;e 16" />
            <city value="Halle" />
            <postalCode value="32132" />
        </address>
        <gender value="female" />
    </contact>
    <managingOrganization>
        <reference value="Organization/1" />
    </managingOrganization>
</Patient>