forked from brettmarquard/HL7-C-CDA-Task-Force-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Plan_of_Treatment_EKG.xml
53 lines (53 loc) · 2.16 KB
/
Plan_of_Treatment_EKG.xml
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
53
<?xml version="1.0" encoding="UTF-8"?>
<component>
<!-- here is the optional Plan of Treatment -->
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.10"
extension="2014-06-09"/>
<code code="18776-5" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Plan of Care"/>
<title>Plan of Treatment</title>
<!-- one Planned Observation in the human readable text and as a discrete entry -->
<text>
<!-- this section may contain many different Planned items, so we use the table caption to help identify each -->
<table>
<caption>Planned Observation</caption>
<thead>
<tr>
<th>Name</th>
<th>Date</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr ID="ID0EFFFFFFCAB2">
<td ID="ID0EFAAAAACAB2">EKG 12 channel panel</td>
<td>June 23, 2015</td>
<td/>
</tr>
</tbody>
</table>
</text>
<!-- a planned observation entry -->
<entry>
<!-- observation with moodCode indicating Intent -->
<observation classCode="OBS" moodCode="INT">
<templateId root="2.16.840.1.113883.10.20.22.4.44"/>
<id root="b52bee94-c34b-4e2c-8c15-5ad9d6def205" />
<code code="34534-8"
codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC"
displayName="EKG 12 channel panel">
<originalText>
<reference value="#ID0EFAAAAACAB2"></reference>
</originalText>
</code>
<text>
<!-- referencing the entire text -->
<reference value="#ID0EFFFFFFCAB2"/>
</text>
<statusCode code="active" />
<effectiveTime value="20150623"/>
</observation>
</entry>
</section>
</component>