forked from brettmarquard/HL7-C-CDA-Task-Force-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unknown_Immunization_Status_R2.xml
62 lines (62 loc) · 2.99 KB
/
Unknown_Immunization_Status_R2.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
57
58
59
60
61
62
<component>
<section>
<!-- conforms to Immunizations section with entries optional -->
<templateId root="2.16.840.1.113883.10.20.22.2.2.2"/>
<!-- Immunizations section with entries required -->
<templateId root="2.16.840.1.113883.10.20.22.2.2.1.2"/>
<code code="11369-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"
displayName="History of immunizations"/>
<title>IMMUNIZATIONS</title>
<text>
<content ID="immunSect"/>
<table border="1" width="100%">
<thead>
<tr>
<th>Vaccine</th>
<th>Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr ID="immun1">
<td> Unknown Immunization Status</td>
<td>Nov 1999</td>
<td>Completed</td>
</tr>
</tbody>
</table>
</text>
<entry>
<substanceAdministration moodCode="EVN" classCode="SBADM" negationInd="false" nullFlavor="NI">
<!-- We selected NI for this example, C-CDA R2 did not describe other appropriate nullFlavors -->
<templateId root="2.16.840.1.113883.10.20.22.4.52.2"/>
<!-- **** Immunization activity template **** -->
<id root="e6f1ba43-c0ed-4b9b-9f12-f435d8ad8f88"/>
<!-- No information on whether the patient received a vaccination -->
<text>
<reference value="#immun1"/>
</text>
<!-- Link to narrative stating no information on whether the patient received a vaccination -->
<statusCode code="completed"/>
<effectiveTime value="199911"/>
<!-- Date which you do not know whether or not patient received a vaccination -->
<consumable>
<manufacturedProduct classCode="MANU">
<!-- ** Immunization medication information ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.54.2"/>
<manufacturedMaterial>
<!-- Needed to use nullFlavor of OTH since templates requires CVX in code element-->
<code nullFlavor="OTH">
<!-- Optional original text -->
<originalText>Vaccination</originalText>
<translation code="71181003" displayName="vaccine"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
</code>
</manufacturedMaterial>
</manufacturedProduct>
</consumable>
</substanceAdministration>
</entry>
</section>
</component>