Patienten-Profil

You need a license to run FQL queries

id0..1string
planetS I1..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
countryΣ0..1string
periodΣ I0..1Period

Hier ein Beispiel:

<Patient xmlns="http://hl7.org/fhir">
    <id value="SynPatientExample" />
    <meta>
        <profile value="https://www.synedra.com/synfhir/StructureDefinition/SynPatientProfileFsh" />
    </meta>
    <name>
        <family value="R&#246;ck" />
        <given value="Alex" />
    </name>
    <gender value="male" />
    <address>
        <extension url="https://www.synedra.com/synfhir/StructureDefinition/SynPlanetExtension">
            <valueString value="Erde" />
        </extension>
        <line value="Stra&#223;enname" />
        <city value="Innsbruck" />
    </address>
    <maritalStatus>
        <coding>
            <code value="U" />
        </coding>
    </maritalStatus>
</Patient>
{
    "resourceType": "Patient",
    "id": "SynPatientExample",
    "meta": {
        "profile":  [
            "https://www.synedra.com/synfhir/StructureDefinition/SynPatientProfileFsh"
        ]
    },
    "address":  [
        {
            "extension":  [
                {
                    "url": "https://www.synedra.com/synfhir/StructureDefinition/SynPlanetExtension",
                    "valueString": "Erde"
                }
            ],
            "line":  [
                "Straßenname"
            ],
            "city": "Innsbruck"
        }
    ],
    "name":  [
        {
            "given":  [
                "Alex"
            ],
            "family": "Röck"
        }
    ],
    "gender": "male",
    "maritalStatus": {
        "coding":  [
            {
                "code": "U"
            }
        ]
    }
}
Patient