Beispiele
Valides Minimalbeispiel:
Practitioner |
id : PractitionerWalterArzt |
meta |
source : http://krankenhaus.de |
profile : https://gematik.de/fhir/isik/StructureDefinition/ISiKPersonImGesundheitsberuf |
identifier |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v2-0203 |
code : LANR |
system : https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR |
value : 123456789 |
identifier |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v2-0203 |
code : DN |
system : http://fhir.de/sid/bundesaerztekammer/efn |
value : 123456789123456 |
active : True |
name |
use : official |
text : Walter Arzt |
family : Arzt |
extension |
url : http://hl7.org/fhir/StructureDefinition/humanname-own-name |
value : Arzt |
given : Walter |
name |
use : maiden |
text : Gross |
family : Gross |
extension |
url : http://hl7.org/fhir/StructureDefinition/humanname-own-name |
value : Gross |
address |
type : both |
line : Schmiedegasse 16 |
extension |
url : http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber |
value : 16 |
extension |
url : http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName |
value : Schmiedegasse |
city : Potsdam |
postalCode : 14469 |
country : DE |
gender : male |
birthDate |
extension |
url : http://hl7.org/fhir/StructureDefinition/data-absent-reason |
value : masked |
qualification |
code |
coding |
system : http://snomed.info/sct |
version : http://snomed.info/sct/900000000000207008/version/20200131 |
code : 112247003 |
display : Medical doctor (occupation) |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="PractitionerWalterArzt" /> <meta> <source value="http://krankenhaus.de" /> <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKPersonImGesundheitsberuf" /> </meta> <identifier> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> <code value="LANR" /> </coding> </type> <system value="https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR" /> <value value="123456789" /> </identifier> <identifier> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> <code value="DN" /> </coding> </type> <system value="http://fhir.de/sid/bundesaerztekammer/efn" /> <value value="123456789123456" /> </identifier> <active value="true" /> <name> <use value="official" /> <text value="Walter Arzt" /> <family value="Arzt"> <extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-name"> <valueString value="Arzt" /> </extension> </family> <given value="Walter" /> </name> <name> <use value="maiden" /> <text value="Gross" /> <family value="Gross"> <extension url="http://hl7.org/fhir/StructureDefinition/humanname-own-name"> <valueString value="Gross" /> </extension> </family> </name> <address> <type value="both" /> <line value="Schmiedegasse 16"> <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber"> <valueString value="16" /> </extension> <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName"> <valueString value="Schmiedegasse" /> </extension> </line> <city value="Potsdam" /> <postalCode value="14469" /> <country value="DE" /> </address> <gender value="male" /> <birthDate> <extension url="http://hl7.org/fhir/StructureDefinition/data-absent-reason"> <valueCode value="masked" /> </extension> </birthDate> <qualification> <code> <coding> <system value="http://snomed.info/sct" /> <version value="http://snomed.info/sct/900000000000207008/version/20200131" /> <code value="112247003" /> <display value="Medical doctor (occupation)" /> </coding> </code> </qualification> </Practitioner>
{ "resourceType": "Practitioner", "id": "PractitionerWalterArzt", "meta": { "source": "http://krankenhaus.de", "profile": [ "https://gematik.de/fhir/isik/StructureDefinition/ISiKPersonImGesundheitsberuf" ] }, "name": [ { "use": "official", "text": "Walter Arzt", "family": "Arzt", "_family": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", "valueString": "Arzt" } ] }, "given": [ "Walter" ] }, { "use": "maiden", "text": "Gross", "family": "Gross", "_family": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name", "valueString": "Gross" } ] } } ], "identifier": [ { "type": { "coding": [ { "code": "LANR", "system": "http://terminology.hl7.org/CodeSystem/v2-0203" } ] }, "system": "https://fhir.kbv.de/NamingSystem/KBV_NS_Base_ANR", "value": "123456789" }, { "type": { "coding": [ { "code": "DN", "system": "http://terminology.hl7.org/CodeSystem/v2-0203" } ] }, "system": "http://fhir.de/sid/bundesaerztekammer/efn", "value": "123456789123456" } ], "active": true, "address": [ { "type": "both", "line": [ "Schmiedegasse 16" ], "_line": [ { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber", "valueString": "16" }, { "url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName", "valueString": "Schmiedegasse" } ] } ], "city": "Potsdam", "postalCode": "14469", "country": "DE" } ], "gender": "male", "qualification": [ { "code": { "coding": [ { "version": "http://snomed.info/sct/900000000000207008/version/20200131", "code": "112247003", "system": "http://snomed.info/sct", "display": "Medical doctor (occupation)" } ] } } ], "_birthDate": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", "valueCode": "masked" } ] } }