Adresse

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

useΣ ?!0..1codeBinding
typeΣ0..1codeBinding
textΣ0..1string
url1..1uriFixed Value
valueString0..1string
url1..1uriFixed Value
valueString0..1string
url1..1uriFixed Value
valueString0..1string
url1..1uriFixed Value
valueString0..1string
cityΣ0..1string
districtΣ0..0string
stateΣ0..1stringBinding
postalCodeΣ0..1string
countryΣ0..1stringBinding
startΣ0..1dateTime
endΣ0..1dateTime

Beispiele

XML-Format

Hier in der Verwendung als Patienten-Adresse:

<Patient xmlns="http://hl7.org/fhir">
    <meta>
        <profile value="http://fhir.de/StructureDefinition/patient-de-basis/0.2" />
    </meta>
    <text>
        <status value="generated" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <name>
        <use value="official" />
        <text value="Martina Mustermann" />
        <family value="Mustermann" />
        <given value="Martina" />
    </name>
    <address>
        <use value="home" />
        <type value="physical" />
        <text value="Musterweg 42, Hinterhof 2. Etage, 10787 Berlin, Deutschland" />
        <line value="Musterweg 42">
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName">
                <valueString value="Musterweg" />
            </extension>
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber">
                <valueString value="42" />
            </extension>
        </line>
        <line value="Hinterhof 2. Etage">
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator">
                <valueString value="Hinterhof 2. Etage" />
            </extension>
        </line>
        <city value="Berlin" />
        <state value="DE-BE" />
        <postalCode value="10787" />
        <country value="DE" />
    </address>
    <address>
        <use value="home" />
        <type value="postal" />
        <text value="Postfach 74656, 76297 Spöck, Deutschland" />
        <line value="Postfach 74656">
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox">
                <valueString value="Postfach 74656" />
            </extension>
        </line>
        <city value="Spöck" />
        <state value="DE-BW" />
        <postalCode value="76297" />
        <country value="DE" />
    </address>
</Patient>

JSON-Format

Hier in der Verwendung als Patienten-Adresse:

{
    "resourceType":"Patient",
    "meta":{
        "profile": [
            "http://fhir.de/StructureDefinition/patient-de-basis/0.2"
        ]
    },
    "text":{
        "status":"generated",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "name": [
        {
            "use":"official",
            "text":"Martina Mustermann",
            "family":"Mustermann",
            "given": [
                "Martina"
            ]
        }
    ],
    "address": [
        {
            "use":"home",
            "type":"physical",
            "text":"Musterweg 42, Hinterhof 2. Etage, 10787 Berlin, Deutschland",
            "line": [
                "Musterweg 42",
                "Hinterhof 2. Etage"
            ],
            "_line": [
                {
                    "extension": [
                        {
                            "url":"http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName",
                            "valueString":"Musterweg"
                        },
                        {
                            "url":"http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber",
                            "valueString":"42"
                        }
                    ]
                },
                {
                    "extension": [
                        {
                            "url":"http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator",
                            "valueString":"Hinterhof 2. Etage"
                        }
                    ]
                }
            ],
            "city":"Berlin",
            "state":"DE-BE",
            "postalCode":"10787",
            "country":"DE"
        },
        {
            "use":"home",
            "type":"postal",
            "text":"Postfach 74656, 76297 Spöck, Deutschland",
            "line": [
                "Postfach 74656"
            ],
            "_line": [
                {
                    "extension": [
                        {
                            "url":"http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox",
                            "valueString":"Postfach 74656"
                        }
                    ]
                }
            ],
            "city":"Spöck",
            "state":"DE-BW",
            "postalCode":"76297",
            "country":"DE"
        }
    ]
}