Practitioner

In diesem Beispiel erstellen wir den Practitioner:

POSThttp://hapi.fhir.org/baseR4/Practitioner

Header .json .xml
Accept application/fhir+json application/fhir+xml
Content-Type application/fhir+json application/fhir+xm

Beispieldaten:

<Practitioner xmlns="http://hl7.org/fhir">
	<id value="f007"/>
	<meta>
		<profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzPractitioner"/>
	</meta>
	<identifier>
		<use value="official"/>
		<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="874635264"/>
	</identifier>
	<identifier>
		<use value="official"/>
		<system value="http://fhir.de/NamingSystem/bundesaerztekammer/efn"/>
		<value value="456156561"/>
	</identifier>
	<name>
		<use value="official"/>
		<family value="Heps"/>
		<given value="Simone"/>
		<suffix value="MD"/>
	</name>
	<telecom>
		<system value="phone"/>
		<value value="020556936"/>
		<use value="work"/>
	</telecom>
	<telecom>
		<system value="email"/>
		<value value="S.M.Heps@bmc.nl"/>
		<use value="work"/>
	</telecom>
	<telecom>
		<system value="fax"/>
		<value value="0205669283"/>
		<use value="work"/>
	</telecom>
	<address>
		<use value="work"/>
		<line value="Galapagosweg 91"/>
		<city value="Den Burg"/>
		<postalCode value="9105 PZ"/>
		<country value="NLD"/>
	</address>
	<gender value="female"/>
	<birthDate value="1971-11-07"/>
</Practitioner>

Outcome:

Status: 201 Created

Erstellte FHIR Ressource:

<Practitioner xmlns="http://hl7.org/fhir">
    <id value="1628028"/>
    <meta>
        <versionId value="1"/>
        <lastUpdated value="2020-11-02T09:29:44.262+00:00"/>
        <profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzPractitioner"/>
    </meta>
    <identifier>
        <use value="official"/>
        <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="874635264"/>
    </identifier>
    <identifier>
        <use value="official"/>
        <system value="http://fhir.de/NamingSystem/bundesaerztekammer/efn"/>
        <value value="456156561"/>
    </identifier>
    <name>
        <use value="official"/>
        <family value="Heps"/>
        <given value="Simone"/>
        <suffix value="MD"/>
    </name>
    <telecom>
        <system value="phone"/>
        <value value="020556936"/>
        <use value="work"/>
    </telecom>
    <telecom>
        <system value="email"/>
        <value value="S.M.Heps@bmc.nl"/>
        <use value="work"/>
    </telecom>
    <telecom>
        <system value="fax"/>
        <value value="0205669283"/>
        <use value="work"/>
    </telecom>
    <address>
        <use value="work"/>
        <line value="Galapagosweg 91"/>
        <city value="Den Burg"/>
        <postalCode value="9105 PZ"/>
        <country value="NLD"/>
    </address>
    <gender value="female"/>
    <birthDate value="1971-11-07"/>
</Practitioner>