Observation

In diesem Beispiel erstellen wir die Observation des Patienten:

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

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

Beispieldaten:

<Observation xmlns="http://hl7.org/fhir">
	<id value="bloodgroup"/>
	<meta>
		<profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzObservation"/>
	</meta>
	<identifier>
		<use value="official"/>
		<system value="http://www.acme.com/identifiers/observation"/>
		<value value="bloodgroup"/>
	</identifier>
	<status value="final"/>
	<category>
		<coding>
			<system value="http://terminology.hl7.org/CodeSystem/observation-category"/>
			<code value="laboratory"/>
			<display value="Laboratory"/>
		</coding>
		<text value="Laboratory"/>
	</category>
	<code>
		<coding>
			<system value="http://loinc.org"/>
			<code value="883-9"/>
			<display value="ABO group [Type] in Blood"/>
		</coding>
		<text value="Blood Group"/>
	</code>
	<performer>
		<reference value="Practitioner/1628028"/>
	</performer>
	<effectiveDateTime value="2018-03-11T16:07:54+00:00"/>
	<valueCodeableConcept>
		<coding>
			<system value="http://snomed.info/sct"/>
			<code value="112144000"/>
			<display value="Blood group A (finding)"/>
		</coding>
		<text value="A"/>
	</valueCodeableConcept>
</Observation>

Outcome:

Status: 201 Created

Erstellte FHIR Ressource:

<Observation xmlns="http://hl7.org/fhir">
    <id value="1628027"/>
    <meta>
        <versionId value="1"/>
        <lastUpdated value="2020-11-02T09:28:02.270+00:00"/>
        <profile value="http://fhir.vital-services.de/R4/StructureDefinition/NotfalldatensatzObservation"/>
    </meta>
    <identifier>
        <use value="official"/>
        <system value="http://www.acme.com/identifiers/observation"/>
        <value value="bloodgroup"/>
    </identifier>
    <status value="final"/>
    <category>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/observation-category"/>
            <code value="laboratory"/>
            <display value="Laboratory"/>
        </coding>
        <text value="Laboratory"/>
    </category>
    <code>
        <coding>
            <system value="http://loinc.org"/>
            <code value="883-9"/>
            <display value="ABO group [Type] in Blood"/>
        </coding>
        <text value="Blood Group"/>
    </code>
    <effectiveDateTime value="2018-03-11T16:07:54+00:00"/>
    <performer>
        <reference value="Practitioner/1628028"/>
    </performer>
    <valueCodeableConcept>
        <coding>
            <system value="http://snomed.info/sct"/>
            <code value="112144000"/>
            <display value="Blood group A (finding)"/>
        </coding>
        <text value="A"/>
    </valueCodeableConcept>
</Observation>