Patient

Dies ist mein Patient-Profil:

idΣ0..1id
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ1..1uriFixed Value
valueΣ1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
id0..1
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ1..1uriFixed Value
valueΣ I1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
activeΣ ?!0..1boolean
id0..1
extensionI0..*Extension
useΣ ?!0..1codeBinding
textΣ0..1string
familyΣ1..1string
givenΣ1..*string
prefixΣ0..*string
suffixΣ0..*string
periodΣ I0..1Period
telecomΣ I0..*ContactPoint
genderS Σ1..1codeBinding
birthDateΣ0..1date
deceasedBooleanboolean
deceasedDateTimedateTime
addressS Σ1..*Mein Adress-Profil
maritalStatus0..1CodeableConceptBinding
multipleBirthBooleanboolean
multipleBirthIntegerinteger
photoI0..*Attachment
id0..1
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
relationship0..*CodeableConceptBinding
name0..1HumanName
telecomI0..*ContactPoint
address0..1Mein Adress-Profil
gender0..1codeBinding
organizationI0..1Reference(Organization)
periodI0..1Period
id0..1
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
language1..1CodeableConceptBinding
preferred0..1boolean
generalPractitionerI0..*Reference(Organization | Practitioner | PractitionerRole)
managingOrganizationΣ I0..1Reference(Organization)
id0..1
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
otherΣ I1..1Reference(Patient | RelatedPerson)
typeΣ1..1codeBinding

... und hier ist ein Beispiel dazu:

<Patient xmlns="http://hl7.org/fhir">
    <!--     MRN assigned by ACME healthcare on 6-May 2001     -->
    <meta>
        <profile value="http://fhir.diz.uni-marburg.de/StructureDefinition/MeinPatient" />
    </meta>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="9973264355" />
    </identifier>
    <identifier>
        <system value="http://fhir.ufp/NamingSystem/ufp-citizen-id" />
        <value value="9973264357" />
    </identifier>
    <identifier>
        <use value="usual" />
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
                <code value="MR" />
            </coding>
        </type>
        <system value="http://Starfleet_Hospital.ufp/fhir/NamingSystem/Patientennummer" />
        <value value="NCC-1032" />
        <assigner>
            <display value="Starfleet Hospital" />
        </assigner>
    </identifier>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="9973264355" />
    </identifier>
    <active value="true" />
    <!--     Peter James Chalmers, but called "Jim"     -->
    <name>
        <use value="official" />
        <family value="Burnham" />
        <given value="Michael" />
    </name>
    <telecom>
        <system value="home" />
        <value value="(0049) 12345 - 123456" />
        <use value="private" />
        <rank value="1" />
    </telecom>
    <!--     use FHIR code system for male / female     -->
    <gender value="female" />
    <birthDate value="2226-10-24" />
    <deceasedBoolean value="false" />
    <address>
        <extension url="http://fhir.ufp/StructureDefinition/planet">
            <valueString value="Erde" />
        </extension>
        <line value="Milchstrasse 42" />
        <city value="Sp&#246;ck" />
        <postalCode value="76297" />
        <country value="Deutschland" />
    </address>
</Patient>

... und hier ist ein Beispiel in JSON:

{
    "resourceType": "Patient",
    "meta": {
        "profile":  [
            "http://fhir.diz.uni-marburg.de/StructureDefinition/MeinPatient"
        ]
    },
    "identifier":  [
        {
            "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
            "value": "9973264355"
        },
        {
            "system": "http://fhir.ufp/NamingSystem/ufp-citizen-id",
            "value": "9973264357"
        },
        {
            "use": "usual",
            "type": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                        "code": "MR"
                    }
                ]
            },
            "system": "http://Starfleet_Hospital.ufp/fhir/NamingSystem/Patientennummer",
            "value": "NCC-1032",
            "assigner": {
                "display": "Starfleet Hospital"
            }
        },
        {
            "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
            "value": "9973264355"
        }
    ],
    "active": true,
    "name":  [
        {
            "use": "official",
            "family": "Burnham",
            "given":  [
                "Michael"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "home",
            "value": "(0049) 12345 - 123456",
            "use": "private",
            "rank": 1
        }
    ],
    "gender": "female",
    "birthDate": "2226-10-24",
    "deceasedBoolean": false,
    "address":  [
        {
            "extension":  [
                {
                    "url": "http://fhir.ufp/StructureDefinition/planet",
                    "valueString": "Erde"
                }
            ],
            "line":  [
                "Milchstrasse 42"
            ],
            "city": "Spöck",
            "country": "Deutschland",
            "postalCode": "76297"
        }
    ]
}

hier verwenden wir die Extension "planet" aus dem IG der United Federation of Planets:

id0..1string
extensionI0..*Extension
url1..1uriFixed Value
valueStringstring