forked from brettmarquard/HL7-C-CDA-Task-Force-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CCD_Transition_of_Care_Ambulatory_Complete_Unknown_Immunizations.xml
2903 lines (2899 loc) · 107 KB
/
CCD_Transition_of_Care_Ambulatory_Complete_Unknown_Immunizations.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><?xml-stylesheet type="text/xsl" href="CDA.xsl"?>
<!-- Title: US_Realm_Header_Template -->
<ClinicalDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="urn:hl7-org:v3" xmlns:cda="urn:hl7-org:v3" xmlns:sdtc="urn:hl7-org:sdtc">
<!-- ******************************************************** CDA Header
******************************************************** -->
<realmCode code="US"/>
<typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"/>
<!-- US General Header Template -->
<templateId root="2.16.840.1.113883.10.20.22.1.1"/>
<!-- *** Note: The next templateId, code and title will differ depending
on what type of document is being sent. *** -->
<!-- conforms to the document specific requirements -->
<templateId root="2.16.840.1.113883.10.20.22.1.2"/>
<id extension="TT988" root="2.16.840.1.113883.19.5.99999.1"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" code="34133-9"
displayName="Summarization of Episode Note"/>
<title>Community Health and Hospitals: Health Summary</title>
<effectiveTime value="201209150000-0400"/>
<confidentialityCode code="N" codeSystem="2.16.840.1.113883.5.25"/>
<languageCode code="en-US"/>
<setId extension="sTT988" root="2.16.840.1.113883.19.5.99999.19"/>
<versionNumber value="1"/>
<recordTarget>
<patientRole>
<id root="f02e86fe-b148-4661-be7a-4462fa00feb2" extension="23423"/>
<!-- Fake ID using HL7 example OID. -->
<!-- Fake Social Security Number using the actual SSN OID. -->
<addr use="HP">
<!-- HP is "primary home" from codeSystem 2.16.840.1.113883.5.1119 -->
<streetAddressLine>1357 Amber Drive</streetAddressLine>
<city>Beaverton</city>
<state>OR</state>
<postalCode>97867</postalCode>
<country>US</country>
<!-- US is "United States" from ISO 3166-1 Country Codes: 1.0.3166.1 -->
</addr>
<telecom value="tel:(816)276-6909" use="HP"/>
<!-- HP is "primary home" from HL7 AddressUse 2.16.840.1.113883.5.1119 -->
<patient>
<name use="L">
<!-- L is "Legal" from HL7 EntityNameUse 2.16.840.1.113883.5.45 -->
<given>Isabella</given>
<given>Isa</given>
<!-- CL is "Call me" from HL7 EntityNamePartQualifier 2.16.840.1.113883.5.43 -->
<family>Jones</family>
</name>
<administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1"
displayName="Female"/>
<birthTime value="19750501"/>
<maritalStatusCode code="M" displayName="Married" codeSystem="2.16.840.1.113883.5.2"
codeSystemName="MaritalStatusCode"/>
<religiousAffiliationCode code="1013"
displayName="Christian (non-Catholic, non-specific)"
codeSystemName="HL7 Religious Affiliation" codeSystem="2.16.840.1.113883.5.1076"/>
<!-- CDC Race and Ethnicity code set contains the minimum race and ethnicity categories defined by OMB Standards for Race and Ethnicity -->
<raceCode code="2106-3" displayName="White" codeSystem="2.16.840.1.113883.6.238"
codeSystemName="Race & Ethnicity - CDC"/>
<ethnicGroupCode code="2186-5" displayName="Not Hispanic or Latino"
codeSystem="2.16.840.1.113883.6.238" codeSystemName="Race & Ethnicity - CDC"/>
<guardian>
<code code="PRN" displayName="Parent" codeSystem="2.16.840.1.113883.5.111"
codeSystemName="HL7 Role code"/>
<addr use="HP">
<!-- HP is "primary home" from codeSystem 2.16.840.1.113883.5.1119 -->
<streetAddressLine>1357 Amber Drive</streetAddressLine>
<city>Beaverton</city>
<state>OR</state>
<postalCode>97867</postalCode>
<country>US</country>
<!-- US is "United States" from ISO 3166-1 Country Codes: 1.0.3166.1 -->
</addr>
<telecom value="tel:(816)276-6909" use="HP"/>
<guardianPerson>
<name>
<given>Ralph</given>
<family>Jones</family>
</name>
</guardianPerson>
</guardian>
<birthplace>
<place>
<addr>
<city>Beaverton</city>
<state>OR</state>
<postalCode>97867</postalCode>
<country>US</country>
</addr>
</place>
</birthplace>
<languageCommunication>
<languageCode code="eng"/>
<!-- EN is "English" as in the IG -->
<modeCode code="ESP" displayName="Expressed spoken"
codeSystem="2.16.840.1.113883.5.60" codeSystemName="LanguageAbilityMode"/>
<proficiencyLevelCode code="G" displayName="Good"
codeSystem="2.16.840.1.113883.5.61"
codeSystemName="LanguageAbilityProficiency"/>
<preferenceInd value="true"/>
</languageCommunication>
</patient>
<providerOrganization>
<id root="2.16.840.1.113883.4.6"/>
<name>Community Health and Hospitals</name>
<telecom use="WP" value="tel: 555-555-5000"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
</providerOrganization>
</patientRole>
</recordTarget>
<author>
<time value="20050329224411+0500"/>
<assignedAuthor>
<id extension="99999999" root="2.16.840.1.113883.4.6"/>
<code code="200000000X" codeSystem="2.16.840.1.113883.6.101"
displayName="Allopathic & Osteopathic Physicians"/>
<addr>
<streetAddressLine>1002 Healthcare Drive </streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom use="WP" value="tel:555-555-1002"/>
<assignedPerson>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
</assignedAuthor>
</author>
<dataEnterer>
<assignedEntity>
<id root="2.16.840.1.113883.4.6" extension="999999943252"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom use="WP" value="tel:555-555-1002"/>
<assignedPerson>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
</assignedEntity>
</dataEnterer>
<informant>
<assignedEntity>
<id extension="KP00017" root="2.16.840.1.113883.19.5"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom use="WP" value="tel:555-555-1002"/>
<assignedPerson>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
</assignedEntity>
</informant>
<informant>
<relatedEntity classCode="PRS">
<!-- classCode PRS represents a person with personal relationship with
the patient. -->
<code code="SPS" displayName="SPOUSE" codeSystem="2.16.840.1.113883.1.11.19563"
codeSystemName="Personal Relationship Role Type Value Set"/>
<relatedPerson>
<name>
<given>Frank</given>
<family>Jones</family>
</name>
</relatedPerson>
</relatedEntity>
</informant>
<custodian>
<assignedCustodian>
<representedCustodianOrganization>
<id extension="99999999" root="2.16.840.1.113883.4.6"/>
<name>Community Health and Hospitals</name>
<telecom value="tel: 555-555-1002" use="WP"/>
<addr use="WP">
<streetAddressLine>1002 Healthcare Drive </streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
</representedCustodianOrganization>
</assignedCustodian>
</custodian>
<informationRecipient>
<intendedRecipient>
<informationRecipient>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</informationRecipient>
<receivedOrganization>
<name>Community Health and Hospitals</name>
</receivedOrganization>
</intendedRecipient>
</informationRecipient>
<legalAuthenticator>
<time value="20090227130000+0500"/>
<signatureCode code="S"/>
<assignedEntity>
<id extension="999999999" root="2.16.840.1.113883.4.6"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom use="WP" value="tel:555-555-1002"/>
<assignedPerson>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
</assignedEntity>
</legalAuthenticator>
<authenticator>
<time value="20090227130000+0500"/>
<signatureCode code="S"/>
<assignedEntity>
<id extension="999999999" root="2.16.840.1.113883.4.6"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom use="WP" value="tel:555-555-1002"/>
<assignedPerson>
<name>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
</assignedEntity>
</authenticator>
<documentationOf>
<serviceEvent classCode="PCPR">
<code code="73761001" codeSystem="2.16.840.1.113883.6.96" codeSystemName="SNOMED CT"
displayName="Colonoscopy"/>
<effectiveTime>
<low value="201209080000-0400"/>
<high value="201209150000-0400"/>
</effectiveTime>
<performer typeCode="PRF">
<functionCode code="PP" displayName="Primary Performer"
codeSystem="2.16.840.1.113883.12.443" codeSystemName="Provider Role">
<originalText>Primary Care Provider</originalText>
</functionCode>
<assignedEntity>
<!-- Provider NPI "PseudoMD-1" -->
<id extension="PseudoMD-1" root="2.16.840.1.113883.4.6"/>
<code code="207RG0100X" displayName="Gastroenterologist"
codeSystemName="Provider Codes" codeSystem="2.16.840.1.113883.6.101"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
<telecom value="tel:+1-555-555-5000" use="HP"/>
<assignedPerson>
<name>
<prefix>Dr.</prefix>
<given>Henry</given>
<family>Seven</family>
</name>
</assignedPerson>
<representedOrganization>
<id root="2.16.840.1.113883.19.5.9999.1393"/>
<name>Community Health and Hospitals</name>
<telecom value="tel:+1-555-555-5000" use="HP"/>
<addr>
<streetAddressLine>1001 Village Avenue</streetAddressLine>
<city>Portland</city>
<state>OR</state>
<postalCode>99123</postalCode>
<country>US</country>
</addr>
</representedOrganization>
</assignedEntity>
</performer>
</serviceEvent>
</documentationOf>
<!-- ******************************************************** CDA Body ******************************************************** -->
<component>
<structuredBody>
<!-- *************************************** ADVANCE DIRECTIVES************************** -->
<component>
<section>
<!-- conforms to Advance Directives section with entries optional -->
<templateId root="2.16.840.1.113883.10.20.22.2.21"/>
<!-- Advance Directives section with entries required -->
<templateId root="2.16.840.1.113883.10.20.22.2.21.1"/>
<code code="42348-3" codeSystem="2.16.840.1.113883.6.1"/>
<title>ADVANCE DIRECTIVES</title>
<text>
<table border="1" width="100%">
<thead>
<tr>
<th>Directive</th>
<th>Description</th>
<th>Verification</th>
<th>Supporting Document(s)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Resuscitation status</td>
<td>
<content ID="AD1">Do not resuscitate</content>
</td>
<td>Dr. Robert Dolin, Feb 13, 2011</td>
<td>
<linkHtml
href="AdvanceDirective.b50b7910-7ffb-4f4c-bbe4-177ed68cbbf3.pdf"
>Advance directive</linkHtml>
</td>
</tr>
</tbody>
</table>
</text>
<entry>
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.48"/>
<!-- ** Advance Directive Observation ** -->
<id root="9b54c3c9-1673-49c7-aef9-b037ed72ed27"/>
<code code="304251008" codeSystem="2.16.840.1.113883.6.96"
displayName="Resuscitation"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="20110213"/>
<high nullFlavor="NA"/>
</effectiveTime>
<value xsi:type="CD" code="304253006"
codeSystem="2.16.840.1.113883.6.96" displayName="Do not resuscitate">
<originalText>
<reference value="#AD1"/>
</originalText>
</value>
<participant typeCode="VRF">
<templateId root="2.16.840.1.113883.10.20.1.58"/>
<time value="201102013"/>
<participantRole>
<id root="20cf14fb-b65c-4c8c-a54d-b0cca834c18c"/>
<playingEntity>
<name>
<prefix>Dr.</prefix>
<family>Dolin</family>
<given>Robert</given>
</name>
</playingEntity>
</participantRole>
</participant>
<participant typeCode="CST">
<participantRole classCode="AGNT">
<addr>
<streetAddressLine>21 North Ave.</streetAddressLine>
<city>Burlington</city>
<state>MA</state>
<postalCode>02368</postalCode>
<country>US</country>
</addr>
<telecom value="tel:(555)555-1003"/>
<playingEntity>
<name>
<prefix>Dr.</prefix>
<family>Dolin</family>
<given>Robert</given>
</name>
</playingEntity>
</participantRole>
</participant>
<reference typeCode="REFR">
<seperatableInd value="false"/>
<externalDocument>
<id root="b50b7910-7ffb-4f4c-bbe4-177ed68cbbf3"/>
<text mediaType="application/pdf">
<reference
value="AdvanceDirective.b50b7910-7ffb-4f4c-bbe4-177ed68cbbf3.pdf"
/>
</text>
</externalDocument>
</reference>
</observation>
</entry>
</section>
</component>
<!-- ********************************* Allergies, Adverse Reactions, Alerts ****************************** -->
<component>
<section>
<!-- conforms to Allergies section with entries optional -->
<templateId root="2.16.840.1.113883.10.20.22.2.6"/>
<!-- Allergies section with entries required -->
<templateId root="2.16.840.1.113883.10.20.22.2.6.1"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1"/>
<title>ALLERGIES, ADVERSE REACTIONS, ALERTS</title>
<text>
<table border="1" width="100%">
<thead>
<tr>
<th>Substance</th>
<th>Overall Severity</th>
<th>Reaction</th>
<th>Reaction Severity</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>ALLERGENIC EXTRACT, PENICILLIN</td>
<td>
<content ID="severity4">Moderate to Severe</content>
</td>
<td>
<content ID="reaction1">Nausea</content>
</td>
<td>
<content ID="severity1">Mild</content>
</td>
<td>Inactive</td>
</tr>
<tr>
<td>Codeine</td>
<td>
<content ID="severity5">Mild</content>
</td>
<td>
<content ID="reaction2">Wheezing</content>
</td>
<td>
<content ID="severity2">Moderate</content>
</td>
<td>Active</td>
</tr>
<tr>
<td>Aspirin</td>
<td>
<content ID="severity6">Mild</content>
</td>
<td>
<content ID="reaction3">Hives</content>
</td>
<td>
<content ID="severity3">Mild to moderate</content>
</td>
<td>Active</td>
</tr>
</tbody>
</table>
</text>
<entry typeCode="DRIV">
<act classCode="ACT" moodCode="EVN">
<!-- ** Allergy problem act ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.30"/>
<id root="36e3e930-7b14-11db-9fe1-0800200c9a66"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC"
displayName="Allergies, adverse reactions, alerts"/>
<statusCode code="active"/>
<effectiveTime >
<low value="20070501"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.7"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a66"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="20070501"/>
</effectiveTime>
<value xsi:type="CD" code="419511003"
displayName="Propensity to adverse reactions to drug"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT">
<originalText>
<reference value="#reaction1"/>
</originalText>
</value>
<participant typeCode="CSM">
<participantRole classCode="MANU">
<playingEntity classCode="MMAT">
<code code="314422"
displayName="ALLERGENIC EXTRACT, PENICILLIN"
codeSystem="2.16.840.1.113883.6.88"
codeSystemName="RxNorm">
<originalText>
<reference value="#reaction1"/>
</originalText>
</code>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy status observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.28"/>
<code code="33999-4" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC" displayName="Status"/>
<statusCode code="completed"/>
<value xsi:type="CE" code="73425007"
codeSystem="2.16.840.1.113883.6.96"
displayName="Inactive"/>
</observation>
</entryRelationship>
<entryRelationship typeCode="MFST" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Reaction observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.9"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a64"/>
<code nullFlavor="NA"/>
<text>
<reference value="#reaction1"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20070501"/>
<high value="20090227130000+0500"/>
</effectiveTime>
<value xsi:type="CD" code="422587007"
codeSystem="2.16.840.1.113883.6.96"
displayName="Nausea"/>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV"
displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity4"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="255604002"
displayName="Mild"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="S"
displayName="Suceptible"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV" displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity2"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="371924009"
displayName="Moderate to severe"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="N" displayName="Normal"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</act>
</entry>
<entry typeCode="DRIV">
<act classCode="ACT" moodCode="EVN">
<!-- ** Allergy problem act ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.30"/>
<id root="36e3e930-7b14-11db-9fe1-0800200c9a66"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC"
displayName="Allergies, adverse reactions, alerts"/>
<statusCode code="active"/>
<effectiveTime >
<low value="20060501"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.7"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a66"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="20060501"/>
</effectiveTime>
<value xsi:type="CD" code="419511003"
displayName="Propensity to adverse reactions to drug"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT">
<originalText>
<reference value="#reaction2"/>
</originalText>
</value>
<participant typeCode="CSM">
<participantRole classCode="MANU">
<playingEntity classCode="MMAT">
<code code="2670" displayName="Codeine"
codeSystem="2.16.840.1.113883.6.88"
codeSystemName="RxNorm">
<originalText>
<reference value="#reaction2"/>
</originalText>
</code>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy status observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.28"/>
<code code="33999-4" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC" displayName="Status"/>
<statusCode code="completed"/>
<value xsi:type="CE" code="55561003"
codeSystem="2.16.840.1.113883.6.96"
displayName="Active"/>
</observation>
</entryRelationship>
<entryRelationship typeCode="MFST" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Reaction observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.9"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a64"/>
<code nullFlavor="NA"/>
<text>
<reference value="#reaction2"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20060501"/>
<high value="20090227130000+0500"/>
</effectiveTime>
<value xsi:type="CD" code="56018004"
codeSystem="2.16.840.1.113883.6.96"
displayName="Wheezing"/>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV"
displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity5"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="255604002"
displayName="Mild"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="S"
displayName="Suceptible"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV" displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity2"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="6736007"
displayName="Moderate"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="N" displayName="Normal"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</act>
</entry>
<entry typeCode="DRIV">
<act classCode="ACT" moodCode="EVN">
<!-- ** Allergy problem act ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.30"/>
<id root="36e3e930-7b14-11db-9fe1-0800200c9a66"/>
<code code="48765-2" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC"
displayName="Allergies, adverse reactions, alerts"/>
<statusCode code="active"/>
<effectiveTime >
<low value="20080501"/>
</effectiveTime>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.7"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a66"/>
<code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="20080501"/>
</effectiveTime>
<value xsi:type="CD" code="59037007"
displayName="Drug intolerance"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT">
<originalText>
<reference value="#reaction3"/>
</originalText>
</value>
<participant typeCode="CSM">
<participantRole classCode="MANU">
<playingEntity classCode="MMAT">
<code code="1191" displayName="Aspirin"
codeSystem="2.16.840.1.113883.6.88"
codeSystemName="RxNorm">
<originalText>
<reference value="#reaction3"/>
</originalText>
</code>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Allergy status observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.28"/>
<code code="33999-4" codeSystem="2.16.840.1.113883.6.1"
codeSystemName="LOINC" displayName="Status"/>
<statusCode code="completed"/>
<value xsi:type="CE" code="55561003"
codeSystem="2.16.840.1.113883.6.96"
displayName="Active"/>
</observation>
</entryRelationship>
<entryRelationship typeCode="MFST" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Reaction observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.9"/>
<id root="4adc1020-7b14-11db-9fe1-0800200c9a64"/>
<code nullFlavor="NA"/>
<text>
<reference value="#reaction3"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20080501"/>
<high value="20090227130000+0500"/>
</effectiveTime>
<value xsi:type="CD" code="247472004"
codeSystem="2.16.840.1.113883.6.96"
displayName="Hives"/>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV"
displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity6"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="371923003"
displayName="Mild to moderate"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="S"
displayName="Suceptible"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
<entryRelationship typeCode="SUBJ" inversionInd="true">
<observation classCode="OBS" moodCode="EVN">
<!-- ** Severity observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.8"/>
<code code="SEV" displayName="Severity Observation"
codeSystem="2.16.840.1.113883.5.4"
codeSystemName="ActCode"/>
<text>
<reference value="#severity3"/>
</text>
<statusCode code="completed"/>
<value xsi:type="CD" code="371923003"
displayName="Mild to moderate"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<interpretationCode code="N" displayName="Normal"
codeSystem="2.16.840.1.113883.1.11.78"
codeSystemName="Observation Interpretation"/>
</observation>
</entryRelationship>
</observation>
</entryRelationship>
</act>
</entry>
</section>
</component>
<!-- ************************************ ASSESSMENT ************************************ -->
<component>
<section>
<!-- Assessment section -->
<templateId root="2.16.840.1.113883.10.20.22.2.8"/>
<code codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" code="51848-0"
displayName="ASSESSMENT"/>
<title>ASSESSMENT</title>
<text>
<list listType="ordered" ID="problem15">
<item>Recurrent GI bleed of unknown etiology; hypotension perhaps
secondary to this but as likely secondary to polypharmacy.</item>
<item>Acute on chronic anemia secondary to #1.</item>
<item>Azotemia, acute renal failure with volume loss secondary to
#1.</item>
<item>Hyperkalemia secondary to #3 and on ACE and K+ supplement.</item>
<item>Other chronic diagnoses as noted above, currently stable.</item>
</list>
</text>
<entry>
<observation classCode="OBS" moodCode="EVN">
<!-- ** Problem observation ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.4"/>
<id root="ab1791b0-5c71-11db-b0de-0800200c9a66"/>
<code code="409586006" codeSystem="2.16.840.1.113883.6.96"
displayName="Complaint"/>
<text>
<reference value="#problem15"/>
</text>
<statusCode code="completed"/>
<effectiveTime>
<low value="20080103"/>
<high value="20080103"/>
</effectiveTime>
<value xsi:type="CD" code="233604007"
codeSystem="2.16.840.1.113883.6.96" displayName="Pneumonia"/>
</observation>
</entry>
</section>
</component>
<!-- ******************************* ENCOUNTERS ***************************** -->
<component>
<section>
<!-- conforms to Encounters section with entries optional -->
<templateId root="2.16.840.1.113883.10.20.22.2.22"/>
<!-- Encounters section with entries required -->
<templateId root="2.16.840.1.113883.10.20.22.2.22.1"/>
<code code="46240-8" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"
displayName="History of encounters"/>
<title>ENCOUNTERS</title>
<text>
<table border="1" width="100%">
<thead>
<tr>
<th>Encounter</th>
<th>Performer</th>
<th>Location</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<content ID="Encounter1"/> Checkup Examination </td>
<td>Performer Name</td>
<td>Community Urgent Care Center</td>
<td>20090227130000+0500</td>
</tr>
</tbody>
</table>
</text>
<entry typeCode="DRIV">
<encounter classCode="ENC" moodCode="EVN">
<!-- ** Encounter activities ** -->
<templateId root="2.16.840.1.113883.10.20.22.4.49"/>
<id root="2a620155-9d11-439e-92b3-5d9815ff4de8"/>
<code code="99213" displayName="Office outpatient visit 15 minutes"
codeSystemName="CPT" codeSystem="2.16.840.1.113883.6.12"
codeSystemVersion="4">
<originalText> Checkup Examination <reference value="#Encounter1"/>
</originalText>
<translation code="AMB" codeSystem="2.16.840.1.113883.5.4"
displayName="Ambulatory" codeSystemName="HL7 ActEncounterCode"/>
</code>
<!-- February 27, 2009 at 1:00PM EST -->
<effectiveTime value="20090227130000+0500"/>
<performer>
<assignedEntity>
<!-- Provider NPI "PseduoMD-3" -->
<id root="PseduoMD-3"/>
<code code="59058001" codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT" displayName="General Physician"/>
</assignedEntity>
</performer>
<participant typeCode="LOC">
<participantRole classCode="SDLOC">
<templateId root="2.16.840.1.113883.10.20.22.4.32"/>
<!-- Service Delivery Location template -->
<code code="1160-1" codeSystem="2.16.840.1.113883.6.259"
codeSystemName="HealthcareServiceLocation"
displayName="Urgent Care Center"/>
<addr>
<streetAddressLine>17 Daws Rd.</streetAddressLine>
<city>Blue Bell</city>
<state>MA</state>
<postalCode>02368</postalCode>
<country>US</country>
</addr>
<telecom nullFlavor="UNK"/>
<playingEntity classCode="PLC">
<name>Community Urgent Care Center</name>
</playingEntity>
</participantRole>
</participant>
<entryRelationship typeCode="RSON">
<observation classCode="OBS" moodCode="EVN">
<templateId root="2.16.840.1.113883.10.20.22.4.19"/>
<id root="db734647-fc99-424c-a864-7e3cda82e703"
extension="45665"/>
<code code="404684003" displayName="Finding"
codeSystem="2.16.840.1.113883.6.96"
codeSystemName="SNOMED CT"/>
<statusCode code="completed"/>
<effectiveTime>
<low value="20070103"/>
</effectiveTime>
<value xsi:type="CD" code="233604007" displayName="Pneumonia"
codeSystem="2.16.840.1.113883.6.96"/>
</observation>
</entryRelationship>
</encounter>
</entry>
</section>
</component>
<!-- ************************ FAMILY HISTORY ********************************** -->
<component>
<section>
<!-- Family history section -->
<templateId root="2.16.840.1.113883.10.20.22.2.15"/>
<code code="10157-6" codeSystem="2.16.840.1.113883.6.1"/>
<title>FAMILY HISTORY</title>
<text>
<paragraph>Father (deceased)</paragraph>
<table border="1" width="100%">
<thead>
<tr>
<th>Diagnosis</th>
<th>Age At Onset</th>
</tr>
</thead>
<tbody>
<tr>
<td>Myocardial Infarction (cause of death)</td>
<td>57</td>
</tr>
<tr>
<td>Diabetes</td>
<td>40</td>
</tr>
</tbody>