-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathobservation-example.xml
More file actions
53 lines (52 loc) · 1.77 KB
/
Copy pathobservation-example.xml
File metadata and controls
53 lines (52 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<Observation xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../../../FHIR-Spec/4.0.0/fhir-all-xsd/fhir-all.xsd">
<id value="example"/>
<meta>
<profile value="http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-observation-lab"/>
</meta>
<status value="final"/>
<category>
<coding>
<system value="http://terminology.hl7.org/CodeSystem/observation-category"/>
<code value="laboratory"/>
<display value="Laboratory"/>
</coding>
</category>
<code>
<coding>
<system value="http://loinc.org"/>
<code value="718-7"/>
<display value="Hemoglobin [Mass/volume] in Blood"/>
</coding>
</code>
<subject>
<reference value="Patient/example-2"/>
</subject>
<encounter>
<reference value="Encounter/example"/>
</encounter>
<effectivePeriod>
<start value="2023-04-02T10:30:10+01:00"/>
<end value="2023-04-05T10:30:10+01:00"/>
</effectivePeriod>
<issued value="2023-04-03T15:30:10+01:00"/>
<performer>
<reference value= "Organization/example1"/>
<display value="Hendricks Country Hospital"/>
</performer>
<valueQuantity>
<value value="7.2"/>
<unit value="g/dL"/>
<system value="http://unitsofmeasure.org"/>
<code value="g/dL"/>
</valueQuantity>
<interpretation>
<coding>
<system
value="http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"/>
<code value="L"/>
<display value="Low"/>
</coding>
<text value="Low"/>
</interpretation>
</Observation>