Adresse
Canonical URL: http://fhir.de/StructureDefinition/address-de-basis/0.2
address-de-basis-0.2 (Address) | I | Address | |
id | 0..1 | string | |
extension | 0..* | Extension | |
use | Σ ?! | 0..1 | codeBinding |
type | Σ I | 0..1 | codeBinding |
text | Σ | 0..1 | string |
line | Σ I | 0..* | string |
id | 0..1 | string | |
extension | 0..* | Extension | |
Strasse | I | 0..1 | Extension(string) |
id | 0..1 | string | |
extension | 0..* | Extension | |
url | 1..1 | uriFixed Value | |
valueString | 0..1 | string | |
Hausnummer | I | 0..1 | Extension(string) |
id | 0..1 | string | |
extension | 0..* | Extension | |
url | 1..1 | uriFixed Value | |
valueString | 0..1 | string | |
Adresszusatz | I | 0..1 | Extension(string) |
id | 0..1 | string | |
extension | 0..* | Extension | |
url | 1..1 | uriFixed Value | |
valueString | 0..1 | string | |
Postfach | I | 0..1 | Extension(string) |
id | 0..1 | string | |
extension | 0..* | Extension | |
url | 1..1 | uriFixed Value | |
valueString | 0..1 | string | |
value | 0..1 | ||
city | Σ | 0..1 | string |
district | Σ | 0..0 | string |
state | Σ | 0..1 | stringBinding |
postalCode | Σ | 0..1 | string |
country | Σ | 0..1 | stringBinding |
period | Σ | 0..1 | Period |
id | 0..1 | string | |
extension | 0..* | Extension | |
start | Σ I | 0..1 | dateTime |
end | Σ I | 0..1 | dateTime |
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" } ] }