Procedure

In diesem Beispiel erstellen wir die Procedure des Patienten:

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

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

Beispieldaten:

<Procedure xmlns="http://hl7.org/fhir">
	<id value="example-implant"/>
	<meta>
		<profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzProcedure"/>
	</meta>
	<identifier>
				<system value="http://www.acme.com/identifiers/procedure"/>
				<value value="456789123"/>
			</identifier>
	<status value="completed"/>
	<category>
		<coding>
			<system value="http://snomed.info/sct"/>
			<code value="129336009"/>
		</coding>
		<text value="Implantation "/>
	</category>
	<code>
		<coding>
			<system value="http://snomed.info/sct"/>
			<code value="25267002"/>
			<display value="Insertion of intracardiac pacemaker (procedure)"/>
		</coding>
		<text value="Implant Pacemaker"/>
	</code>
	<subject>
		<reference value="Patient/1628021"/>
	</subject>
	<performedDateTime value="2015-04-05"/>
	<performer>
		<actor>
			<reference value="Practitioner/1628028"/>
			<display value="Simone Heps"/>
		</actor>
	</performer>
	<reasonCode>
		<text value="Bradycardia"/>
	</reasonCode>
	<note>
		<text value="Routine Appendectomy. Appendix was inflamed and in retro-caecal position"/>
	</note>
	<focalDevice>
		<action>
			<coding>
				<system value="http://hl7.org/fhir/device-action"/>
				<code value="implanted"/>
			</coding>
		</action>
		<manipulated>
			<reference value="Device/example-pacemaker"/>
		</manipulated>
	</focalDevice>
</Procedure>

Outcome:

Status: 201 Created

Erstellte FHIR Ressource:

<Procedure xmlns="http://hl7.org/fhir">
    <id value="1628029"/>
    <meta>
        <versionId value="1"/>
        <lastUpdated value="2020-11-02T09:32:25.413+00:00"/>
        <profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzProcedure"/>
    </meta>
    <identifier>
        <system value="http://www.acme.com/identifiers/procedure"/>
        <value value="456789123"/>
    </identifier>
    <status value="completed"/>
    <category>
        <coding>
            <system value="http://snomed.info/sct"/>
            <code value="129336009"/>
        </coding>
        <text value="Implantation "/>
    </category>
    <code>
        <coding>
            <system value="http://snomed.info/sct"/>
            <code value="25267002"/>
            <display value="Insertion of intracardiac pacemaker (procedure)"/>
        </coding>
        <text value="Implant Pacemaker"/>
    </code>
    <subject>
        <reference value="Patient/1628021"/>
    </subject>
    <performedDateTime value="2015-04-05"/>
    <performer>
        <actor>
            <reference value="Practitioner/1628028"/>
            <display value="Simone Heps"/>
        </actor>
    </performer>
    <reasonCode>
        <text value="Bradycardia"/>
    </reasonCode>
    <note>
        <text value="Routine Appendectomy. Appendix was inflamed and in retro-caecal position"/>
    </note>
    <focalDevice>
        <action>
            <coding>
                <system value="http://hl7.org/fhir/device-action"/>
                <code value="implanted"/>
            </coding>
        </action>
        <manipulated>
            <reference value="Device/example-pacemaker"/>
        </manipulated>
    </focalDevice>
</Procedure>