forked from brettmarquard/HL7-C-CDA-Task-Force-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Problem_List_Active_Problem.xml
56 lines (56 loc) · 2.61 KB
/
Problem_List_Active_Problem.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
54
55
56
<section>
<templateId root="2.16.840.1.113883.10.20.22.2.5.1"/>
<code code="11450-4" codeSystem="2.16.840.1.113883.6.1" displayName="Problem List"/>
<title>Problem List</title>
<text>
<table>
<thead>
<tr>
<th>Name</th>
<th>Dates</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr ID="Problem1">
<td>Community Acquired Pneumonia</td>
<td>
<content>Onset: February 27 2014</content>
</td>
<td>Active</td>
</tr>
</tbody>
</table>
</text>
<entry>
<act classCode="ACT" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.3" />
<id root="102ca2e9-884c-4523-a2b4-1b6c3469c397" />
<code code="CONC" codeSystem="2.16.840.1.113883.5.6" />
<!-- Since this is an active problem, the concern status is active. -->
<!-- While clinicians can track resolved problems, generally active problems will have active concern status and resolved concerns will be completed -->
<statusCode code="active" />
<effectiveTime>
<!-- This equates to the time the concern was authored in the patient's chart. This may frequently be an EHR timestamp-->
<low value="20140302124536+0500" />
</effectiveTime>
<entryRelationship typeCode="SUBJ">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.4" />
<id extension="10241104348" root="1.3.6.1.4.1.22812.4.111.0.4.1.2.1" />
<code codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT" code="55607006" displayName="Problem" />
<text>
<reference value="#Problem1" />
</text>
<statusCode code="completed"/>
<effectiveTime>
<!-- This represents the date of biological onset. -->
<low value="20140227"/>
</effectiveTime>
<!-- This is a SNOMED code as the primary vocabulary for problem lists-->
<value xsi:type="CD" code="385093006" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT" displayName="Community Acquired Pneumonia"/>
</observation>
</entryRelationship>
</act>
</entry>
</section>