Profil Patient

Der Patient wohnt auch auf einem Planeten und in einem Quadranten der Milchstraße.

idΣ0..1id
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
speciesI1..1Extension(CodeableConcept)
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Σ1..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
genderΣ1..1codeBinding
birthDateΣ0..1date
deceasedBooleanboolean
deceasedDateTimedateTime
addressΣ1..*MyPlanetAddress
maritalStatus0..1CodeableConceptBinding
multipleBirthBooleanboolean
multipleBirthIntegerinteger
photoI0..*Attachment
id0..1
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
relationship0..*CodeableConceptBinding
name0..1HumanName
telecomI0..*ContactPoint
address0..1Address
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

Hier ist ein Beispiel in XML:

<Patient xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://org.test.de/schenk/fhir/StructureDefinition/MyPlanetPatient" />
    </meta>
    <text>
        <status value="generated" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <extension url="http://org.test.de/schenk/fhir/StructureDefinition/Species">
        <valueCodeableConcept>
            <coding>
                <system value="http://fhir.ufp/CodeSystem/species" />
                <code value="HS" />
                <display value="Human" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="1234565431" />
    </identifier>
    <identifier>
        <system value="http://fhir.ufp/NamingSystem/ufp-citizen-id" />
        <value value="1" />
    </identifier>
    <identifier>
        <system value="http://starfleet-hospital.ufp/NamingSystem/patient-identifier" />
        <value value="0510-1809" />
    </identifier>
    <name>
        <family value="Quatrant" />
        <given value="Testonia" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="+49 (0)12345 - 123456" />
        <use value="home" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="mail@test.de" />
        <use value="work" />
    </telecom>
    <gender value="female" />
    <birthDate value="1984-12-23" />
    <address>
        <extension url="http://fhir.ufp/StructureDefinition/planet-ufp">
            <valueString value="Merkur" />
        </extension>
        <extension url="http://org.test.de/schenk/fhir/StructureDefinition/Quadrant">
            <valueCode value="gamma" />
        </extension>
        <use value="home" />
        <type value="both" />
        <line value="Teststra&#223;e 23" />
        <city value="Berlin" />
        <postalCode value="10623" />
        <country value="DE" />
    </address>
    <maritalStatus>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" />
            <code value="U" />
        </coding>
    </maritalStatus>
    <contact>
        <relationship>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
                <code value="N" />
            </coding>
        </relationship>
        <name>
            <text value="Sarek" />
        </name>
        <telecom>
            <system value="email" />
            <value value="info@lmaa.de" />
        </telecom>
    </contact>
</Patient>

Und ein Bsp. in JSON:

{
    "resourceType": "Patient",
    "meta": {
        "profile":  [
            "http://org.test.de/schenk/fhir/StructureDefinition/MyPlanetPatient"
        ]
    },
    "text": {
        "status": "generated",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "extension":  [
        {
            "url": "http://org.test.de/schenk/fhir/StructureDefinition/Species",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://fhir.ufp/CodeSystem/species",
                        "code": "HS",
                        "display": "Human"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
            "value": "1234565431"
        },
        {
            "system": "http://fhir.ufp/NamingSystem/ufp-citizen-id",
            "value": "1"
        },
        {
            "system": "http://starfleet-hospital.ufp/NamingSystem/patient-identifier",
            "value": "0510-1809"
        }
    ],
    "name":  [
        {
            "family": "Quatrant",
            "given":  [
                "Testonia"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "+49 (0)12345 - 123456",
            "use": "home"
        },
        {
            "system": "email",
            "value": "mail@test.de",
            "use": "work"
        }
    ],
    "gender": "female",
    "birthDate": "1984-12-23",
    "address":  [
        {
            "extension":  [
                {
                    "url": "http://fhir.ufp/StructureDefinition/planet-ufp",
                    "valueString": "Merkur"
                },
                {
                    "url": "http://org.test.de/schenk/fhir/StructureDefinition/Quadrant",
                    "valueCode": "gamma"
                }
            ],
            "use": "home",
            "type": "both",
            "line":  [
                "Teststraße 23"
            ],
            "city": "Berlin",
            "postalCode": "10623",
            "country": "DE"
        }
    ],
    "maritalStatus": {
        "coding":  [
            {
                "system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
                "code": "U"
            }
        ]
    },
    "contact":  [
        {
            "relationship":  [
                {
                    "coding":  [
                        {
                            "system": "http://terminology.hl7.org/CodeSystem/v2-0131",
                            "code": "N"
                        }
                    ]
                }
            ],
            "name": {
                "text": "Sarek"
            },
            "telecom":  [
                {
                    "system": "email",
                    "value": "info@lmaa.de"
                }
            ]
        }
    ]
}