plan_executor 1.0.2 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (420) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +3 -2
  4. data/Gemfile +3 -6
  5. data/Gemfile.lock +52 -48
  6. data/README.md +2 -2
  7. data/fixtures/attachment/ccda_pdf.pdf +0 -0
  8. data/fixtures/attachment/ccda_pdf_base64.txt +2489 -0
  9. data/fixtures/attachment/ccda_structured.xml +1976 -0
  10. data/fixtures/attachment/ccda_unstructured.xml +2563 -0
  11. data/fixtures/daf/conformance-daf-query-responder.xml +2024 -193
  12. data/fixtures/diagnostic_report/diagnosticreport-familyhistory-create.xml +67 -0
  13. data/fixtures/diagnostic_report/diagnosticreport-hlatyping-create.xml +64 -0
  14. data/fixtures/diagnostic_report/diagnosticreport-pathologyreport-create.xml +312 -0
  15. data/fixtures/diagnostic_report/dr-100.xml +3 -3
  16. data/fixtures/diagnostic_report/dr-200.xml +5 -5
  17. data/fixtures/diagnostic_report/dr-300.xml +3 -3
  18. data/fixtures/diagnostic_report/dr-400.xml +3 -3
  19. data/fixtures/{diagnostic_order → diagnostic_request}/do-100.xml +57 -64
  20. data/fixtures/diagnostic_request/do-200.xml +73 -0
  21. data/fixtures/{diagnostic_order → diagnostic_request}/do-300.xml +73 -91
  22. data/{lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder → fixtures/diagnostic_request}/do-400.xml +74 -88
  23. data/fixtures/family_member_history/familymemberhistory-familyhistory-create.xml +27 -0
  24. data/fixtures/financial/claim-example-oral-average.xml +199 -0
  25. data/fixtures/financial/claim-example-oral-orthoplan.xml +298 -0
  26. data/fixtures/financial/claim-example.xml +98 -0
  27. data/fixtures/financial/eligibilityrequest-example.xml +40 -0
  28. data/fixtures/observation/obs-401.xml +7 -17
  29. data/fixtures/observation/obs-402.xml +7 -17
  30. data/fixtures/observation/obs-403.xml +4 -29
  31. data/fixtures/observation/obs-407.xml +4 -11
  32. data/fixtures/observation/observation-datawarehouse-create.xml +72 -0
  33. data/fixtures/observation/observation-familyhistory-create.xml +61 -0
  34. data/fixtures/observation/observation-germline-create.xml +72 -0
  35. data/fixtures/observation/observation-register-create.xml +72 -0
  36. data/fixtures/patch/medicationrequest-simple.xml +16 -0
  37. data/fixtures/patient/patient-example-updated.xml +1 -7
  38. data/fixtures/patient/patient-example-us-extensions.xml +119 -0
  39. data/fixtures/patient/patient-example.xml +46 -27
  40. data/fixtures/patient/patient-familyhistory-create.xml +45 -0
  41. data/fixtures/patient/patient-register-create.xml +47 -0
  42. data/fixtures/practitioner/practitioner-register-create.xml +32 -0
  43. data/fixtures/record/condition-example-f201-fever.xml +54 -49
  44. data/fixtures/record/condition-example-f205-infection.xml +16 -15
  45. data/fixtures/record/diagnosticreport-example-f201-brainct.xml +45 -18
  46. data/fixtures/record/encounter-example-f201-20130404.xml +42 -15
  47. data/fixtures/record/encounter-example-f202-20130128.xml +57 -15
  48. data/fixtures/record/observation-example-f202-temperature.xml +85 -60
  49. data/fixtures/record/organization-example-f201-aumc.xml +87 -4
  50. data/fixtures/record/organization-example-f203-bumc.xml +53 -4
  51. data/fixtures/record/patient-example-f201-roel.xml +108 -8
  52. data/fixtures/record/practitioner-example-f201-ab.xml +73 -14
  53. data/fixtures/record/procedure-example-f201-tpf.xml +39 -9
  54. data/fixtures/scheduling/slot-simple.xml +1 -1
  55. data/fixtures/sequence/sequence-register-create.xml +31 -0
  56. data/fixtures/specimen/spec-100.xml +8 -8
  57. data/fixtures/specimen/spec-400.xml +11 -11
  58. data/fixtures/specimen/spec-uslab-example1.xml +11 -11
  59. data/fixtures/specimen/specimen-familyhistory-create.xml +54 -0
  60. data/fixtures/specimen/specimen-register-create.xml +49 -0
  61. data/fixtures/terminology/codesystem-data-types.json +230 -0
  62. data/fixtures/terminology/codesystem-resource-types.json +482 -0
  63. data/fixtures/terminology/codesystem-simple.xml +129 -0
  64. data/fixtures/terminology/conceptmap-example.xml +141 -0
  65. data/fixtures/terminology/v2-codesystem.json +1297 -0
  66. data/fixtures/terminology/v2-valueset.json +16 -0
  67. data/fixtures/terminology/valueset-defined-types.json +25 -0
  68. data/fixtures/terminology/valueset-example.xml +111 -0
  69. data/fixtures/validation/observation.profile.xml +1534 -253
  70. data/fixtures/validation/observations/observation-example.xml +66 -0
  71. data/lib/FHIR_structure.json +129 -82
  72. data/lib/daf_resource_generator.rb +7 -7
  73. data/lib/data/resources.rb +50 -30
  74. data/lib/ext/client.rb +2 -2
  75. data/lib/plan_executor.rb +6 -1
  76. data/lib/resource_generator.rb +413 -212
  77. data/lib/tasks/tasks.rake +151 -20
  78. data/lib/tests/assertions.rb +24 -18
  79. data/lib/tests/base_test.rb +17 -3
  80. data/lib/tests/suites/argonaut_provider_connectathon_test.rb +234 -0
  81. data/lib/tests/suites/base_suite.rb +7 -3
  82. data/lib/tests/suites/connectathon_attachment_track_test.rb +124 -0
  83. data/lib/tests/suites/connectathon_audit_track.rb +113 -69
  84. data/lib/tests/suites/connectathon_care_plan_track.rb +237 -0
  85. data/lib/tests/suites/connectathon_fetch_patient_record.rb +40 -39
  86. data/lib/tests/suites/connectathon_financial_track.rb +231 -23
  87. data/lib/tests/suites/connectathon_genomics_track_test.rb +255 -0
  88. data/lib/tests/suites/connectathon_lab_order_track.rb +131 -104
  89. data/lib/tests/suites/connectathon_patch_track.rb +125 -0
  90. data/lib/tests/suites/connectathon_patient_track.rb +75 -68
  91. data/lib/tests/suites/connectathon_profile_validation.rb +9 -8
  92. data/lib/tests/suites/connectathon_scheduling_track.rb +127 -70
  93. data/lib/tests/suites/connectathon_terminology_track.rb +211 -34
  94. data/lib/tests/suites/daf_profiles_test.rb +112 -72
  95. data/lib/tests/suites/format_test.rb +113 -255
  96. data/lib/tests/suites/history_test.rb +72 -68
  97. data/lib/tests/suites/read_test.rb +31 -27
  98. data/lib/tests/suites/resource_test.rb +283 -85
  99. data/lib/tests/suites/search_test.rb +5 -3
  100. data/lib/tests/suites/search_test_robust.rb +8 -76
  101. data/lib/tests/suites/sprinkler_search_test.rb +104 -84
  102. data/lib/tests/suites/suite_engine.rb +17 -23
  103. data/lib/tests/suites/transaction_test.rb +117 -174
  104. data/lib/tests/testscripts/base_testscript.rb +425 -189
  105. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-json.xml +517 -0
  106. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-base-client-id-xml.xml +517 -0
  107. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-json.xml +648 -0
  108. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Client Assigned Id/connectathon-14-patient-bonus-client-id-xml.xml +648 -0
  109. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/README.html +68 -0
  110. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-json.xml +515 -0
  111. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-base-server-id-xml.xml +515 -0
  112. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-json.xml +645 -0
  113. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/Server Assigned Id/connectathon-14-patient-bonus-server-id-xml.xml +642 -0
  114. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/capabilities/PatientCapabilityStatement.xml +43 -0
  115. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.json +1 -3
  116. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers-min.xml +0 -0
  117. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.json +5 -10
  118. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-PeterChalmers.xml +5 -5
  119. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.json +1 -3
  120. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers-min.xml +0 -0
  121. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.json +5 -10
  122. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-create-bonus-PeterChalmers.xml +4 -5
  123. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.json +96 -0
  124. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-PeterChalmers.xml +103 -0
  125. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.json +104 -0
  126. data/lib/tests/testscripts/scripts/connectathon/Patient-01-Intro/_reference/resources/patient-create-client-id-bonus-PeterChalmers.xml +108 -0
  127. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.json +1 -3
  128. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers-min.xml +0 -0
  129. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.json +6 -10
  130. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-PeterChalmers.xml +6 -5
  131. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.json +1 -3
  132. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers-min.xml +0 -0
  133. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.json +7 -11
  134. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus1-PeterChalmers.xml +5 -5
  135. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.json +2 -4
  136. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers-min.xml +1 -1
  137. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.json +7 -11
  138. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient → scripts/connectathon/Patient-01-Intro}/_reference/resources/patient-update-bonus2-PeterChalmers.xml +8 -7
  139. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-client-id-xml.xml +306 -0
  140. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/01-RegisterPatient/connectathon-14-patient-fhirclient-01-register-server-id-xml.xml +317 -0
  141. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-client-id-xml.xml +346 -0
  142. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/02-PatientUpdate/connectathon-14-patient-fhirclient-02-update-server-id-xml.xml +385 -0
  143. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.json +50 -0
  144. data/lib/tests/testscripts/{xml/Connectathon11/Track1-Patient/_reference/conformance/PatientConformance.xml → scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/capabilities/PatientCapabilityStatement.xml} +10 -2
  145. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.json +21 -0
  146. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-client-id.xml +15 -0
  147. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.json +20 -0
  148. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-create-server-id.xml +14 -0
  149. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.json +21 -0
  150. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-client-id.xml +15 -0
  151. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.json +20 -0
  152. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRClient/_reference/resources/patient-update-server-id.xml +14 -0
  153. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-json.xml +262 -0
  154. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-client-id-xml.xml +262 -0
  155. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-json.xml +273 -0
  156. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/01-RegisterPatient/connectathon-14-patient-fhirserver-01-register-server-id-xml.xml +273 -0
  157. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-json.xml +290 -0
  158. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-client-id-xml.xml +290 -0
  159. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-json.xml +326 -0
  160. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/02-PatientUpdate/connectathon-14-patient-fhirserver-02-update-server-id-xml.xml +326 -0
  161. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-json.xml +247 -0
  162. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-client-id-xml.xml +247 -0
  163. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-json.xml +282 -0
  164. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/03-PatientRead/connectathon-14-patient-fhirserver-03-read-server-id-xml.xml +281 -0
  165. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-json.xml +330 -0
  166. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-client-id-xml.xml +330 -0
  167. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-json.xml +366 -0
  168. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/04-PatientHistory/connectathon-14-patient-fhirserver-04-history-server-id-xml.xml +366 -0
  169. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-json.xml +527 -0
  170. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-client-id-xml.xml +527 -0
  171. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-json.xml +519 -0
  172. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/05-PatientVRead/connectathon-14-patient-fhirserver-05-vread-server-id-xml.xml +519 -0
  173. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-json.xml +290 -0
  174. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-client-id-xml.xml +290 -0
  175. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-json.xml +288 -0
  176. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/06-PatientSearching/connectathon-14-patient-fhirserver-06-search-server-id-xml.xml +288 -0
  177. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-json.xml +252 -0
  178. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-client-id-xml.xml +252 -0
  179. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-json.xml +284 -0
  180. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/07-PatientDeletion/connectathon-14-patient-fhirserver-07-delete-server-id-xml.xml +284 -0
  181. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-json.xml +897 -0
  182. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-client-id-xml.xml +897 -0
  183. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-json.xml +963 -0
  184. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/99-PatientAll/connectathon-14-patient-fhirserver-99-all-server-id-xml.xml +963 -0
  185. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.json +50 -0
  186. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/capabilities/PatientCapabilityStatement.xml +42 -0
  187. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.json +86 -0
  188. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-client-id.xml +62 -0
  189. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.json +85 -0
  190. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-create-server-id.xml +61 -0
  191. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.json +86 -0
  192. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-client-id.xml +62 -0
  193. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.json +86 -0
  194. data/lib/tests/testscripts/scripts/connectathon/Patient-02-Formal/FHIRServer/_reference/resources/patient-update-server-id.xml +62 -0
  195. data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example-update.json +145 -0
  196. data/lib/tests/testscripts/scripts/spec/_reference/resources/patient-example.json +146 -0
  197. data/lib/tests/testscripts/scripts/spec/testscript-example-history.xml +191 -0
  198. data/lib/tests/testscripts/scripts/spec/testscript-example-multisystem.xml +190 -0
  199. data/lib/tests/testscripts/scripts/spec/testscript-example-readtest.xml +178 -0
  200. data/lib/tests/testscripts/scripts/spec/testscript-example-rule.xml +266 -0
  201. data/lib/tests/testscripts/scripts/spec/testscript-example-search.xml +177 -0
  202. data/lib/tests/testscripts/scripts/spec/testscript-example-update.xml +163 -0
  203. data/lib/tests/testscripts/scripts/spec/testscript-example.xml +228 -0
  204. data/lib/tests/testscripts/testscript_engine.rb +36 -22
  205. data/logs/.keep +0 -0
  206. data/plan_executor.gemspec +11 -3
  207. data/test/test_helper.rb +3 -3
  208. data/test/unit/fixtures_test.rb +24 -24
  209. data/test/unit/metadata_test.rb +19 -9
  210. data/test/unit/resource_generator_test.rb +20 -0
  211. metadata +244 -249
  212. data/fixtures/diagnostic_order/do-200.xml +0 -121
  213. data/fixtures/diagnostic_order/do-400.xml +0 -88
  214. data/fixtures/financial/claim-example-average.xml +0 -168
  215. data/fixtures/financial/claim-example-simple.xml +0 -67
  216. data/fixtures/order/order-100.xml +0 -61
  217. data/fixtures/order/order-200.xml +0 -61
  218. data/fixtures/order/order-300.xml +0 -61
  219. data/fixtures/order/order-400.xml +0 -61
  220. data/fixtures/order_response/ordresp-100.xml +0 -79
  221. data/fixtures/order_response/ordresp-110.xml +0 -79
  222. data/fixtures/order_response/ordresp-200.xml +0 -79
  223. data/fixtures/order_response/ordresp-210.xml +0 -79
  224. data/fixtures/order_response/ordresp-300.xml +0 -79
  225. data/fixtures/order_response/ordresp-310.xml +0 -79
  226. data/fixtures/order_response/ordresp-400.xml +0 -79
  227. data/fixtures/order_response/ordresp-410.xml +0 -79
  228. data/fixtures/patient/patient-example-us-extensions(us01).xml +0 -81
  229. data/fixtures/patient/patient-format-example.xml +0 -101
  230. data/fixtures/validation/observations/observation-example(example).xml +0 -50
  231. data/lib/tests/suites/argonaut_resprint_1_test.rb +0 -260
  232. data/lib/tests/suites/argonaut_resprint_2_test.rb +0 -369
  233. data/lib/tests/suites/argonaut_resprint_3_test.rb +0 -309
  234. data/lib/tests/suites/argonaut_sprint_1_test.rb +0 -187
  235. data/lib/tests/suites/argonaut_sprint_2_test.rb +0 -115
  236. data/lib/tests/suites/argonaut_sprint_3_test.rb +0 -208
  237. data/lib/tests/suites/argonaut_sprint_4_test.rb +0 -335
  238. data/lib/tests/suites/argonaut_sprint_5_test.rb +0 -196
  239. data/lib/tests/suites/argonaut_sprint_6_test.rb +0 -243
  240. data/lib/tests/suites/argonaut_sprint_7_test.rb +0 -161
  241. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-json.xml +0 -348
  242. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-base-client-id-xml.xml +0 -348
  243. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-json.xml +0 -420
  244. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Client Assigned Id/track1-patient-bonus-client-id-xml.xml +0 -420
  245. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/README.html +0 -68
  246. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-json.xml +0 -352
  247. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-base-server-id-xml.xml +0 -352
  248. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-json.xml +0 -421
  249. data/lib/tests/testscripts/xml/Connectathon11/Track1-Patient/Server Assigned Id/track1-patient-bonus-server-id-xml.xml +0 -421
  250. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/C-CDA_R2-1_CCD-ussg.xml +0 -3414
  251. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A1-empty-on-instance.xml +0 -9
  252. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A2-empty-by-ref.xml +0 -15
  253. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A3-empty-by-identifier.xml +0 -13
  254. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-A4-empty-by-contained.xml +0 -15
  255. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B1-CCDA-on-instance.xml +0 -15
  256. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B2-CCDA-by-ref.xml +0 -21
  257. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B3-CCDA-by-identifier.xml +0 -19
  258. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/parameters-B4-CCDA-by-contained.xml +0 -21
  259. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaire-sdc-profile-example-ussg-fht.xml +0 -3905
  260. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-CCDA.xml +0 -190
  261. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/_reference/resources/questionnaireresponse-expected-ussg-fht-empty.xml +0 -177
  262. data/lib/tests/testscripts/xml/Connectathon11/Track11-SDC/track11-sdc-prepop-xml.xml +0 -142
  263. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite1-expand-client-id.xml +0 -925
  264. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Client Assigned Id/track2-ts-suite2-expand-filter-client-id.xml +0 -930
  265. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite1-expand-server-id.xml +0 -953
  266. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Expand/Server Assigned Id/track2-ts-suite2-expand-filter-server-id.xml +0 -958
  267. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-loinc-lookup-xml.xml +0 -224
  268. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Lookup/track2-ts-suite5-snomed-lookup-xml.xml +0 -224
  269. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/README.html +0 -85
  270. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Translate/track2-ts-suite6-translate-xml.xml +0 -224
  271. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite3-validate-code-client-id.xml +0 -1807
  272. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Client Assigned Id/track2-ts-suite4-validate-code-client-id.xml +0 -714
  273. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite3-validate-code-server-id.xml +0 -1835
  274. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/Validate-code/Server Assigned Id/track2-ts-suite4-validate-code-server-id.xml +0 -742
  275. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ConceptMapSuite6Conformance.xml +0 -11
  276. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite1Conformance.xml +0 -17
  277. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite2Conformance.xml +0 -17
  278. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite3Conformance.xml +0 -14
  279. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite4Conformance.xml +0 -14
  280. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/conformance/ValueSetSuite5Conformance.xml +0 -11
  281. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-a.xml +0 -11
  282. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-2-b.xml +0 -11
  283. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-a.xml +0 -13
  284. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-3-b.xml +0 -13
  285. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-a.xml +0 -15
  286. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/extensional-case-1-input-4-4-b.xml +0 -15
  287. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-2.xml +0 -10
  288. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-loinc-input-5-3.xml +0 -11
  289. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-2.xml +0 -10
  290. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/lookup-snomed-input-5-3.xml +0 -11
  291. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-2.xml +0 -14
  292. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/input/translate-conceptmap-input-6-3.xml +0 -15
  293. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-expand-min.xml +0 -47
  294. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-1-filter-min.xml +0 -23
  295. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-expand-min.xml +0 -132
  296. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-2-filter-min.xml +0 -38
  297. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-expand-min.xml +0 -252
  298. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-3-filter-min.xml +0 -58
  299. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-expand-min.xml +0 -57
  300. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/extensional-case-4-filter-min.xml +0 -28
  301. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-expand-min.xml +0 -347
  302. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-1-filter-min.xml +0 -33
  303. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-expand-min.xml +0 -637
  304. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-2-filter-min.xml +0 -33
  305. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/intensional-case-3-filter-min.xml +0 -58
  306. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-loinc-min.xml +0 -11
  307. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/lookup-snomed-min.xml +0 -11
  308. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-invalid-min.xml +0 -10
  309. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite3-valid-min.xml +0 -7
  310. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-invalid-min.xml +0 -10
  311. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/suite4-valid-min.xml +0 -7
  312. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/output/translate-conceptmap-min.xml +0 -17
  313. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-1.xml +0 -55
  314. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-2.xml +0 -122
  315. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-3.xml +0 -222
  316. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/extensional-case-4.xml +0 -65
  317. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-1.xml +0 -31
  318. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-2.xml +0 -31
  319. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/intensional-case-3.xml +0 -31
  320. data/lib/tests/testscripts/xml/Connectathon11/Track2-Terminology/_reference/resources/translate-conceptmap-case-1.xml +0 -145
  321. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/conformance/DecisionSupportServiceModule-Evaluate.xml +0 -17
  322. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-request-payload.xml +0 -26
  323. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-min-payload.xml +0 -7
  324. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-incomplete-response-payload.xml +0 -332
  325. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-request-payload.xml +0 -28
  326. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-min-payload.xml +0 -7
  327. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-malformed-response-payload.xml +0 -20
  328. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-request-payload.xml +0 -28
  329. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-min-payload.xml +0 -7
  330. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-response-payload.xml +0 -332
  331. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-request-payload.xml +0 -28
  332. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-min-payload.xml +0 -7
  333. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/ecrs-fhir-cdc-immunizations-unauthorized-response-payload.xml +0 -8
  334. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-request-payload.xml +0 -176
  335. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload-min.xml +0 -32
  336. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/_reference/resources/gao-assessment-response-payload.xml +0 -80
  337. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-cdc-immunization.xml +0 -290
  338. data/lib/tests/testscripts/xml/Connectathon11/Track3-CDS-on-FHIR/track3-cds-evaluate-gao-profile.xml +0 -110
  339. data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/Client_Assigned_Id/TestScript_FHIR-Genomics.xml +0 -170
  340. data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-1.xml +0 -31
  341. data/lib/tests/testscripts/xml/Connectathon11/Track6-FHIR-Genomics/_reference/resources/sequence-example-2.xml +0 -31
  342. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Actors.png +0 -0
  343. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder100-xml.xml +0 -590
  344. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder200-xml.xml +0 -587
  345. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder300-xml.xml +0 -612
  346. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Client_Assigned_Id/track7-laborder400-xml.xml +0 -635
  347. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Peer-to-Peer/track7-laborder100-peer2peer-xml.xml +0 -752
  348. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/Thumbs.db +0 -0
  349. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/LabOrderLabReport-CreateDeleteReadUpdate.xml +0 -187
  350. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/conformance/html.xslt +0 -45
  351. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100-update.xml +0 -64
  352. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-100.xml +0 -64
  353. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200-update.xml +0 -121
  354. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-200.xml +0 -121
  355. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300-update.xml +0 -91
  356. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-300.xml +0 -91
  357. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticOrder/do-400-update.xml +0 -88
  358. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-100.xml +0 -96
  359. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-200.xml +0 -125
  360. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-300.xml +0 -132
  361. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/DiagnosticReport/dr-400.xml +0 -121
  362. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-100.xml +0 -58
  363. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-101.xml +0 -58
  364. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-200.xml +0 -125
  365. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-300.xml +0 -106
  366. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-301.xml +0 -106
  367. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-302.xml +0 -106
  368. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-303.xml +0 -106
  369. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-304.xml +0 -106
  370. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-400.xml +0 -87
  371. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-401.xml +0 -95
  372. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-402.xml +0 -95
  373. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-403.xml +0 -84
  374. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-404.xml +0 -84
  375. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-405.xml +0 -83
  376. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-406.xml +0 -83
  377. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-407.xml +0 -70
  378. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-408.xml +0 -84
  379. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Observation/obs-uslab-example5.xml +0 -102
  380. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-100.xml +0 -61
  381. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-200.xml +0 -61
  382. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-300.xml +0 -61
  383. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Order/order-400.xml +0 -61
  384. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-100.xml +0 -79
  385. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-110.xml +0 -79
  386. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-200.xml +0 -79
  387. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-210.xml +0 -79
  388. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-300.xml +0 -79
  389. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-310.xml +0 -79
  390. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-400.xml +0 -79
  391. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/OrderResponse/ordresp-410.xml +0 -79
  392. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Organization/org-uslab-example3.xml +0 -49
  393. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Patient/patient-uslab-example1.xml +0 -44
  394. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example1.xml +0 -18
  395. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Practitioner/pract-uslab-example3.xml +0 -36
  396. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/Thumbs.db +0 -0
  397. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-100.xml +0 -65
  398. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-400.xml +0 -70
  399. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Specimen/spec-uslab-example1.xml +0 -82
  400. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 1 Document.txt +0 -122
  401. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 2 Document.txt +0 -103
  402. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 3 Document.txt +0 -201
  403. data/lib/tests/testscripts/xml/Connectathon11/Track7-LabOrderLabReport/_reference/resources/Testscript 4 Document.txt +0 -310
  404. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/MedicationStatementCreate.xml +0 -11
  405. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/conformance/PatientSearchType.xml +0 -15
  406. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-create.json +0 -39
  407. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/_reference/resources/medicationstatement-patch.json +0 -3
  408. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json-if-match.xml +0 -321
  409. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-medicationstatement-json.xml +0 -303
  410. data/lib/tests/testscripts/xml/Connectathon11/Track9-Patch/track9-patch-peer2peer-patient-json.xml +0 -235
  411. data/test/fixtures/testscript-example.xml +0 -202
  412. data/test/fixtures/testscript-history.xml +0 -143
  413. data/test/fixtures/testscript-readtest.xml +0 -272
  414. data/test/fixtures/testscript-search.xml +0 -282
  415. data/test/fixtures/testscript-update.xml +0 -147
  416. data/test/unit/argonaut_sprint6_test.rb +0 -31
  417. data/test/unit/argonaut_sprint7_test.rb +0 -21
  418. data/test/unit/basic_test.rb +0 -27
  419. data/test/unit/fetch_patient_record_test.rb +0 -357
  420. data/test/unit/financial_test.rb +0 -41
@@ -0,0 +1,1976 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ClinicalDocument xmlns="urn:hl7-org:v3" xmlns:sdtc="urn:hl7-org:sdtc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:hl7-org:v3 http://xreg2.nist.gov:8080/hitspValidation/schema/cdar2c32/infrastructure/cda/C32_CDA.xsd">
3
+ <realmCode code="US"/>
4
+ <typeId root="2.16.840.1.113883.1.3" extension="POCD_HD000040"/>
5
+ <templateId root="2.16.840.1.113883.10.20.22.1.1" />
6
+ <templateId root='2.16.840.1.113883.10.20.22.1.2'/>
7
+ <id root="2.16.840.1.113883.19.5" extension="57a8e7bd8b25af34c8003d81" assigningAuthorityName="Cypress Project"/>
8
+ <code code="34133-9" displayName="Summarization of episode note" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/>
9
+ <title>Cypress C32 Patient Test Record: Barry957 Larson787</title>
10
+ <effectiveTime value="20160808201245"/>
11
+ <confidentialityCode code="N"/>
12
+ <languageCode code="en-US"/>
13
+ <recordTarget>
14
+ <patientRole>
15
+ <id root="Cypress" extension="57a8e7bd8b25af34c8003d81"/>
16
+ <addr use="HP">
17
+ <streetAddressLine>202 Burlington Rd.</streetAddressLine>
18
+ <city>Bedford</city>
19
+ <state>MA</state>
20
+ <postalCode>01730</postalCode>
21
+ </addr>
22
+ <telecom value="tel:+1-781-271-3000"/>
23
+ <patient>
24
+ <name>
25
+ <given>Barry957</given>
26
+ <family>Larson787</family>
27
+ </name>
28
+ <administrativeGenderCode code="F" codeSystem="2.16.840.1.113883.5.1" codeSystemName="HL7 AdministrativeGender"/>
29
+ <birthTime value="20141118211120"/>
30
+ <raceCode code="2028-9" displayName="Asian" codeSystemName="CDC Race and Ethnicity" codeSystem="2.16.840.1.113883.6.238"/>
31
+ <ethnicGroupCode code="2029-7" displayName="Asian_indian" codeSystemName="CDC Race and Ethnicity" codeSystem="2.16.840.1.113883.6.238"/>
32
+ <languageCommunication>
33
+ <languageCode code="en-US"/>
34
+ </languageCommunication>
35
+ </patient>
36
+ </patientRole>
37
+ </recordTarget>
38
+ <author>
39
+ <time value="20160808201245"/>
40
+ <assignedAuthor>
41
+ <id/>
42
+ <addr/>
43
+ <telecom value="tel:+1-781-271-3000"/>
44
+ <assignedPerson>
45
+ <name>Auto Generated</name>
46
+ </assignedPerson>
47
+ </assignedAuthor>
48
+ </author>
49
+ <custodian>
50
+ <assignedCustodian>
51
+ <representedCustodianOrganization>
52
+ <id/>
53
+ <name>Cypress</name>
54
+ <telecom value="tel:+1-781-271-3000"/>
55
+ <addr>
56
+ <streetAddressLine>202 Burlington Rd.</streetAddressLine>
57
+ <city>Bedford</city>
58
+ <state>MA</state>
59
+ <postalCode>01730</postalCode>
60
+ </addr>
61
+ </representedCustodianOrganization>
62
+ </assignedCustodian>
63
+ </custodian>
64
+ <component>
65
+ <structuredBody>
66
+ <component>
67
+ <!-- Allergies: patient has no allergies -->
68
+ <section>
69
+ <templateId root="2.16.840.1.113883.10.20.22.2.6"/>
70
+ <code code="48765-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Allergy List"/>
71
+ <title>Allergies</title>
72
+ <text>There are no current allergies at the time of this document's creation.</text>
73
+ <entry typeCode="DRIV">
74
+ <act classCode="ACT" moodCode="EVN">
75
+ <templateId root="2.16.840.1.113883.10.20.22.4.30"/>
76
+ <id root="650b9240-3fd2-0134-416c-60f81dc2d82a"/>
77
+ <code nullFlavor="NA"/>
78
+ <statusCode code="active"/>
79
+ <effectiveTime>
80
+ <low nullFlavor="NA"/>
81
+ </effectiveTime>
82
+ <entryRelationship typeCode="SUBJ" inversionInd="false">
83
+ <observation classCode="OBS" moodCode="EVN" negationInd="true">
84
+ <templateId root="2.16.840.1.113883.10.20.22.4.7"/>
85
+ <id root="650b93f0-3fd2-0134-416c-60f81dc2d82a"/>
86
+ <code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
87
+ <statusCode code="completed"/>
88
+ <effectiveTime>
89
+ <low nullFlavor="UNK"/>
90
+ </effectiveTime>
91
+
92
+ <value xsi:type="CD" code="419199007"
93
+ codeSystem="2.16.840.1.113883.6.96" displayName="Allergy to Substance"/>
94
+ </observation>
95
+ </entryRelationship>
96
+ </act>
97
+ </entry>
98
+ </section>
99
+ </component>
100
+ <component>
101
+ <!-- Medications: patient has no medications -->
102
+ <section>
103
+ <templateId root="2.16.840.1.113883.10.20.22.2.1" />
104
+ <code code="10160-0" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="History of medication use"/>
105
+ <title>Medications</title>
106
+ <text>There are no current medications at the time of this document's creation.</text>
107
+ <entry>
108
+ <substanceAdministration moodCode="EVN" classCode="SBADM" negationInd="true">
109
+ <text>No known medications.</text>
110
+ <consumable>
111
+ <manufacturedProduct>
112
+ <manufacturedLabeledDrug>
113
+ <code code="410942007" displayName="drug or medication"
114
+ codeSystem="2.16.840.1.113883.6.96"
115
+ codeSystemName="SNOMED CT"/>
116
+ </manufacturedLabeledDrug>
117
+ </manufacturedProduct>
118
+ </consumable>
119
+ </substanceAdministration>
120
+ </entry>
121
+ </section>
122
+ </component>
123
+ <component>
124
+ <!-- Diagnostic Results: patient has no results -->
125
+ <section>
126
+ <templateId root="2.16.840.1.113883.10.20.22.2.3.1"/>
127
+ <code code="30954-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Results"/>
128
+ <title>Diagnostic Results</title>
129
+ <text>There are no current results at the time of this document's creation.</text>
130
+ <entry typeCode="DRIV">
131
+ <organizer classCode="BATTERY" moodCode="EVN">
132
+ <templateId root="2.16.840.1.113883.10.20.22.4.1"/>
133
+ <id root="650ba740-3fd2-0134-416c-60f81dc2d82a"/>
134
+ <code nullFlavor="NA"/>
135
+ <statusCode code="completed"/>
136
+ <effectiveTime>
137
+ <low nullFlavor="UNK"/>
138
+ </effectiveTime>
139
+ <component>
140
+ <observation classCode="OBS" moodCode="EVN" negationInd="true">
141
+ <templateId root="2.16.840.1.113883.10.20.22.4.2"/>
142
+ <id root="650ba810-3fd2-0134-416c-60f81dc2d82a"/>
143
+ <code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
144
+ <statusCode code="completed"/>
145
+ <effectiveTime>
146
+ <low nullFlavor="UNK"/>
147
+ </effectiveTime>
148
+ </observation>
149
+ </component>
150
+ </organizer>
151
+ </entry>
152
+ </section>
153
+ </component>
154
+ <component>
155
+ <!-- Conditions: patient has no conditions -->
156
+ <section>
157
+ <templateId root="2.16.840.1.113883.10.20.22.2.5"/>
158
+ <code code="11450-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Problem List"/>
159
+ <title>Problems</title>
160
+ <text>There are no current problem concern acts at the time of this document's creation.</text>
161
+ <entry typeCode="DRIV">
162
+ <act classCode="ACT" moodCode="EVN">
163
+ <templateId root="2.16.840.1.113883.10.20.22.4.3"/>
164
+ <id root="650bb220-3fd2-0134-416c-60f81dc2d82a"/>
165
+ <code nullFlavor="NA"/>
166
+ <statusCode code="active"/>
167
+ <effectiveTime>
168
+ <low nullFlavor="NA"/>
169
+ </effectiveTime>
170
+ <entryRelationship typeCode="SUBJ" inversionInd="false">
171
+ <observation classCode="OBS" moodCode="EVN" negationInd="true">
172
+ <templateId root="2.16.840.1.113883.10.20.22.4.4"/>
173
+ <id root="650bb2e0-3fd2-0134-416c-60f81dc2d82a"/>
174
+ <code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
175
+ <statusCode code="completed"/>
176
+ <effectiveTime>
177
+ <low nullFlavor="UNK"/>
178
+ </effectiveTime>
179
+
180
+ </observation>
181
+ </entryRelationship>
182
+ </act>
183
+ </entry>
184
+ </section>
185
+ </component>
186
+ <component>
187
+ <!-- Procedures: patient has no procedures -->
188
+ <section>
189
+ <templateId root="2.16.840.1.113883.10.20.22.2.7"/>
190
+ <code code="47519-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Procedures"/>
191
+ <title>Procedures</title>
192
+ <text>There are no current procedures at the time of this document's creation.</text>
193
+ <entry typeCode="DRIV">
194
+ <procedure classCode="PROC" moodCode="EVN" negationInd="true">
195
+ <templateId root="2.16.840.1.113883.10.20.22.4.14"/>
196
+ <id root="650bbbc0-3fd2-0134-416c-60f81dc2d82a"/>
197
+ <code code="ASSERTION" codeSystem="2.16.840.1.113883.5.4"/>
198
+ <statusCode code="completed"/>
199
+ <effectiveTime>
200
+ <low nullFlavor="UNK"/>
201
+ </effectiveTime>
202
+
203
+ </procedure>
204
+ </entry>
205
+ </section>
206
+ </component>
207
+ <component>
208
+ <!--Encounters-->
209
+ <section>
210
+ <templateId root="2.16.840.1.113883.10.20.22.2.22" /> <!-- CCDA Template id -->
211
+ <!--Encounters section template-->
212
+ <code code="46240-8" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="History of encounters"/>
213
+ <title>Encounters</title>
214
+ <text>
215
+ <table border="1" width="100%">
216
+ <thead>
217
+ <tr>
218
+ <th>Description</th>
219
+ <th>Codes</th>
220
+ <th>Time</th>
221
+
222
+ </tr>
223
+ </thead>
224
+ <tbody>
225
+ <tr>
226
+ <td ID="encounters-desc-0">Outpatient Encounter</td>
227
+ <td ID="encounters-code-0">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
228
+ <td>November 18th, 2014 21:11 - November 18th, 2014 21:26</td>
229
+
230
+ </tr>
231
+ <tr>
232
+ <td ID="encounters-desc-1">Outpatient Encounter</td>
233
+ <td ID="encounters-code-1">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
234
+ <td>December 31st, 2014 23:55 - January 1st, 2015 00:10</td>
235
+
236
+ </tr>
237
+ <tr>
238
+ <td ID="encounters-desc-2">Outpatient Encounter</td>
239
+ <td ID="encounters-code-2">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
240
+ <td>February 11th, 2015 09:14 - February 11th, 2015 09:29</td>
241
+
242
+ </tr>
243
+ <tr>
244
+ <td ID="encounters-desc-3">Outpatient Encounter</td>
245
+ <td ID="encounters-code-3">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
246
+ <td>April 26th, 2015 10:53 - April 26th, 2015 11:08</td>
247
+
248
+ </tr>
249
+ <tr>
250
+ <td ID="encounters-desc-4">Outpatient Encounter</td>
251
+ <td ID="encounters-code-4">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
252
+ <td>July 15th, 2015 10:34 - July 15th, 2015 10:49</td>
253
+
254
+ </tr>
255
+ <tr>
256
+ <td ID="encounters-desc-5">Outpatient Encounter</td>
257
+ <td ID="encounters-code-5">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
258
+ <td>October 24th, 2015 20:49 - October 24th, 2015 21:04</td>
259
+
260
+ </tr>
261
+ <tr>
262
+ <td ID="encounters-desc-6">Outpatient Encounter</td>
263
+ <td ID="encounters-code-6">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
264
+ <td>January 29th, 2016 22:59 - January 29th, 2016 23:14</td>
265
+
266
+ </tr>
267
+ <tr>
268
+ <td ID="encounters-desc-7">Outpatient Encounter</td>
269
+ <td ID="encounters-code-7">ICD-9-CM: V20.2 ICD-10-CM: Z00.129 SNOMED-CT: 170258001<br/></td>
270
+ <td>May 5th, 2016 02:23 - May 5th, 2016 02:38</td>
271
+
272
+ </tr>
273
+ </tbody>
274
+ </table>
275
+ </text>
276
+ <entry typeCode="DRIV">
277
+ <encounter classCode="ENC" moodCode="EVN">
278
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
279
+ <!-- Encounter activity template -->
280
+ <id root="650c00d0-3fd2-0134-416c-60f81dc2d82a"/>
281
+ <code nullFlavor="UNK">
282
+ <originalText><reference value="#encounters-desc-0"/></originalText>
283
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
284
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
285
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
286
+ </code>
287
+
288
+ <text>
289
+ <reference value="#encounters-desc-0"/>
290
+ </text>
291
+ <effectiveTime value='20141118211120'/>
292
+ </encounter>
293
+ </entry>
294
+ <entry typeCode="DRIV">
295
+ <encounter classCode="ENC" moodCode="EVN">
296
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
297
+ <!-- Encounter activity template -->
298
+ <id root="650c18d0-3fd2-0134-416c-60f81dc2d82a"/>
299
+ <code nullFlavor="UNK">
300
+ <originalText><reference value="#encounters-desc-1"/></originalText>
301
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
302
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
303
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
304
+ </code>
305
+
306
+ <text>
307
+ <reference value="#encounters-desc-1"/>
308
+ </text>
309
+ <effectiveTime value='20141231235543'/>
310
+ </encounter>
311
+ </entry>
312
+ <entry typeCode="DRIV">
313
+ <encounter classCode="ENC" moodCode="EVN">
314
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
315
+ <!-- Encounter activity template -->
316
+ <id root="650c27b0-3fd2-0134-416c-60f81dc2d82a"/>
317
+ <code nullFlavor="UNK">
318
+ <originalText><reference value="#encounters-desc-2"/></originalText>
319
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
320
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
321
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
322
+ </code>
323
+
324
+ <text>
325
+ <reference value="#encounters-desc-2"/>
326
+ </text>
327
+ <effectiveTime value='20150211091442'/>
328
+ </encounter>
329
+ </entry>
330
+ <entry typeCode="DRIV">
331
+ <encounter classCode="ENC" moodCode="EVN">
332
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
333
+ <!-- Encounter activity template -->
334
+ <id root="650c3590-3fd2-0134-416c-60f81dc2d82a"/>
335
+ <code nullFlavor="UNK">
336
+ <originalText><reference value="#encounters-desc-3"/></originalText>
337
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
338
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
339
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
340
+ </code>
341
+
342
+ <text>
343
+ <reference value="#encounters-desc-3"/>
344
+ </text>
345
+ <effectiveTime value='20150426105335'/>
346
+ </encounter>
347
+ </entry>
348
+ <entry typeCode="DRIV">
349
+ <encounter classCode="ENC" moodCode="EVN">
350
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
351
+ <!-- Encounter activity template -->
352
+ <id root="650c4340-3fd2-0134-416c-60f81dc2d82a"/>
353
+ <code nullFlavor="UNK">
354
+ <originalText><reference value="#encounters-desc-4"/></originalText>
355
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
356
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
357
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
358
+ </code>
359
+
360
+ <text>
361
+ <reference value="#encounters-desc-4"/>
362
+ </text>
363
+ <effectiveTime value='20150715103402'/>
364
+ </encounter>
365
+ </entry>
366
+ <entry typeCode="DRIV">
367
+ <encounter classCode="ENC" moodCode="EVN">
368
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
369
+ <!-- Encounter activity template -->
370
+ <id root="650c5140-3fd2-0134-416c-60f81dc2d82a"/>
371
+ <code nullFlavor="UNK">
372
+ <originalText><reference value="#encounters-desc-5"/></originalText>
373
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
374
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
375
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
376
+ </code>
377
+
378
+ <text>
379
+ <reference value="#encounters-desc-5"/>
380
+ </text>
381
+ <effectiveTime value='20151024204947'/>
382
+ </encounter>
383
+ </entry>
384
+ <entry typeCode="DRIV">
385
+ <encounter classCode="ENC" moodCode="EVN">
386
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
387
+ <!-- Encounter activity template -->
388
+ <id root="650c5ee0-3fd2-0134-416c-60f81dc2d82a"/>
389
+ <code nullFlavor="UNK">
390
+ <originalText><reference value="#encounters-desc-6"/></originalText>
391
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
392
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
393
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
394
+ </code>
395
+
396
+ <text>
397
+ <reference value="#encounters-desc-6"/>
398
+ </text>
399
+ <effectiveTime value='20160129225910'/>
400
+ </encounter>
401
+ </entry>
402
+ <entry typeCode="DRIV">
403
+ <encounter classCode="ENC" moodCode="EVN">
404
+ <templateId root="2.16.840.1.113883.10.20.22.4.49"/>
405
+ <!-- Encounter activity template -->
406
+ <id root="650c6ca0-3fd2-0134-416c-60f81dc2d82a"/>
407
+ <code nullFlavor="UNK">
408
+ <originalText><reference value="#encounters-desc-7"/></originalText>
409
+ <translation code="V20.2" codeSystem="2.16.840.1.113883.6.103" />
410
+ <translation code="Z00.129" codeSystem="2.16.840.1.113883.6.90" />
411
+ <translation code="170258001" codeSystem="2.16.840.1.113883.6.96" />
412
+ </code>
413
+
414
+ <text>
415
+ <reference value="#encounters-desc-7"/>
416
+ </text>
417
+ <effectiveTime value='20160505022358'/>
418
+ </encounter>
419
+ </entry>
420
+ </section>
421
+ </component>
422
+ <component>
423
+ <!--Vital Signs-->
424
+ <section>
425
+ <templateId root="2.16.840.1.113883.10.20.22.2.4"/>
426
+ <!--Vital Signs section template-->
427
+ <code code="8716-3" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Vital signs"/>
428
+ <title>Vital Signs</title>
429
+ <text>
430
+ <table border="1" width="100%">
431
+ <thead>
432
+ <tr>
433
+ <th>Description</th>
434
+ <th>Codes</th>
435
+ <th>Time</th>
436
+
437
+ <th>Value</th>
438
+ </tr>
439
+ </thead>
440
+ <tbody>
441
+ <tr>
442
+ <td ID="vitals-desc-0">Body Weight</td>
443
+ <td ID="vitals-code-0">LOINC: 29463-7<br/></td>
444
+ <td>November 18th, 2014 21:11 - November 18th, 2014 21:11</td>
445
+
446
+ <td>
447
+ 3.5<br/>
448
+ </td>
449
+ </tr>
450
+ <tr>
451
+ <td ID="vitals-desc-1">Body Height</td>
452
+ <td ID="vitals-code-1">LOINC: 8302-2<br/></td>
453
+ <td>November 18th, 2014 21:11 - November 18th, 2014 21:11</td>
454
+
455
+ <td>
456
+ 51<br/>
457
+ </td>
458
+ </tr>
459
+ <tr>
460
+ <td ID="vitals-desc-2">Systolic Blood Pressure</td>
461
+ <td ID="vitals-code-2">LOINC: 8480-6<br/></td>
462
+ <td>November 18th, 2014 21:11 - November 18th, 2014 21:11</td>
463
+
464
+ <td>
465
+ 118<br/>
466
+ </td>
467
+ </tr>
468
+ <tr>
469
+ <td ID="vitals-desc-3">Diastolic Blood Pressure</td>
470
+ <td ID="vitals-code-3">LOINC: 8462-4<br/></td>
471
+ <td>November 18th, 2014 21:11 - November 18th, 2014 21:11</td>
472
+
473
+ <td>
474
+ 81<br/>
475
+ </td>
476
+ </tr>
477
+ <tr>
478
+ <td ID="vitals-desc-4">Body Weight</td>
479
+ <td ID="vitals-code-4">LOINC: 29463-7<br/></td>
480
+ <td>December 31st, 2014 23:55 - December 31st, 2014 23:55</td>
481
+
482
+ <td>
483
+ 3.5<br/>
484
+ </td>
485
+ </tr>
486
+ <tr>
487
+ <td ID="vitals-desc-5">Body Height</td>
488
+ <td ID="vitals-code-5">LOINC: 8302-2<br/></td>
489
+ <td>December 31st, 2014 23:55 - December 31st, 2014 23:55</td>
490
+
491
+ <td>
492
+ 51<br/>
493
+ </td>
494
+ </tr>
495
+ <tr>
496
+ <td ID="vitals-desc-6">Systolic Blood Pressure</td>
497
+ <td ID="vitals-code-6">LOINC: 8480-6<br/></td>
498
+ <td>December 31st, 2014 23:55 - December 31st, 2014 23:55</td>
499
+
500
+ <td>
501
+ 126<br/>
502
+ </td>
503
+ </tr>
504
+ <tr>
505
+ <td ID="vitals-desc-7">Diastolic Blood Pressure</td>
506
+ <td ID="vitals-code-7">LOINC: 8462-4<br/></td>
507
+ <td>December 31st, 2014 23:55 - December 31st, 2014 23:55</td>
508
+
509
+ <td>
510
+ 80<br/>
511
+ </td>
512
+ </tr>
513
+ <tr>
514
+ <td ID="vitals-desc-8">Body Weight</td>
515
+ <td ID="vitals-code-8">LOINC: 29463-7<br/></td>
516
+ <td>February 11th, 2015 09:14 - February 11th, 2015 09:14</td>
517
+
518
+ <td>
519
+ 3.5<br/>
520
+ </td>
521
+ </tr>
522
+ <tr>
523
+ <td ID="vitals-desc-9">Body Height</td>
524
+ <td ID="vitals-code-9">LOINC: 8302-2<br/></td>
525
+ <td>February 11th, 2015 09:14 - February 11th, 2015 09:14</td>
526
+
527
+ <td>
528
+ 51<br/>
529
+ </td>
530
+ </tr>
531
+ <tr>
532
+ <td ID="vitals-desc-10">Systolic Blood Pressure</td>
533
+ <td ID="vitals-code-10">LOINC: 8480-6<br/></td>
534
+ <td>February 11th, 2015 09:14 - February 11th, 2015 09:14</td>
535
+
536
+ <td>
537
+ 106<br/>
538
+ </td>
539
+ </tr>
540
+ <tr>
541
+ <td ID="vitals-desc-11">Diastolic Blood Pressure</td>
542
+ <td ID="vitals-code-11">LOINC: 8462-4<br/></td>
543
+ <td>February 11th, 2015 09:14 - February 11th, 2015 09:14</td>
544
+
545
+ <td>
546
+ 73<br/>
547
+ </td>
548
+ </tr>
549
+ <tr>
550
+ <td ID="vitals-desc-12">Body Weight</td>
551
+ <td ID="vitals-code-12">LOINC: 29463-7<br/></td>
552
+ <td>April 26th, 2015 10:53 - April 26th, 2015 10:53</td>
553
+
554
+ <td>
555
+ 3.5<br/>
556
+ </td>
557
+ </tr>
558
+ <tr>
559
+ <td ID="vitals-desc-13">Body Height</td>
560
+ <td ID="vitals-code-13">LOINC: 8302-2<br/></td>
561
+ <td>April 26th, 2015 10:53 - April 26th, 2015 10:53</td>
562
+
563
+ <td>
564
+ 51<br/>
565
+ </td>
566
+ </tr>
567
+ <tr>
568
+ <td ID="vitals-desc-14">Systolic Blood Pressure</td>
569
+ <td ID="vitals-code-14">LOINC: 8480-6<br/></td>
570
+ <td>April 26th, 2015 10:53 - April 26th, 2015 10:53</td>
571
+
572
+ <td>
573
+ 105<br/>
574
+ </td>
575
+ </tr>
576
+ <tr>
577
+ <td ID="vitals-desc-15">Diastolic Blood Pressure</td>
578
+ <td ID="vitals-code-15">LOINC: 8462-4<br/></td>
579
+ <td>April 26th, 2015 10:53 - April 26th, 2015 10:53</td>
580
+
581
+ <td>
582
+ 71<br/>
583
+ </td>
584
+ </tr>
585
+ <tr>
586
+ <td ID="vitals-desc-16">Body Weight</td>
587
+ <td ID="vitals-code-16">LOINC: 29463-7<br/></td>
588
+ <td>July 15th, 2015 10:34 - July 15th, 2015 10:34</td>
589
+
590
+ <td>
591
+ 3.5<br/>
592
+ </td>
593
+ </tr>
594
+ <tr>
595
+ <td ID="vitals-desc-17">Body Height</td>
596
+ <td ID="vitals-code-17">LOINC: 8302-2<br/></td>
597
+ <td>July 15th, 2015 10:34 - July 15th, 2015 10:34</td>
598
+
599
+ <td>
600
+ 51<br/>
601
+ </td>
602
+ </tr>
603
+ <tr>
604
+ <td ID="vitals-desc-18">Systolic Blood Pressure</td>
605
+ <td ID="vitals-code-18">LOINC: 8480-6<br/></td>
606
+ <td>July 15th, 2015 10:34 - July 15th, 2015 10:34</td>
607
+
608
+ <td>
609
+ 114<br/>
610
+ </td>
611
+ </tr>
612
+ <tr>
613
+ <td ID="vitals-desc-19">Diastolic Blood Pressure</td>
614
+ <td ID="vitals-code-19">LOINC: 8462-4<br/></td>
615
+ <td>July 15th, 2015 10:34 - July 15th, 2015 10:34</td>
616
+
617
+ <td>
618
+ 73<br/>
619
+ </td>
620
+ </tr>
621
+ <tr>
622
+ <td ID="vitals-desc-20">Body Weight</td>
623
+ <td ID="vitals-code-20">LOINC: 29463-7<br/></td>
624
+ <td>October 24th, 2015 20:49 - October 24th, 2015 20:49</td>
625
+
626
+ <td>
627
+ 3.5<br/>
628
+ </td>
629
+ </tr>
630
+ <tr>
631
+ <td ID="vitals-desc-21">Body Height</td>
632
+ <td ID="vitals-code-21">LOINC: 8302-2<br/></td>
633
+ <td>October 24th, 2015 20:49 - October 24th, 2015 20:49</td>
634
+
635
+ <td>
636
+ 51<br/>
637
+ </td>
638
+ </tr>
639
+ <tr>
640
+ <td ID="vitals-desc-22">Systolic Blood Pressure</td>
641
+ <td ID="vitals-code-22">LOINC: 8480-6<br/></td>
642
+ <td>October 24th, 2015 20:49 - October 24th, 2015 20:49</td>
643
+
644
+ <td>
645
+ 118<br/>
646
+ </td>
647
+ </tr>
648
+ <tr>
649
+ <td ID="vitals-desc-23">Diastolic Blood Pressure</td>
650
+ <td ID="vitals-code-23">LOINC: 8462-4<br/></td>
651
+ <td>October 24th, 2015 20:49 - October 24th, 2015 20:49</td>
652
+
653
+ <td>
654
+ 80<br/>
655
+ </td>
656
+ </tr>
657
+ <tr>
658
+ <td ID="vitals-desc-24">Body Weight</td>
659
+ <td ID="vitals-code-24">LOINC: 29463-7<br/></td>
660
+ <td>January 29th, 2016 22:59 - January 29th, 2016 22:59</td>
661
+
662
+ <td>
663
+ 6.393730204687779<br/>
664
+ </td>
665
+ </tr>
666
+ <tr>
667
+ <td ID="vitals-desc-25">Body Height</td>
668
+ <td ID="vitals-code-25">LOINC: 8302-2<br/></td>
669
+ <td>January 29th, 2016 22:59 - January 29th, 2016 22:59</td>
670
+
671
+ <td>
672
+ 56.899782463634935<br/>
673
+ </td>
674
+ </tr>
675
+ <tr>
676
+ <td ID="vitals-desc-26">Systolic Blood Pressure</td>
677
+ <td ID="vitals-code-26">LOINC: 8480-6<br/></td>
678
+ <td>January 29th, 2016 22:59 - January 29th, 2016 22:59</td>
679
+
680
+ <td>
681
+ 128<br/>
682
+ </td>
683
+ </tr>
684
+ <tr>
685
+ <td ID="vitals-desc-27">Diastolic Blood Pressure</td>
686
+ <td ID="vitals-code-27">LOINC: 8462-4<br/></td>
687
+ <td>January 29th, 2016 22:59 - January 29th, 2016 22:59</td>
688
+
689
+ <td>
690
+ 71<br/>
691
+ </td>
692
+ </tr>
693
+ <tr>
694
+ <td ID="vitals-desc-28">Body Weight</td>
695
+ <td ID="vitals-code-28">LOINC: 29463-7<br/></td>
696
+ <td>May 5th, 2016 02:23 - May 5th, 2016 02:23</td>
697
+
698
+ <td>
699
+ 6.393730204687779<br/>
700
+ </td>
701
+ </tr>
702
+ <tr>
703
+ <td ID="vitals-desc-29">Body Height</td>
704
+ <td ID="vitals-code-29">LOINC: 8302-2<br/></td>
705
+ <td>May 5th, 2016 02:23 - May 5th, 2016 02:23</td>
706
+
707
+ <td>
708
+ 56.899782463634935<br/>
709
+ </td>
710
+ </tr>
711
+ <tr>
712
+ <td ID="vitals-desc-30">Systolic Blood Pressure</td>
713
+ <td ID="vitals-code-30">LOINC: 8480-6<br/></td>
714
+ <td>May 5th, 2016 02:23 - May 5th, 2016 02:23</td>
715
+
716
+ <td>
717
+ 117<br/>
718
+ </td>
719
+ </tr>
720
+ <tr>
721
+ <td ID="vitals-desc-31">Diastolic Blood Pressure</td>
722
+ <td ID="vitals-code-31">LOINC: 8462-4<br/></td>
723
+ <td>May 5th, 2016 02:23 - May 5th, 2016 02:23</td>
724
+
725
+ <td>
726
+ 73<br/>
727
+ </td>
728
+ </tr>
729
+ </tbody>
730
+ </table>
731
+ </text>
732
+ <entry typeCode="DRIV">
733
+ <organizer classCode="CLUSTER" moodCode="EVN">
734
+ <templateId root="2.16.840.1.113883.10.20.22.4.26"/>
735
+ <!-- Vital signs organizer template -->
736
+ <id root="650d1ed0-3fd2-0134-416c-60f81dc2d82a"/>
737
+ <code code="46680005" codeSystem="2.16.840.1.113883.6.96" displayName="Vital signs" codeSystemName="SNOMED CT"/>
738
+ <statusCode code="completed"/>
739
+ <effectiveTime value="19991114"/>
740
+ <component>
741
+ <observation classCode="OBS" moodCode="EVN">
742
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
743
+ <!-- Result observation template -->
744
+ <id root="650d1fd0-3fd2-0134-416c-60f81dc2d82a"/>
745
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
746
+ <text>
747
+ <reference value="vitals-desc-0"/>
748
+ </text>
749
+ <statusCode code="completed"/>
750
+ <effectiveTime value='20141118211120'/>
751
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
752
+ </observation>
753
+ </component>
754
+ <component>
755
+ <observation classCode="OBS" moodCode="EVN">
756
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
757
+ <!-- Result observation template -->
758
+ <id root="650d28a0-3fd2-0134-416c-60f81dc2d82a"/>
759
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
760
+ <text>
761
+ <reference value="vitals-desc-1"/>
762
+ </text>
763
+ <statusCode code="completed"/>
764
+ <effectiveTime value='20141118211120'/>
765
+ <value xsi:type="PQ" value="51" unit="cm"/>
766
+ </observation>
767
+ </component>
768
+ <component>
769
+ <observation classCode="OBS" moodCode="EVN">
770
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
771
+ <!-- Result observation template -->
772
+ <id root="650d2d40-3fd2-0134-416c-60f81dc2d82a"/>
773
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
774
+ <text>
775
+ <reference value="vitals-desc-2"/>
776
+ </text>
777
+ <statusCode code="completed"/>
778
+ <effectiveTime value='20141118211120'/>
779
+ <value xsi:type="PQ" value="118" unit="mmHg"/>
780
+ </observation>
781
+ </component>
782
+ <component>
783
+ <observation classCode="OBS" moodCode="EVN">
784
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
785
+ <!-- Result observation template -->
786
+ <id root="650d31a0-3fd2-0134-416c-60f81dc2d82a"/>
787
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
788
+ <text>
789
+ <reference value="vitals-desc-3"/>
790
+ </text>
791
+ <statusCode code="completed"/>
792
+ <effectiveTime value='20141118211120'/>
793
+ <value xsi:type="PQ" value="81" unit="mmHg"/>
794
+ </observation>
795
+ </component>
796
+ <component>
797
+ <observation classCode="OBS" moodCode="EVN">
798
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
799
+ <!-- Result observation template -->
800
+ <id root="650d3850-3fd2-0134-416c-60f81dc2d82a"/>
801
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
802
+ <text>
803
+ <reference value="vitals-desc-4"/>
804
+ </text>
805
+ <statusCode code="completed"/>
806
+ <effectiveTime value='20141231235543'/>
807
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
808
+ </observation>
809
+ </component>
810
+ <component>
811
+ <observation classCode="OBS" moodCode="EVN">
812
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
813
+ <!-- Result observation template -->
814
+ <id root="650d3e50-3fd2-0134-416c-60f81dc2d82a"/>
815
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
816
+ <text>
817
+ <reference value="vitals-desc-5"/>
818
+ </text>
819
+ <statusCode code="completed"/>
820
+ <effectiveTime value='20141231235543'/>
821
+ <value xsi:type="PQ" value="51" unit="cm"/>
822
+ </observation>
823
+ </component>
824
+ <component>
825
+ <observation classCode="OBS" moodCode="EVN">
826
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
827
+ <!-- Result observation template -->
828
+ <id root="650d4320-3fd2-0134-416c-60f81dc2d82a"/>
829
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
830
+ <text>
831
+ <reference value="vitals-desc-6"/>
832
+ </text>
833
+ <statusCode code="completed"/>
834
+ <effectiveTime value='20141231235543'/>
835
+ <value xsi:type="PQ" value="126" unit="mmHg"/>
836
+ </observation>
837
+ </component>
838
+ <component>
839
+ <observation classCode="OBS" moodCode="EVN">
840
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
841
+ <!-- Result observation template -->
842
+ <id root="650d4790-3fd2-0134-416c-60f81dc2d82a"/>
843
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
844
+ <text>
845
+ <reference value="vitals-desc-7"/>
846
+ </text>
847
+ <statusCode code="completed"/>
848
+ <effectiveTime value='20141231235543'/>
849
+ <value xsi:type="PQ" value="80" unit="mmHg"/>
850
+ </observation>
851
+ </component>
852
+ <component>
853
+ <observation classCode="OBS" moodCode="EVN">
854
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
855
+ <!-- Result observation template -->
856
+ <id root="650d4bf0-3fd2-0134-416c-60f81dc2d82a"/>
857
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
858
+ <text>
859
+ <reference value="vitals-desc-8"/>
860
+ </text>
861
+ <statusCode code="completed"/>
862
+ <effectiveTime value='20150211091442'/>
863
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
864
+ </observation>
865
+ </component>
866
+ <component>
867
+ <observation classCode="OBS" moodCode="EVN">
868
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
869
+ <!-- Result observation template -->
870
+ <id root="650d5070-3fd2-0134-416c-60f81dc2d82a"/>
871
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
872
+ <text>
873
+ <reference value="vitals-desc-9"/>
874
+ </text>
875
+ <statusCode code="completed"/>
876
+ <effectiveTime value='20150211091442'/>
877
+ <value xsi:type="PQ" value="51" unit="cm"/>
878
+ </observation>
879
+ </component>
880
+ <component>
881
+ <observation classCode="OBS" moodCode="EVN">
882
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
883
+ <!-- Result observation template -->
884
+ <id root="650d54b0-3fd2-0134-416c-60f81dc2d82a"/>
885
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
886
+ <text>
887
+ <reference value="vitals-desc-10"/>
888
+ </text>
889
+ <statusCode code="completed"/>
890
+ <effectiveTime value='20150211091442'/>
891
+ <value xsi:type="PQ" value="106" unit="mmHg"/>
892
+ </observation>
893
+ </component>
894
+ <component>
895
+ <observation classCode="OBS" moodCode="EVN">
896
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
897
+ <!-- Result observation template -->
898
+ <id root="650d58d0-3fd2-0134-416c-60f81dc2d82a"/>
899
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
900
+ <text>
901
+ <reference value="vitals-desc-11"/>
902
+ </text>
903
+ <statusCode code="completed"/>
904
+ <effectiveTime value='20150211091442'/>
905
+ <value xsi:type="PQ" value="73" unit="mmHg"/>
906
+ </observation>
907
+ </component>
908
+ <component>
909
+ <observation classCode="OBS" moodCode="EVN">
910
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
911
+ <!-- Result observation template -->
912
+ <id root="650d5ce0-3fd2-0134-416c-60f81dc2d82a"/>
913
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
914
+ <text>
915
+ <reference value="vitals-desc-12"/>
916
+ </text>
917
+ <statusCode code="completed"/>
918
+ <effectiveTime value='20150426105335'/>
919
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
920
+ </observation>
921
+ </component>
922
+ <component>
923
+ <observation classCode="OBS" moodCode="EVN">
924
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
925
+ <!-- Result observation template -->
926
+ <id root="650d6110-3fd2-0134-416c-60f81dc2d82a"/>
927
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
928
+ <text>
929
+ <reference value="vitals-desc-13"/>
930
+ </text>
931
+ <statusCode code="completed"/>
932
+ <effectiveTime value='20150426105335'/>
933
+ <value xsi:type="PQ" value="51" unit="cm"/>
934
+ </observation>
935
+ </component>
936
+ <component>
937
+ <observation classCode="OBS" moodCode="EVN">
938
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
939
+ <!-- Result observation template -->
940
+ <id root="650d6540-3fd2-0134-416c-60f81dc2d82a"/>
941
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
942
+ <text>
943
+ <reference value="vitals-desc-14"/>
944
+ </text>
945
+ <statusCode code="completed"/>
946
+ <effectiveTime value='20150426105335'/>
947
+ <value xsi:type="PQ" value="105" unit="mmHg"/>
948
+ </observation>
949
+ </component>
950
+ <component>
951
+ <observation classCode="OBS" moodCode="EVN">
952
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
953
+ <!-- Result observation template -->
954
+ <id root="650d6970-3fd2-0134-416c-60f81dc2d82a"/>
955
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
956
+ <text>
957
+ <reference value="vitals-desc-15"/>
958
+ </text>
959
+ <statusCode code="completed"/>
960
+ <effectiveTime value='20150426105335'/>
961
+ <value xsi:type="PQ" value="71" unit="mmHg"/>
962
+ </observation>
963
+ </component>
964
+ <component>
965
+ <observation classCode="OBS" moodCode="EVN">
966
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
967
+ <!-- Result observation template -->
968
+ <id root="650d6d80-3fd2-0134-416c-60f81dc2d82a"/>
969
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
970
+ <text>
971
+ <reference value="vitals-desc-16"/>
972
+ </text>
973
+ <statusCode code="completed"/>
974
+ <effectiveTime value='20150715103402'/>
975
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
976
+ </observation>
977
+ </component>
978
+ <component>
979
+ <observation classCode="OBS" moodCode="EVN">
980
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
981
+ <!-- Result observation template -->
982
+ <id root="650d71a0-3fd2-0134-416c-60f81dc2d82a"/>
983
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
984
+ <text>
985
+ <reference value="vitals-desc-17"/>
986
+ </text>
987
+ <statusCode code="completed"/>
988
+ <effectiveTime value='20150715103402'/>
989
+ <value xsi:type="PQ" value="51" unit="cm"/>
990
+ </observation>
991
+ </component>
992
+ <component>
993
+ <observation classCode="OBS" moodCode="EVN">
994
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
995
+ <!-- Result observation template -->
996
+ <id root="650d75c0-3fd2-0134-416c-60f81dc2d82a"/>
997
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
998
+ <text>
999
+ <reference value="vitals-desc-18"/>
1000
+ </text>
1001
+ <statusCode code="completed"/>
1002
+ <effectiveTime value='20150715103402'/>
1003
+ <value xsi:type="PQ" value="114" unit="mmHg"/>
1004
+ </observation>
1005
+ </component>
1006
+ <component>
1007
+ <observation classCode="OBS" moodCode="EVN">
1008
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1009
+ <!-- Result observation template -->
1010
+ <id root="650d79f0-3fd2-0134-416c-60f81dc2d82a"/>
1011
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
1012
+ <text>
1013
+ <reference value="vitals-desc-19"/>
1014
+ </text>
1015
+ <statusCode code="completed"/>
1016
+ <effectiveTime value='20150715103402'/>
1017
+ <value xsi:type="PQ" value="73" unit="mmHg"/>
1018
+ </observation>
1019
+ </component>
1020
+ <component>
1021
+ <observation classCode="OBS" moodCode="EVN">
1022
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1023
+ <!-- Result observation template -->
1024
+ <id root="650d7e00-3fd2-0134-416c-60f81dc2d82a"/>
1025
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
1026
+ <text>
1027
+ <reference value="vitals-desc-20"/>
1028
+ </text>
1029
+ <statusCode code="completed"/>
1030
+ <effectiveTime value='20151024204947'/>
1031
+ <value xsi:type="PQ" value="3.5" unit="kg"/>
1032
+ </observation>
1033
+ </component>
1034
+ <component>
1035
+ <observation classCode="OBS" moodCode="EVN">
1036
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1037
+ <!-- Result observation template -->
1038
+ <id root="650d8220-3fd2-0134-416c-60f81dc2d82a"/>
1039
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
1040
+ <text>
1041
+ <reference value="vitals-desc-21"/>
1042
+ </text>
1043
+ <statusCode code="completed"/>
1044
+ <effectiveTime value='20151024204947'/>
1045
+ <value xsi:type="PQ" value="51" unit="cm"/>
1046
+ </observation>
1047
+ </component>
1048
+ <component>
1049
+ <observation classCode="OBS" moodCode="EVN">
1050
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1051
+ <!-- Result observation template -->
1052
+ <id root="650d8630-3fd2-0134-416c-60f81dc2d82a"/>
1053
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
1054
+ <text>
1055
+ <reference value="vitals-desc-22"/>
1056
+ </text>
1057
+ <statusCode code="completed"/>
1058
+ <effectiveTime value='20151024204947'/>
1059
+ <value xsi:type="PQ" value="118" unit="mmHg"/>
1060
+ </observation>
1061
+ </component>
1062
+ <component>
1063
+ <observation classCode="OBS" moodCode="EVN">
1064
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1065
+ <!-- Result observation template -->
1066
+ <id root="650d8a50-3fd2-0134-416c-60f81dc2d82a"/>
1067
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
1068
+ <text>
1069
+ <reference value="vitals-desc-23"/>
1070
+ </text>
1071
+ <statusCode code="completed"/>
1072
+ <effectiveTime value='20151024204947'/>
1073
+ <value xsi:type="PQ" value="80" unit="mmHg"/>
1074
+ </observation>
1075
+ </component>
1076
+ <component>
1077
+ <observation classCode="OBS" moodCode="EVN">
1078
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1079
+ <!-- Result observation template -->
1080
+ <id root="650d8ea0-3fd2-0134-416c-60f81dc2d82a"/>
1081
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
1082
+ <text>
1083
+ <reference value="vitals-desc-24"/>
1084
+ </text>
1085
+ <statusCode code="completed"/>
1086
+ <effectiveTime value='20160129225910'/>
1087
+ <value xsi:type="PQ" value="6.393730204687779" unit="kg"/>
1088
+ </observation>
1089
+ </component>
1090
+ <component>
1091
+ <observation classCode="OBS" moodCode="EVN">
1092
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1093
+ <!-- Result observation template -->
1094
+ <id root="650d92f0-3fd2-0134-416c-60f81dc2d82a"/>
1095
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
1096
+ <text>
1097
+ <reference value="vitals-desc-25"/>
1098
+ </text>
1099
+ <statusCode code="completed"/>
1100
+ <effectiveTime value='20160129225910'/>
1101
+ <value xsi:type="PQ" value="56.899782463634935" unit="cm"/>
1102
+ </observation>
1103
+ </component>
1104
+ <component>
1105
+ <observation classCode="OBS" moodCode="EVN">
1106
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1107
+ <!-- Result observation template -->
1108
+ <id root="650d97c0-3fd2-0134-416c-60f81dc2d82a"/>
1109
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
1110
+ <text>
1111
+ <reference value="vitals-desc-26"/>
1112
+ </text>
1113
+ <statusCode code="completed"/>
1114
+ <effectiveTime value='20160129225910'/>
1115
+ <value xsi:type="PQ" value="128" unit="mmHg"/>
1116
+ </observation>
1117
+ </component>
1118
+ <component>
1119
+ <observation classCode="OBS" moodCode="EVN">
1120
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1121
+ <!-- Result observation template -->
1122
+ <id root="650d9bb0-3fd2-0134-416c-60f81dc2d82a"/>
1123
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
1124
+ <text>
1125
+ <reference value="vitals-desc-27"/>
1126
+ </text>
1127
+ <statusCode code="completed"/>
1128
+ <effectiveTime value='20160129225910'/>
1129
+ <value xsi:type="PQ" value="71" unit="mmHg"/>
1130
+ </observation>
1131
+ </component>
1132
+ <component>
1133
+ <observation classCode="OBS" moodCode="EVN">
1134
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1135
+ <!-- Result observation template -->
1136
+ <id root="650d9f60-3fd2-0134-416c-60f81dc2d82a"/>
1137
+ <code code="29463-7" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Weight</originalText></code>
1138
+ <text>
1139
+ <reference value="vitals-desc-28"/>
1140
+ </text>
1141
+ <statusCode code="completed"/>
1142
+ <effectiveTime value='20160505022358'/>
1143
+ <value xsi:type="PQ" value="6.393730204687779" unit="kg"/>
1144
+ </observation>
1145
+ </component>
1146
+ <component>
1147
+ <observation classCode="OBS" moodCode="EVN">
1148
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1149
+ <!-- Result observation template -->
1150
+ <id root="650da410-3fd2-0134-416c-60f81dc2d82a"/>
1151
+ <code code="8302-2" codeSystem="2.16.840.1.113883.6.1" ><originalText>Body Height</originalText></code>
1152
+ <text>
1153
+ <reference value="vitals-desc-29"/>
1154
+ </text>
1155
+ <statusCode code="completed"/>
1156
+ <effectiveTime value='20160505022358'/>
1157
+ <value xsi:type="PQ" value="56.899782463634935" unit="cm"/>
1158
+ </observation>
1159
+ </component>
1160
+ <component>
1161
+ <observation classCode="OBS" moodCode="EVN">
1162
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1163
+ <!-- Result observation template -->
1164
+ <id root="650da810-3fd2-0134-416c-60f81dc2d82a"/>
1165
+ <code code="8480-6" codeSystem="2.16.840.1.113883.6.1" ><originalText>Systolic Blood Pressure</originalText></code>
1166
+ <text>
1167
+ <reference value="vitals-desc-30"/>
1168
+ </text>
1169
+ <statusCode code="completed"/>
1170
+ <effectiveTime value='20160505022358'/>
1171
+ <value xsi:type="PQ" value="117" unit="mmHg"/>
1172
+ </observation>
1173
+ </component>
1174
+ <component>
1175
+ <observation classCode="OBS" moodCode="EVN">
1176
+ <templateId root="2.16.840.1.113883.10.20.22.4.27"/>
1177
+ <!-- Result observation template -->
1178
+ <id root="650dabe0-3fd2-0134-416c-60f81dc2d82a"/>
1179
+ <code code="8462-4" codeSystem="2.16.840.1.113883.6.1" ><originalText>Diastolic Blood Pressure</originalText></code>
1180
+ <text>
1181
+ <reference value="vitals-desc-31"/>
1182
+ </text>
1183
+ <statusCode code="completed"/>
1184
+ <effectiveTime value='20160505022358'/>
1185
+ <value xsi:type="PQ" value="73" unit="mmHg"/>
1186
+ </observation>
1187
+ </component>
1188
+ </organizer>
1189
+ </entry>
1190
+ </section>
1191
+ </component>
1192
+ <component>
1193
+ <!--Immunizations-->
1194
+ <section>
1195
+ <templateId root="2.16.840.1.113883.10.20.22.2.2" />
1196
+ <!--Immunizations section template-->
1197
+ <code code="11369-6" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="History of immunizations"/>
1198
+ <title>Immunizations</title>
1199
+ <text>
1200
+ <table border="1" width="100%">
1201
+ <thead>
1202
+ <tr>
1203
+ <th>Description</th>
1204
+ <th>Codes</th>
1205
+ <th>Time</th>
1206
+
1207
+ </tr>
1208
+ </thead>
1209
+ <tbody>
1210
+ <tr>
1211
+ <td ID="immunizations-desc-0">[&quot;Hep B, adolescent or pediatric&quot;]</td>
1212
+ <td ID="immunizations-code-0">CVX: 08<br/></td>
1213
+ <td>November 18th, 2014 21:11</td>
1214
+
1215
+ </tr>
1216
+ <tr>
1217
+ <td ID="immunizations-desc-1">[&quot;Hep B, adolescent or pediatric&quot;]</td>
1218
+ <td ID="immunizations-code-1">CVX: 08<br/></td>
1219
+ <td>December 31st, 2014 23:55</td>
1220
+
1221
+ </tr>
1222
+ <tr>
1223
+ <td ID="immunizations-desc-2">[&quot;rotavirus, monovalent&quot;]</td>
1224
+ <td ID="immunizations-code-2">CVX: 119<br/></td>
1225
+ <td>February 11th, 2015 09:14</td>
1226
+
1227
+ </tr>
1228
+ <tr>
1229
+ <td ID="immunizations-desc-3">[&quot;DTaP&quot;]</td>
1230
+ <td ID="immunizations-code-3">CVX: 20<br/></td>
1231
+ <td>February 11th, 2015 09:14</td>
1232
+
1233
+ </tr>
1234
+ <tr>
1235
+ <td ID="immunizations-desc-4">[&quot;Hib (PRP-OMP)&quot;]</td>
1236
+ <td ID="immunizations-code-4">CVX: 49<br/></td>
1237
+ <td>February 11th, 2015 09:14</td>
1238
+
1239
+ </tr>
1240
+ <tr>
1241
+ <td ID="immunizations-desc-5">[&quot;Pneumococcal conjugate PCV 13&quot;]</td>
1242
+ <td ID="immunizations-code-5">CVX: 133<br/></td>
1243
+ <td>February 11th, 2015 09:14</td>
1244
+
1245
+ </tr>
1246
+ <tr>
1247
+ <td ID="immunizations-desc-6">[&quot;IPV&quot;]</td>
1248
+ <td ID="immunizations-code-6">CVX: 10<br/></td>
1249
+ <td>February 11th, 2015 09:14</td>
1250
+
1251
+ </tr>
1252
+ <tr>
1253
+ <td ID="immunizations-desc-7">[&quot;rotavirus, monovalent&quot;]</td>
1254
+ <td ID="immunizations-code-7">CVX: 119<br/></td>
1255
+ <td>April 26th, 2015 10:53</td>
1256
+
1257
+ </tr>
1258
+ <tr>
1259
+ <td ID="immunizations-desc-8">[&quot;DTaP&quot;]</td>
1260
+ <td ID="immunizations-code-8">CVX: 20<br/></td>
1261
+ <td>April 26th, 2015 10:53</td>
1262
+
1263
+ </tr>
1264
+ <tr>
1265
+ <td ID="immunizations-desc-9">[&quot;Hib (PRP-OMP)&quot;]</td>
1266
+ <td ID="immunizations-code-9">CVX: 49<br/></td>
1267
+ <td>April 26th, 2015 10:53</td>
1268
+
1269
+ </tr>
1270
+ <tr>
1271
+ <td ID="immunizations-desc-10">[&quot;Pneumococcal conjugate PCV 13&quot;]</td>
1272
+ <td ID="immunizations-code-10">CVX: 133<br/></td>
1273
+ <td>April 26th, 2015 10:53</td>
1274
+
1275
+ </tr>
1276
+ <tr>
1277
+ <td ID="immunizations-desc-11">[&quot;IPV&quot;]</td>
1278
+ <td ID="immunizations-code-11">CVX: 10<br/></td>
1279
+ <td>April 26th, 2015 10:53</td>
1280
+
1281
+ </tr>
1282
+ <tr>
1283
+ <td ID="immunizations-desc-12">[&quot;Hep B, adolescent or pediatric&quot;]</td>
1284
+ <td ID="immunizations-code-12">CVX: 08<br/></td>
1285
+ <td>July 15th, 2015 10:34</td>
1286
+
1287
+ </tr>
1288
+ <tr>
1289
+ <td ID="immunizations-desc-13">[&quot;DTaP&quot;]</td>
1290
+ <td ID="immunizations-code-13">CVX: 20<br/></td>
1291
+ <td>July 15th, 2015 10:34</td>
1292
+
1293
+ </tr>
1294
+ <tr>
1295
+ <td ID="immunizations-desc-14">[&quot;Pneumococcal conjugate PCV 13&quot;]</td>
1296
+ <td ID="immunizations-code-14">CVX: 133<br/></td>
1297
+ <td>July 15th, 2015 10:34</td>
1298
+
1299
+ </tr>
1300
+ <tr>
1301
+ <td ID="immunizations-desc-15">[&quot;IPV&quot;]</td>
1302
+ <td ID="immunizations-code-15">CVX: 10<br/></td>
1303
+ <td>July 15th, 2015 10:34</td>
1304
+
1305
+ </tr>
1306
+ <tr>
1307
+ <td ID="immunizations-desc-16">[&quot;Influenza, seasonal, injectable, preservative free&quot;]</td>
1308
+ <td ID="immunizations-code-16">CVX: 140<br/></td>
1309
+ <td>July 15th, 2015 10:34</td>
1310
+
1311
+ </tr>
1312
+ <tr>
1313
+ <td ID="immunizations-desc-17">[&quot;Hib (PRP-OMP)&quot;]</td>
1314
+ <td ID="immunizations-code-17">CVX: 49<br/></td>
1315
+ <td>January 29th, 2016 22:59</td>
1316
+
1317
+ </tr>
1318
+ <tr>
1319
+ <td ID="immunizations-desc-18">[&quot;Pneumococcal conjugate PCV 13&quot;]</td>
1320
+ <td ID="immunizations-code-18">CVX: 133<br/></td>
1321
+ <td>January 29th, 2016 22:59</td>
1322
+
1323
+ </tr>
1324
+ <tr>
1325
+ <td ID="immunizations-desc-19">[&quot;MMR&quot;]</td>
1326
+ <td ID="immunizations-code-19">CVX: 03<br/></td>
1327
+ <td>January 29th, 2016 22:59</td>
1328
+
1329
+ </tr>
1330
+ <tr>
1331
+ <td ID="immunizations-desc-20">[&quot;varicella&quot;]</td>
1332
+ <td ID="immunizations-code-20">CVX: 21<br/></td>
1333
+ <td>January 29th, 2016 22:59</td>
1334
+
1335
+ </tr>
1336
+ <tr>
1337
+ <td ID="immunizations-desc-21">[&quot;Hep A, ped/adol, 2 dose&quot;]</td>
1338
+ <td ID="immunizations-code-21">CVX: 83<br/></td>
1339
+ <td>January 29th, 2016 22:59</td>
1340
+
1341
+ </tr>
1342
+ <tr>
1343
+ <td ID="immunizations-desc-22">[&quot;DTaP&quot;]</td>
1344
+ <td ID="immunizations-code-22">CVX: 20<br/></td>
1345
+ <td>May 5th, 2016 02:23</td>
1346
+
1347
+ </tr>
1348
+ </tbody>
1349
+ </table>
1350
+ </text>
1351
+ <entry typeCode="DRIV">
1352
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1353
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1354
+ <!-- Medication activity template -->
1355
+ <id root="650dfbb0-3fd2-0134-416c-60f81dc2d82a"/>
1356
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1357
+ <text>
1358
+ <reference value="#immunizations-desc-0"/>
1359
+ </text>
1360
+ <statusCode code="completed"/>
1361
+ <effectiveTime value='20141118211120'/>
1362
+ <doseQuantity nullFlavor="UNK"/>
1363
+ <consumable>
1364
+ <manufacturedProduct classCode="MANU">
1365
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1366
+ <!-- Product template -->
1367
+ <manufacturedMaterial>
1368
+ <code code="08" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hep B, adolescent or pediatric&quot;]">
1369
+ <originalText><reference value="#immunizations-desc-0"/></originalText>
1370
+ </code>
1371
+
1372
+ <name>[&quot;Hep B, adolescent or pediatric&quot;]</name>
1373
+ </manufacturedMaterial>
1374
+ </manufacturedProduct>
1375
+ </consumable>
1376
+ </substanceAdministration>
1377
+ </entry>
1378
+ <entry typeCode="DRIV">
1379
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1380
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1381
+ <!-- Medication activity template -->
1382
+ <id root="650e0b20-3fd2-0134-416c-60f81dc2d82a"/>
1383
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1384
+ <text>
1385
+ <reference value="#immunizations-desc-1"/>
1386
+ </text>
1387
+ <statusCode code="completed"/>
1388
+ <effectiveTime value='20141231235543'/>
1389
+ <doseQuantity nullFlavor="UNK"/>
1390
+ <consumable>
1391
+ <manufacturedProduct classCode="MANU">
1392
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1393
+ <!-- Product template -->
1394
+ <manufacturedMaterial>
1395
+ <code code="08" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hep B, adolescent or pediatric&quot;]">
1396
+ <originalText><reference value="#immunizations-desc-1"/></originalText>
1397
+ </code>
1398
+
1399
+ <name>[&quot;Hep B, adolescent or pediatric&quot;]</name>
1400
+ </manufacturedMaterial>
1401
+ </manufacturedProduct>
1402
+ </consumable>
1403
+ </substanceAdministration>
1404
+ </entry>
1405
+ <entry typeCode="DRIV">
1406
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1407
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1408
+ <!-- Medication activity template -->
1409
+ <id root="650e1640-3fd2-0134-416c-60f81dc2d82a"/>
1410
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1411
+ <text>
1412
+ <reference value="#immunizations-desc-2"/>
1413
+ </text>
1414
+ <statusCode code="completed"/>
1415
+ <effectiveTime value='20150211091442'/>
1416
+ <doseQuantity nullFlavor="UNK"/>
1417
+ <consumable>
1418
+ <manufacturedProduct classCode="MANU">
1419
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1420
+ <!-- Product template -->
1421
+ <manufacturedMaterial>
1422
+ <code code="119" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;rotavirus, monovalent&quot;]">
1423
+ <originalText><reference value="#immunizations-desc-2"/></originalText>
1424
+ </code>
1425
+
1426
+ <name>[&quot;rotavirus, monovalent&quot;]</name>
1427
+ </manufacturedMaterial>
1428
+ </manufacturedProduct>
1429
+ </consumable>
1430
+ </substanceAdministration>
1431
+ </entry>
1432
+ <entry typeCode="DRIV">
1433
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1434
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1435
+ <!-- Medication activity template -->
1436
+ <id root="650e20f0-3fd2-0134-416c-60f81dc2d82a"/>
1437
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1438
+ <text>
1439
+ <reference value="#immunizations-desc-3"/>
1440
+ </text>
1441
+ <statusCode code="completed"/>
1442
+ <effectiveTime value='20150211091442'/>
1443
+ <doseQuantity nullFlavor="UNK"/>
1444
+ <consumable>
1445
+ <manufacturedProduct classCode="MANU">
1446
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1447
+ <!-- Product template -->
1448
+ <manufacturedMaterial>
1449
+ <code code="20" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;DTaP&quot;]">
1450
+ <originalText><reference value="#immunizations-desc-3"/></originalText>
1451
+ </code>
1452
+
1453
+ <name>[&quot;DTaP&quot;]</name>
1454
+ </manufacturedMaterial>
1455
+ </manufacturedProduct>
1456
+ </consumable>
1457
+ </substanceAdministration>
1458
+ </entry>
1459
+ <entry typeCode="DRIV">
1460
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1461
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1462
+ <!-- Medication activity template -->
1463
+ <id root="650e3320-3fd2-0134-416c-60f81dc2d82a"/>
1464
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1465
+ <text>
1466
+ <reference value="#immunizations-desc-4"/>
1467
+ </text>
1468
+ <statusCode code="completed"/>
1469
+ <effectiveTime value='20150211091442'/>
1470
+ <doseQuantity nullFlavor="UNK"/>
1471
+ <consumable>
1472
+ <manufacturedProduct classCode="MANU">
1473
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1474
+ <!-- Product template -->
1475
+ <manufacturedMaterial>
1476
+ <code code="49" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hib (PRP-OMP)&quot;]">
1477
+ <originalText><reference value="#immunizations-desc-4"/></originalText>
1478
+ </code>
1479
+
1480
+ <name>[&quot;Hib (PRP-OMP)&quot;]</name>
1481
+ </manufacturedMaterial>
1482
+ </manufacturedProduct>
1483
+ </consumable>
1484
+ </substanceAdministration>
1485
+ </entry>
1486
+ <entry typeCode="DRIV">
1487
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1488
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1489
+ <!-- Medication activity template -->
1490
+ <id root="650e3fe0-3fd2-0134-416c-60f81dc2d82a"/>
1491
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1492
+ <text>
1493
+ <reference value="#immunizations-desc-5"/>
1494
+ </text>
1495
+ <statusCode code="completed"/>
1496
+ <effectiveTime value='20150211091442'/>
1497
+ <doseQuantity nullFlavor="UNK"/>
1498
+ <consumable>
1499
+ <manufacturedProduct classCode="MANU">
1500
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1501
+ <!-- Product template -->
1502
+ <manufacturedMaterial>
1503
+ <code code="133" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Pneumococcal conjugate PCV 13&quot;]">
1504
+ <originalText><reference value="#immunizations-desc-5"/></originalText>
1505
+ </code>
1506
+
1507
+ <name>[&quot;Pneumococcal conjugate PCV 13&quot;]</name>
1508
+ </manufacturedMaterial>
1509
+ </manufacturedProduct>
1510
+ </consumable>
1511
+ </substanceAdministration>
1512
+ </entry>
1513
+ <entry typeCode="DRIV">
1514
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1515
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1516
+ <!-- Medication activity template -->
1517
+ <id root="650e4ae0-3fd2-0134-416c-60f81dc2d82a"/>
1518
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1519
+ <text>
1520
+ <reference value="#immunizations-desc-6"/>
1521
+ </text>
1522
+ <statusCode code="completed"/>
1523
+ <effectiveTime value='20150211091442'/>
1524
+ <doseQuantity nullFlavor="UNK"/>
1525
+ <consumable>
1526
+ <manufacturedProduct classCode="MANU">
1527
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1528
+ <!-- Product template -->
1529
+ <manufacturedMaterial>
1530
+ <code code="10" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;IPV&quot;]">
1531
+ <originalText><reference value="#immunizations-desc-6"/></originalText>
1532
+ </code>
1533
+
1534
+ <name>[&quot;IPV&quot;]</name>
1535
+ </manufacturedMaterial>
1536
+ </manufacturedProduct>
1537
+ </consumable>
1538
+ </substanceAdministration>
1539
+ </entry>
1540
+ <entry typeCode="DRIV">
1541
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1542
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1543
+ <!-- Medication activity template -->
1544
+ <id root="650e55e0-3fd2-0134-416c-60f81dc2d82a"/>
1545
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1546
+ <text>
1547
+ <reference value="#immunizations-desc-7"/>
1548
+ </text>
1549
+ <statusCode code="completed"/>
1550
+ <effectiveTime value='20150426105335'/>
1551
+ <doseQuantity nullFlavor="UNK"/>
1552
+ <consumable>
1553
+ <manufacturedProduct classCode="MANU">
1554
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1555
+ <!-- Product template -->
1556
+ <manufacturedMaterial>
1557
+ <code code="119" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;rotavirus, monovalent&quot;]">
1558
+ <originalText><reference value="#immunizations-desc-7"/></originalText>
1559
+ </code>
1560
+
1561
+ <name>[&quot;rotavirus, monovalent&quot;]</name>
1562
+ </manufacturedMaterial>
1563
+ </manufacturedProduct>
1564
+ </consumable>
1565
+ </substanceAdministration>
1566
+ </entry>
1567
+ <entry typeCode="DRIV">
1568
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1569
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1570
+ <!-- Medication activity template -->
1571
+ <id root="650e6070-3fd2-0134-416c-60f81dc2d82a"/>
1572
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1573
+ <text>
1574
+ <reference value="#immunizations-desc-8"/>
1575
+ </text>
1576
+ <statusCode code="completed"/>
1577
+ <effectiveTime value='20150426105335'/>
1578
+ <doseQuantity nullFlavor="UNK"/>
1579
+ <consumable>
1580
+ <manufacturedProduct classCode="MANU">
1581
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1582
+ <!-- Product template -->
1583
+ <manufacturedMaterial>
1584
+ <code code="20" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;DTaP&quot;]">
1585
+ <originalText><reference value="#immunizations-desc-8"/></originalText>
1586
+ </code>
1587
+
1588
+ <name>[&quot;DTaP&quot;]</name>
1589
+ </manufacturedMaterial>
1590
+ </manufacturedProduct>
1591
+ </consumable>
1592
+ </substanceAdministration>
1593
+ </entry>
1594
+ <entry typeCode="DRIV">
1595
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1596
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1597
+ <!-- Medication activity template -->
1598
+ <id root="650e6ae0-3fd2-0134-416c-60f81dc2d82a"/>
1599
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1600
+ <text>
1601
+ <reference value="#immunizations-desc-9"/>
1602
+ </text>
1603
+ <statusCode code="completed"/>
1604
+ <effectiveTime value='20150426105335'/>
1605
+ <doseQuantity nullFlavor="UNK"/>
1606
+ <consumable>
1607
+ <manufacturedProduct classCode="MANU">
1608
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1609
+ <!-- Product template -->
1610
+ <manufacturedMaterial>
1611
+ <code code="49" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hib (PRP-OMP)&quot;]">
1612
+ <originalText><reference value="#immunizations-desc-9"/></originalText>
1613
+ </code>
1614
+
1615
+ <name>[&quot;Hib (PRP-OMP)&quot;]</name>
1616
+ </manufacturedMaterial>
1617
+ </manufacturedProduct>
1618
+ </consumable>
1619
+ </substanceAdministration>
1620
+ </entry>
1621
+ <entry typeCode="DRIV">
1622
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1623
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1624
+ <!-- Medication activity template -->
1625
+ <id root="650e7560-3fd2-0134-416c-60f81dc2d82a"/>
1626
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1627
+ <text>
1628
+ <reference value="#immunizations-desc-10"/>
1629
+ </text>
1630
+ <statusCode code="completed"/>
1631
+ <effectiveTime value='20150426105335'/>
1632
+ <doseQuantity nullFlavor="UNK"/>
1633
+ <consumable>
1634
+ <manufacturedProduct classCode="MANU">
1635
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1636
+ <!-- Product template -->
1637
+ <manufacturedMaterial>
1638
+ <code code="133" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Pneumococcal conjugate PCV 13&quot;]">
1639
+ <originalText><reference value="#immunizations-desc-10"/></originalText>
1640
+ </code>
1641
+
1642
+ <name>[&quot;Pneumococcal conjugate PCV 13&quot;]</name>
1643
+ </manufacturedMaterial>
1644
+ </manufacturedProduct>
1645
+ </consumable>
1646
+ </substanceAdministration>
1647
+ </entry>
1648
+ <entry typeCode="DRIV">
1649
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1650
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1651
+ <!-- Medication activity template -->
1652
+ <id root="650e7fe0-3fd2-0134-416c-60f81dc2d82a"/>
1653
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1654
+ <text>
1655
+ <reference value="#immunizations-desc-11"/>
1656
+ </text>
1657
+ <statusCode code="completed"/>
1658
+ <effectiveTime value='20150426105335'/>
1659
+ <doseQuantity nullFlavor="UNK"/>
1660
+ <consumable>
1661
+ <manufacturedProduct classCode="MANU">
1662
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1663
+ <!-- Product template -->
1664
+ <manufacturedMaterial>
1665
+ <code code="10" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;IPV&quot;]">
1666
+ <originalText><reference value="#immunizations-desc-11"/></originalText>
1667
+ </code>
1668
+
1669
+ <name>[&quot;IPV&quot;]</name>
1670
+ </manufacturedMaterial>
1671
+ </manufacturedProduct>
1672
+ </consumable>
1673
+ </substanceAdministration>
1674
+ </entry>
1675
+ <entry typeCode="DRIV">
1676
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1677
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1678
+ <!-- Medication activity template -->
1679
+ <id root="650e8a50-3fd2-0134-416c-60f81dc2d82a"/>
1680
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1681
+ <text>
1682
+ <reference value="#immunizations-desc-12"/>
1683
+ </text>
1684
+ <statusCode code="completed"/>
1685
+ <effectiveTime value='20150715103402'/>
1686
+ <doseQuantity nullFlavor="UNK"/>
1687
+ <consumable>
1688
+ <manufacturedProduct classCode="MANU">
1689
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1690
+ <!-- Product template -->
1691
+ <manufacturedMaterial>
1692
+ <code code="08" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hep B, adolescent or pediatric&quot;]">
1693
+ <originalText><reference value="#immunizations-desc-12"/></originalText>
1694
+ </code>
1695
+
1696
+ <name>[&quot;Hep B, adolescent or pediatric&quot;]</name>
1697
+ </manufacturedMaterial>
1698
+ </manufacturedProduct>
1699
+ </consumable>
1700
+ </substanceAdministration>
1701
+ </entry>
1702
+ <entry typeCode="DRIV">
1703
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1704
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1705
+ <!-- Medication activity template -->
1706
+ <id root="650e9560-3fd2-0134-416c-60f81dc2d82a"/>
1707
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1708
+ <text>
1709
+ <reference value="#immunizations-desc-13"/>
1710
+ </text>
1711
+ <statusCode code="completed"/>
1712
+ <effectiveTime value='20150715103402'/>
1713
+ <doseQuantity nullFlavor="UNK"/>
1714
+ <consumable>
1715
+ <manufacturedProduct classCode="MANU">
1716
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1717
+ <!-- Product template -->
1718
+ <manufacturedMaterial>
1719
+ <code code="20" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;DTaP&quot;]">
1720
+ <originalText><reference value="#immunizations-desc-13"/></originalText>
1721
+ </code>
1722
+
1723
+ <name>[&quot;DTaP&quot;]</name>
1724
+ </manufacturedMaterial>
1725
+ </manufacturedProduct>
1726
+ </consumable>
1727
+ </substanceAdministration>
1728
+ </entry>
1729
+ <entry typeCode="DRIV">
1730
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1731
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1732
+ <!-- Medication activity template -->
1733
+ <id root="650ea170-3fd2-0134-416c-60f81dc2d82a"/>
1734
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1735
+ <text>
1736
+ <reference value="#immunizations-desc-14"/>
1737
+ </text>
1738
+ <statusCode code="completed"/>
1739
+ <effectiveTime value='20150715103402'/>
1740
+ <doseQuantity nullFlavor="UNK"/>
1741
+ <consumable>
1742
+ <manufacturedProduct classCode="MANU">
1743
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1744
+ <!-- Product template -->
1745
+ <manufacturedMaterial>
1746
+ <code code="133" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Pneumococcal conjugate PCV 13&quot;]">
1747
+ <originalText><reference value="#immunizations-desc-14"/></originalText>
1748
+ </code>
1749
+
1750
+ <name>[&quot;Pneumococcal conjugate PCV 13&quot;]</name>
1751
+ </manufacturedMaterial>
1752
+ </manufacturedProduct>
1753
+ </consumable>
1754
+ </substanceAdministration>
1755
+ </entry>
1756
+ <entry typeCode="DRIV">
1757
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1758
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1759
+ <!-- Medication activity template -->
1760
+ <id root="650ead70-3fd2-0134-416c-60f81dc2d82a"/>
1761
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1762
+ <text>
1763
+ <reference value="#immunizations-desc-15"/>
1764
+ </text>
1765
+ <statusCode code="completed"/>
1766
+ <effectiveTime value='20150715103402'/>
1767
+ <doseQuantity nullFlavor="UNK"/>
1768
+ <consumable>
1769
+ <manufacturedProduct classCode="MANU">
1770
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1771
+ <!-- Product template -->
1772
+ <manufacturedMaterial>
1773
+ <code code="10" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;IPV&quot;]">
1774
+ <originalText><reference value="#immunizations-desc-15"/></originalText>
1775
+ </code>
1776
+
1777
+ <name>[&quot;IPV&quot;]</name>
1778
+ </manufacturedMaterial>
1779
+ </manufacturedProduct>
1780
+ </consumable>
1781
+ </substanceAdministration>
1782
+ </entry>
1783
+ <entry typeCode="DRIV">
1784
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1785
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1786
+ <!-- Medication activity template -->
1787
+ <id root="650eb980-3fd2-0134-416c-60f81dc2d82a"/>
1788
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1789
+ <text>
1790
+ <reference value="#immunizations-desc-16"/>
1791
+ </text>
1792
+ <statusCode code="completed"/>
1793
+ <effectiveTime value='20150715103402'/>
1794
+ <doseQuantity nullFlavor="UNK"/>
1795
+ <consumable>
1796
+ <manufacturedProduct classCode="MANU">
1797
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1798
+ <!-- Product template -->
1799
+ <manufacturedMaterial>
1800
+ <code code="140" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Influenza, seasonal, injectable, preservative free&quot;]">
1801
+ <originalText><reference value="#immunizations-desc-16"/></originalText>
1802
+ </code>
1803
+
1804
+ <name>[&quot;Influenza, seasonal, injectable, preservative free&quot;]</name>
1805
+ </manufacturedMaterial>
1806
+ </manufacturedProduct>
1807
+ </consumable>
1808
+ </substanceAdministration>
1809
+ </entry>
1810
+ <entry typeCode="DRIV">
1811
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1812
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1813
+ <!-- Medication activity template -->
1814
+ <id root="650ec4d0-3fd2-0134-416c-60f81dc2d82a"/>
1815
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1816
+ <text>
1817
+ <reference value="#immunizations-desc-17"/>
1818
+ </text>
1819
+ <statusCode code="completed"/>
1820
+ <effectiveTime value='20160129225910'/>
1821
+ <doseQuantity nullFlavor="UNK"/>
1822
+ <consumable>
1823
+ <manufacturedProduct classCode="MANU">
1824
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1825
+ <!-- Product template -->
1826
+ <manufacturedMaterial>
1827
+ <code code="49" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hib (PRP-OMP)&quot;]">
1828
+ <originalText><reference value="#immunizations-desc-17"/></originalText>
1829
+ </code>
1830
+
1831
+ <name>[&quot;Hib (PRP-OMP)&quot;]</name>
1832
+ </manufacturedMaterial>
1833
+ </manufacturedProduct>
1834
+ </consumable>
1835
+ </substanceAdministration>
1836
+ </entry>
1837
+ <entry typeCode="DRIV">
1838
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1839
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1840
+ <!-- Medication activity template -->
1841
+ <id root="650ecf50-3fd2-0134-416c-60f81dc2d82a"/>
1842
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1843
+ <text>
1844
+ <reference value="#immunizations-desc-18"/>
1845
+ </text>
1846
+ <statusCode code="completed"/>
1847
+ <effectiveTime value='20160129225910'/>
1848
+ <doseQuantity nullFlavor="UNK"/>
1849
+ <consumable>
1850
+ <manufacturedProduct classCode="MANU">
1851
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1852
+ <!-- Product template -->
1853
+ <manufacturedMaterial>
1854
+ <code code="133" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Pneumococcal conjugate PCV 13&quot;]">
1855
+ <originalText><reference value="#immunizations-desc-18"/></originalText>
1856
+ </code>
1857
+
1858
+ <name>[&quot;Pneumococcal conjugate PCV 13&quot;]</name>
1859
+ </manufacturedMaterial>
1860
+ </manufacturedProduct>
1861
+ </consumable>
1862
+ </substanceAdministration>
1863
+ </entry>
1864
+ <entry typeCode="DRIV">
1865
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1866
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1867
+ <!-- Medication activity template -->
1868
+ <id root="650ed9b0-3fd2-0134-416c-60f81dc2d82a"/>
1869
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1870
+ <text>
1871
+ <reference value="#immunizations-desc-19"/>
1872
+ </text>
1873
+ <statusCode code="completed"/>
1874
+ <effectiveTime value='20160129225910'/>
1875
+ <doseQuantity nullFlavor="UNK"/>
1876
+ <consumable>
1877
+ <manufacturedProduct classCode="MANU">
1878
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1879
+ <!-- Product template -->
1880
+ <manufacturedMaterial>
1881
+ <code code="03" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;MMR&quot;]">
1882
+ <originalText><reference value="#immunizations-desc-19"/></originalText>
1883
+ </code>
1884
+
1885
+ <name>[&quot;MMR&quot;]</name>
1886
+ </manufacturedMaterial>
1887
+ </manufacturedProduct>
1888
+ </consumable>
1889
+ </substanceAdministration>
1890
+ </entry>
1891
+ <entry typeCode="DRIV">
1892
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1893
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1894
+ <!-- Medication activity template -->
1895
+ <id root="650ee560-3fd2-0134-416c-60f81dc2d82a"/>
1896
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1897
+ <text>
1898
+ <reference value="#immunizations-desc-20"/>
1899
+ </text>
1900
+ <statusCode code="completed"/>
1901
+ <effectiveTime value='20160129225910'/>
1902
+ <doseQuantity nullFlavor="UNK"/>
1903
+ <consumable>
1904
+ <manufacturedProduct classCode="MANU">
1905
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1906
+ <!-- Product template -->
1907
+ <manufacturedMaterial>
1908
+ <code code="21" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;varicella&quot;]">
1909
+ <originalText><reference value="#immunizations-desc-20"/></originalText>
1910
+ </code>
1911
+
1912
+ <name>[&quot;varicella&quot;]</name>
1913
+ </manufacturedMaterial>
1914
+ </manufacturedProduct>
1915
+ </consumable>
1916
+ </substanceAdministration>
1917
+ </entry>
1918
+ <entry typeCode="DRIV">
1919
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1920
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1921
+ <!-- Medication activity template -->
1922
+ <id root="650ef6f0-3fd2-0134-416c-60f81dc2d82a"/>
1923
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1924
+ <text>
1925
+ <reference value="#immunizations-desc-21"/>
1926
+ </text>
1927
+ <statusCode code="completed"/>
1928
+ <effectiveTime value='20160129225910'/>
1929
+ <doseQuantity nullFlavor="UNK"/>
1930
+ <consumable>
1931
+ <manufacturedProduct classCode="MANU">
1932
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1933
+ <!-- Product template -->
1934
+ <manufacturedMaterial>
1935
+ <code code="83" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;Hep A, ped/adol, 2 dose&quot;]">
1936
+ <originalText><reference value="#immunizations-desc-21"/></originalText>
1937
+ </code>
1938
+
1939
+ <name>[&quot;Hep A, ped/adol, 2 dose&quot;]</name>
1940
+ </manufacturedMaterial>
1941
+ </manufacturedProduct>
1942
+ </consumable>
1943
+ </substanceAdministration>
1944
+ </entry>
1945
+ <entry typeCode="DRIV">
1946
+ <substanceAdministration classCode="SBADM" moodCode="EVN" negationInd="false">
1947
+ <templateId root="2.16.840.1.113883.10.20.22.4.52"/>
1948
+ <!-- Medication activity template -->
1949
+ <id root="650f01f0-3fd2-0134-416c-60f81dc2d82a"/>
1950
+ <code code='IMMUNIZ' codeSystem='2.16.840.1.113883.5.4' codeSystemName='ActCode'/>
1951
+ <text>
1952
+ <reference value="#immunizations-desc-22"/>
1953
+ </text>
1954
+ <statusCode code="completed"/>
1955
+ <effectiveTime value='20160505022358'/>
1956
+ <doseQuantity nullFlavor="UNK"/>
1957
+ <consumable>
1958
+ <manufacturedProduct classCode="MANU">
1959
+ <templateId root="2.16.840.1.113883.10.20.22.4.54"/>
1960
+ <!-- Product template -->
1961
+ <manufacturedMaterial>
1962
+ <code code="20" codeSystem="2.16.840.1.113883.12.292" displayName="[&quot;DTaP&quot;]">
1963
+ <originalText><reference value="#immunizations-desc-22"/></originalText>
1964
+ </code>
1965
+
1966
+ <name>[&quot;DTaP&quot;]</name>
1967
+ </manufacturedMaterial>
1968
+ </manufacturedProduct>
1969
+ </consumable>
1970
+ </substanceAdministration>
1971
+ </entry>
1972
+ </section>
1973
+ </component>
1974
+ </structuredBody>
1975
+ </component>
1976
+ </ClinicalDocument>