Basisprofil Patient

Canonical URL: http://fhir.de/StructureDefinition/patient-de-basis/0.2

useΣ ?!0..1codeBinding
systemΣ1..1uri
versionΣ0..1string
codeΣ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
systemΣ1..1uriFixed Value
valueΣ1..1string
periodΣ0..1Period
assignerΣ0..1Reference(Organization)
activeΣ ?!0..1boolean
nameΣ0..*HumanName, deutsches Basisprofil (Version 0.2)
systemΣ0..1codeBinding
valueΣ0..1string
useΣ ?!0..1codeBinding
rankΣ0..1positiveInt
periodΣ0..1Period
other-amtlich0..1Extension(Coding)
birthDateΣ0..1date
deceasedBooleanboolean
deceasedDateTimedateTime
addressΣ0..*Adresse, deutsches Basisprofil (Version 0.2)
maritalStatus0..1CodeableConceptBinding
multipleBirthBooleanboolean
multipleBirthIntegerinteger
photo0..*Attachment
relationship0..*CodeableConceptBinding
name0..*HumanName, deutsches Basisprofil (Version 0.2)
telecom0..*ContactPoint
address0..*Adresse, deutsches Basisprofil (Version 0.2)
gender0..1codeBinding
organization0..1Reference(Organization)
period0..1Period
language1..1CodeableConceptBinding
preferred0..1boolean
generalPractitioner0..*Reference(Organisation, deutsches Basisprofil (Version 0.2) | Practitioner, deutsches Basisprofil (Version 0.2))
managingOrganizationΣ0..1Reference(Organisation, deutsches Basisprofil (Version 0.2))
otherΣ1..1Reference(Patient | RelatedPerson)
typeΣ1..1codeBinding

Beispiele

XML-Format

Gesetzliche Krankenversichertennummer beim Patienten:

<Patient>
    <meta>
        <profile value="http://fhir.de/StructureDefinition/patient-de-basis/0.2" />
    </meta>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="G995030567" />
    </identifier>
    <name>
        <family value="Mustermann" />
        <given value="Max" />
    </name>
</Patient>

Patient mit hausinternem Patienten-Identifikator (Medical Record Number):

<Patient>
    <meta>
        <profile value="http://fhir.de/StructureDefinition/patient-de-basis/0.2" />
    </meta>
    <identifier>
        <type>
            <coding>
                <system value="http://hl7.org/fhir/v2/0203" />
                <code value="MR" />
            </coding>
        </type>
        <system value="http://mein-krankenhaus.de/patient-identifier" />
        <value value="12345678" />
    </identifier>
    <name>
        <family value="Mustermann" />
        <given value="Max" />
    </name>
</Patient>

JSON-Format

Gesetzliche Krankenversichertennummer beim Patienten:

{
    "resourceType":"Patient",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/patient-de-basis/0.2"
        ]
    },
    "identifier": [
        {
            "system":"http://fhir.de/NamingSystem/gkv/kvid-10",
            "value":"G995030567"
        }
    ],
    "name": [
        {
            "family":"Mustermann",
            "given": [
                "Max"
            ]
        }
    ]
}

Patient mit hausinternem Patienten-Identifikator (Medical Record Number):

{
    "resourceType":"Patient",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/patient-de-basis/0.2"
        ]
    },
    "identifier": [
        {
            "type":{
                "coding": [
                    {
                        "system":"http://hl7.org/fhir/v2/0203",
                        "code":"MR"
                    }
                ]
            },
            "system":"http://mein-krankenhaus.de/patient-identifier",
            "value":"12345678"
        }
    ],
    "name": [
        {
            "family":"Mustermann",
            "given": [
                "Max"
            ]
        }
    ]
}