Mein Patienten-Profil

Das ist mein toller Patient

idΣ0..1id
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
myspeciesI1..*Extension(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
familyS Σ1..1string
givenS Σ1..*string
prefixS Σ0..*string
suffixΣ0..*string
periodΣ I0..1Period
telecomΣ I0..*ContactPoint
genderS Σ1..1codeBinding
birthDateΣ0..1date
deceasedBooleanboolean
deceasedDateTimedateTime
id0..1
planetI0..1Extension(string)
useΣ ?!0..1codeBinding
typeΣ0..1codeBinding
textΣ0..1string
lineS Σ1..*string
cityS Σ1..1string
districtΣ0..1string
stateΣ0..1string
postalCodeΣ0..1string
countryS Σ0..1string
periodΣ I0..1Period
maritalStatus0..1CodeableConceptBinding
multipleBirthBooleanboolean
multipleBirthIntegerinteger
photoI0..*Attachment
id0..1
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
relationship0..*CodeableConceptBinding
name0..1HumanName
telecomI0..*ContactPoint
address0..1MeineAdresse
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 mein Beispiel

<Patient xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://meintbtest.de/fhir/StructureDefinition/meinPatient" />
    </meta>
    <extension url="http://meintbtest.de/fhir/StructureDefinition/MySpecies">
        <valueCodeableConcept>
            <coding>
                <system value="http://fhir.ufp/CodeSystem/species" />
                <code value="VK" />
                <display value="Vulcan" />
            </coding>
        </valueCodeableConcept>
    </extension>
    <identifier>
        <system value="http://fhir.ufp/NamingSystem/ufp-citizen-id" />
        <value value="42" />
    </identifier>
    <identifier>
        <system value="http://fhir.de/NamingSystem/gkv/kvid-10" />
        <value value="9973264355" />
    </identifier>
    <identifier>
        <system value="http://starfleet-hospital.ufp/NamingSystem/patient-identifier" />
        <value value="NCC-1032" />
    </identifier>
    <name>
        <family value="Wurst" />
        <given value="Hans" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="+49 (0)2056 - 123456" />
        <use value="work" />
    </telecom>
    <gender value="male" />
    <birthDate value="1980-04-01" />
    <address>
        <extension url="http://fhir.ufp/StructureDefinition/planet">
            <valueString value="Mars" />
        </extension>
        <use value="home" />
        <type value="both" />
        <line value="Wagnerstra&#223;e 3" />
        <city value="D&#252;sseldorf" />
        <postalCode value="41234" />
        <country value="DE" />
    </address>
    <maritalStatus>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3MaritalStatus" />
            <code value="U" />
        </coding>
    </maritalStatus>
    <contact>
        <relationship>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v20131" />
                <code value="N" />
            </coding>
        </relationship>
        <name>
            <text value="Sarek" />
        </name>
        <telecom>
            <system value="email" />
            <value value="hans@wurst.de" />
        </telecom>
    </contact>
</Patient>

Und alles nochmal in json

{
    "resourceType": "Patient",
    "meta": {
        "profile":  [
            "http://meintbtest.de/fhir/StructureDefinition/meinPatient"
        ]
    },
    "extension":  [
        {
            "url": "http://meintbtest.de/fhir/StructureDefinition/MySpecies",
            "valueCodeableConcept": {
                "coding":  [
                    {
                        "system": "http://fhir.ufp/CodeSystem/species",
                        "code": "VK",
                        "display": "Vulcan"
                    }
                ]
            }
        }
    ],
    "identifier":  [
        {
            "system": "http://fhir.ufp/NamingSystem/ufp-citizen-id",
            "value": "42"
        },
        {
            "system": "http://fhir.de/NamingSystem/gkv/kvid-10",
            "value": "9973264355"
        },
        {
            "system": "http://starfleet-hospital.ufp/NamingSystem/patient-identifier",
            "value": "NCC-1032"
        }
    ],
    "name":  [
        {
            "family": "Wurst",
            "given":  [
                "Hans"
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "+49 (0)2056 - 123456",
            "use": "work"
        }
    ],
    "gender": "male",
    "birthDate": "1980-04-01",
    "address":  [
        {
            "extension":  [
                {
                    "url": "http://fhir.ufp/StructureDefinition/planet",
                    "valueString": "Mars"
                }
            ],
            "use": "home",
            "type": "both",
            "line":  [
                "Wagnerstraße 3"
            ],
            "city": "Düsseldorf",
            "postalCode": "41234",
            "country": "DE"
        }
    ],
    "maritalStatus": {
        "coding":  [
            {
                "system": "http://terminology.hl7.org/CodeSystem/v3MaritalStatus",
                "code": "U"
            }
        ]
    },
    "contact":  [
        {
            "relationship":  [
                {
                    "coding":  [
                        {
                            "system": "http://terminology.hl7.org/CodeSystem/v20131",
                            "code": "N"
                        }
                    ]
                }
            ],
            "name": {
                "text": "Sarek"
            },
            "telecom":  [
                {
                    "system": "email",
                    "value": "hans@wurst.de"
                }
            ]
        }
    ]
}