cancer_registry_reporting_test_kit 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (262) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +201 -0
  3. data/config/presets/hdea_report_preset.json +14 -0
  4. data/config/presets/inferno_reference_server_preset.json.erb +84 -0
  5. data/lib/cancer_registry_reporting_test_kit/bundle_parse.rb +161 -0
  6. data/lib/cancer_registry_reporting_test_kit/docs/ehr_suite_description.md +134 -0
  7. data/lib/cancer_registry_reporting_test_kit/docs/hdea_suite_description.md +108 -0
  8. data/lib/cancer_registry_reporting_test_kit/ehr_suite/ehr_capability_statement/mcode_capability_statement_profile_support.rb +40 -0
  9. data/lib/cancer_registry_reporting_test_kit/ehr_suite/ehr_data_access_group.rb +131 -0
  10. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_must_support_test.rb +43 -0
  11. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_search_test.rb +51 -0
  12. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/medication_administration_validation_test.rb +41 -0
  13. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration/metadata.yml +72 -0
  14. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_administration_group.rb +72 -0
  15. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_must_support_test.rb +55 -0
  16. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_search_test.rb +55 -0
  17. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/medication_request_validation_test.rb +38 -0
  18. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request/metadata.yml +94 -0
  19. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/medication_request_group.rb +73 -0
  20. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_cancer_condition_group.rb +73 -0
  21. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/metadata.yml +100 -0
  22. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_must_support_test.rb +50 -0
  23. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_search_test.rb +70 -0
  24. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/primary_condition/primary_cancer_condition_validation_test.rb +39 -0
  25. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/metadata.yml +99 -0
  26. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_must_support_test.rb +46 -0
  27. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_search_test.rb +51 -0
  28. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure/radiotherapy_procedure_validation_test.rb +37 -0
  29. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/radiotherapy_procedure_group.rb +83 -0
  30. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_cancer_condition_group.rb +68 -0
  31. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/metadata.yml +102 -0
  32. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_must_support_test.rb +50 -0
  33. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_search_test.rb +70 -0
  34. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/secondary_condition/secondary_cancer_condition_validation_test.rb +39 -0
  35. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/metadata.yml +65 -0
  36. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_must_support_test.rb +44 -0
  37. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_search_test.rb +69 -0
  38. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category/tnm_distant_metastases_category_validation_test.rb +39 -0
  39. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_distant_metastases_category_group.rb +74 -0
  40. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/metadata.yml +64 -0
  41. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_must_support_test.rb +44 -0
  42. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_search_test.rb +69 -0
  43. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category/tnm_primary_tumor_category_validation_test.rb +39 -0
  44. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_primary_tumor_category_group.rb +73 -0
  45. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/metadata.yml +64 -0
  46. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_must_support_test.rb +44 -0
  47. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_search_test.rb +69 -0
  48. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category/tnm_regional_nodes_category_validation_test.rb +39 -0
  49. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_regional_nodes_category_group.rb +73 -0
  50. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/metadata.yml +68 -0
  51. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_must_support_test.rb +45 -0
  52. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_search_test.rb +69 -0
  53. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group/tnm_stage_group_validation_test.rb +39 -0
  54. data/lib/cancer_registry_reporting_test_kit/ehr_suite/mcode_data_access_resources/tnm_stage_group_group.rb +72 -0
  55. data/lib/cancer_registry_reporting_test_kit/ehr_suite.rb +69 -0
  56. data/lib/cancer_registry_reporting_test_kit/fhir_resource_navigation.rb +174 -0
  57. data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_generator.rb +47 -0
  58. data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_metadata.rb +86 -0
  59. data/lib/cancer_registry_reporting_test_kit/hdea_generator/group_metadata_extractor.rb +205 -0
  60. data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_loader.rb +78 -0
  61. data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_metadata.rb +26 -0
  62. data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_metadata_extractor.rb +78 -0
  63. data/lib/cancer_registry_reporting_test_kit/hdea_generator/ig_resources.rb +56 -0
  64. data/lib/cancer_registry_reporting_test_kit/hdea_generator/must_support_metadata_extractor.rb +399 -0
  65. data/lib/cancer_registry_reporting_test_kit/hdea_generator/must_support_test_generator.rb +134 -0
  66. data/lib/cancer_registry_reporting_test_kit/hdea_generator/naming.rb +168 -0
  67. data/lib/cancer_registry_reporting_test_kit/hdea_generator/special_cases.rb +43 -0
  68. data/lib/cancer_registry_reporting_test_kit/hdea_generator/templates/must_support.rb.erb +41 -0
  69. data/lib/cancer_registry_reporting_test_kit/hdea_generator/templates/validation.rb.erb +35 -0
  70. data/lib/cancer_registry_reporting_test_kit/hdea_generator/terminology_binding_metadata_extractor.rb +118 -0
  71. data/lib/cancer_registry_reporting_test_kit/hdea_generator/validation_test_generator.rb +125 -0
  72. data/lib/cancer_registry_reporting_test_kit/hdea_generator/value_extractor.rb +134 -0
  73. data/lib/cancer_registry_reporting_test_kit/hdea_generator.rb +66 -0
  74. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/author_validation_test.rb +61 -0
  75. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/organization_metadata.yml +47 -0
  76. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/organization_must_support_test.rb +73 -0
  77. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_metadata.yml +51 -0
  78. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_must_support_test.rb +73 -0
  79. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_role_metadata.yml +48 -0
  80. data/lib/cancer_registry_reporting_test_kit/hdea_suite/author/practitioner_role_must_support_test.rb +66 -0
  81. data/lib/cancer_registry_reporting_test_kit/hdea_suite/bundle_resources_group.rb +213 -0
  82. data/lib/cancer_registry_reporting_test_kit/hdea_suite/ccrr_content_bundle_parse_and_validation_test.rb +67 -0
  83. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/allergy_intolerance_must_support_test.rb +46 -0
  84. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/allergy_intolerance_validation_test.rb +35 -0
  85. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/allergy_intolerance/metadata.yml +36 -0
  86. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/care_plan_must_support_test.rb +48 -0
  87. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/care_plan_validation_test.rb +35 -0
  88. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/care_plan/metadata.yml +50 -0
  89. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/ccrr_content_bundle/ccrr_content_bundle_must_support_test.rb +43 -0
  90. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/ccrr_content_bundle/metadata.yml +36 -0
  91. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/central_cancer_registry_primary_cancer_condition_must_support_test.rb +59 -0
  92. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/central_cancer_registry_primary_cancer_condition_validation_test.rb +35 -0
  93. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/central_cancer_registry_primary_cancer_condition/metadata.yml +86 -0
  94. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/composition_must_support_test.rb +109 -0
  95. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/composition_validation_test.rb +35 -0
  96. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/composition/metadata.yml +272 -0
  97. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/condition_must_support_test.rb +45 -0
  98. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/condition_validation_test.rb +35 -0
  99. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/condition/metadata.yml +33 -0
  100. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/diagnostic_report_lab_must_support_test.rb +49 -0
  101. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/diagnostic_report_lab_validation_test.rb +35 -0
  102. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_lab/metadata.yml +57 -0
  103. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/diagnostic_report_note_must_support_test.rb +53 -0
  104. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/diagnostic_report_note_validation_test.rb +35 -0
  105. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/diagnostic_report_note/metadata.yml +75 -0
  106. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/document_reference_must_support_test.rb +57 -0
  107. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/document_reference_validation_test.rb +35 -0
  108. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/document_reference/metadata.yml +68 -0
  109. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/encounter_must_support_test.rb +59 -0
  110. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/encounter_validation_test.rb +35 -0
  111. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/encounter/metadata.yml +73 -0
  112. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/mcode_radiotherapy_course_summary_must_support_test.rb +52 -0
  113. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/mcode_radiotherapy_course_summary_validation_test.rb +35 -0
  114. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_radiotherapy_course_summary/metadata.yml +59 -0
  115. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/mcode_secondary_cancer_condition_must_support_test.rb +56 -0
  116. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/mcode_secondary_cancer_condition_validation_test.rb +35 -0
  117. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_secondary_cancer_condition/metadata.yml +77 -0
  118. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/mcode_tnm_stage_group_must_support_test.rb +48 -0
  119. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/mcode_tnm_stage_group_validation_test.rb +35 -0
  120. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/mcode_tnm_stage_group/metadata.yml +46 -0
  121. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/medication_must_support_test.rb +41 -0
  122. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/medication_validation_test.rb +35 -0
  123. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication/metadata.yml +26 -0
  124. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/medication_administration_must_support_test.rb +48 -0
  125. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/medication_administration_validation_test.rb +35 -0
  126. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_administration/metadata.yml +48 -0
  127. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/medication_request_must_support_test.rb +57 -0
  128. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/medication_request_validation_test.rb +35 -0
  129. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_request/metadata.yml +86 -0
  130. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/medication_statement_must_support_test.rb +41 -0
  131. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/medication_statement_validation_test.rb +35 -0
  132. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/medication_statement/metadata.yml +26 -0
  133. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/metadata.yml +26 -0
  134. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/observation_must_support_test.rb +41 -0
  135. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation/observation_validation_test.rb +35 -0
  136. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/metadata.yml +53 -0
  137. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/observation_lab_must_support_test.rb +50 -0
  138. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/observation_lab/observation_lab_validation_test.rb +35 -0
  139. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/metadata.yml +81 -0
  140. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/odh_usual_work_must_support_test.rb +49 -0
  141. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/odh_usual_work/odh_usual_work_validation_test.rb +35 -0
  142. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/metadata.yml +46 -0
  143. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/organization_must_support_test.rb +55 -0
  144. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/organization/organization_validation_test.rb +35 -0
  145. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/metadata.yml +51 -0
  146. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/patient_must_support_test.rb +58 -0
  147. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/patient/patient_validation_test.rb +35 -0
  148. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/metadata.yml +50 -0
  149. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/practitioner_must_support_test.rb +55 -0
  150. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner/practitioner_validation_test.rb +35 -0
  151. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/metadata.yml +47 -0
  152. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/practitioner_role_must_support_test.rb +49 -0
  153. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/practitioner_role/practitioner_role_validation_test.rb +35 -0
  154. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/metadata.yml +37 -0
  155. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/procedure_must_support_test.rb +44 -0
  156. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/procedure/procedure_validation_test.rb +35 -0
  157. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/metadata.yml +26 -0
  158. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/service_request_must_support_test.rb +41 -0
  159. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/service_request/service_request_validation_test.rb +35 -0
  160. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/metadata.yml +58 -0
  161. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/smokingstatus_must_support_test.rb +47 -0
  162. data/lib/cancer_registry_reporting_test_kit/hdea_suite/generated/v1.0.0/smokingstatus/smokingstatus_validation_test.rb +35 -0
  163. data/lib/cancer_registry_reporting_test_kit/hdea_suite.rb +80 -0
  164. data/lib/cancer_registry_reporting_test_kit/igs/README.md +21 -0
  165. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-cancer-related-medication-administration.json +1905 -0
  166. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-cancer-related-medication-request.json +3611 -0
  167. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-primary-cancer-condition.json +2246 -0
  168. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-radiotherapy-course-summary.json +2700 -0
  169. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-secondary-cancer-condition.json +2419 -0
  170. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-distant-metastases-category.json +2320 -0
  171. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-primary-tumor-category.json +2320 -0
  172. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-regional-nodes-category.json +2320 -0
  173. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-mcode-tnm-stage-group.json +2414 -0
  174. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-medicationstatement.profile.json +1578 -0
  175. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-observation.profile.json +3510 -0
  176. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-odh-UsualWork.json +7248 -0
  177. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-servicerequest.profile.json +3048 -0
  178. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-allergyintolerance.json +1842 -0
  179. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-careplan.json +1 -0
  180. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-condition.json +2154 -0
  181. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-diagnosticreport-lab.json +2002 -0
  182. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-diagnosticreport-note.json +2049 -0
  183. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-documentreference.json +1 -0
  184. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-encounter.json +1 -0
  185. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-medication.json +1 -0
  186. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-observation-lab.json +3153 -0
  187. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-organization.json +1 -0
  188. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-patient.json +1 -0
  189. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-practitioner.json +1 -0
  190. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-practitionerrole.json +1 -0
  191. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-procedure.json +1 -0
  192. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100/StructureDefinition-us-core-smokingstatus.json +1 -0
  193. data/lib/cancer_registry_reporting_test_kit/igs/ccrr_v100.tgz +0 -0
  194. data/lib/cancer_registry_reporting_test_kit/igs/package/.index.db +0 -0
  195. data/lib/cancer_registry_reporting_test_kit/igs/package/.index.json +4 -0
  196. data/lib/cancer_registry_reporting_test_kit/igs/package/CapabilityStatement-central-cancer-registry-reporting-ehr.json +1 -0
  197. data/lib/cancer_registry_reporting_test_kit/igs/package/ImplementationGuide-hl7.fhir.us.central-cancer-registry-reporting.json +1 -0
  198. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-cancer-encounter.json +1 -0
  199. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-cancer-patient.json +1 -0
  200. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-composition.json +1 -0
  201. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-content-bundle.json +1 -0
  202. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-plandefinition.json +1 -0
  203. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-ccrr-reporting-bundle.json +1 -0
  204. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-central-cancer-registry-primary-cancer-condition.json +1 -0
  205. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-central-cancer-registry-reporting-messageheader.json +1 -0
  206. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-us-ph-patient.json +1 -0
  207. data/lib/cancer_registry_reporting_test_kit/igs/package/StructureDefinition-us-ph-tribal-affiliation-extension.json +1 -0
  208. data/lib/cancer_registry_reporting_test_kit/igs/package/ValueSet-cancer-core-reportability-codes.json +1 -0
  209. data/lib/cancer_registry_reporting_test_kit/igs/package/example/AllergyIntolerance-example.json +1 -0
  210. data/lib/cancer_registry_reporting_test_kit/igs/package/example/BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.json +1 -0
  211. data/lib/cancer_registry_reporting_test_kit/igs/package/example/BodyStructure-jenny-m-chest-wall-treatment-volume.json +1 -0
  212. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-ccrr-content-bundle-example.json +1 -0
  213. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-central-cancer-registry-reporting-specification-bundle-example.json +1 -0
  214. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Bundle-reporting-bundle-example.json +1 -0
  215. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Composition-ccrr-composition-example.json +1 -0
  216. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Condition-primary-cancer-condition-breast.json +1 -0
  217. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Encounter-encounter-cancer-example.json +1 -0
  218. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Endpoint-example-healthcare-endpoint.json +1 -0
  219. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Endpoint-example-ph-endpoint.json +1 -0
  220. data/lib/cancer_registry_reporting_test_kit/igs/package/example/MedicationAdministration-cancer-related-medication-administration-example.json +1 -0
  221. data/lib/cancer_registry_reporting_test_kit/igs/package/example/MessageHeader-messageheader-example-reportheader.json +1 -0
  222. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-cancer-stage-group-example.json +1 -0
  223. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-distant-metastases-category-cM0.json +1 -0
  224. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-primary-tumor-category-cT3.json +1 -0
  225. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Observation-tnm-clinical-regional-nodes-category-cN3.json +1 -0
  226. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Organization-example-healthcare-org.json +1 -0
  227. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Organization-example-pha-org.json +1 -0
  228. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Patient-example.json +1 -0
  229. data/lib/cancer_registry_reporting_test_kit/igs/package/example/PlanDefinition-plandefinition-central-cancer-registry-reporting-example.json +1 -0
  230. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Practitioner-1.json +1 -0
  231. data/lib/cancer_registry_reporting_test_kit/igs/package/example/Procedure-radiotherapy-example.json +1 -0
  232. data/lib/cancer_registry_reporting_test_kit/igs/package/openapi/central-cancer-registry-reporting-ehr.openapi.json +364 -0
  233. data/lib/cancer_registry_reporting_test_kit/igs/package/other/ig-r4.jsonX +1 -0
  234. data/lib/cancer_registry_reporting_test_kit/igs/package/other/spec.internals +293 -0
  235. data/lib/cancer_registry_reporting_test_kit/igs/package/other/validation-oo.json +1 -0
  236. data/lib/cancer_registry_reporting_test_kit/igs/package/other/validation-summary.json +1 -0
  237. data/lib/cancer_registry_reporting_test_kit/igs/package/package.json +30 -0
  238. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-encounter.sch +19 -0
  239. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-cancer-patient.sch +175 -0
  240. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-composition.sch +61 -0
  241. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-content-bundle.sch +12 -0
  242. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-plandefinition.sch +331 -0
  243. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-ccrr-reporting-bundle.sch +12 -0
  244. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-central-cancer-registry-primary-cancer-condition.sch +31 -0
  245. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-central-cancer-registry-reporting-messageheader.sch +27 -0
  246. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-us-ph-patient.sch +217 -0
  247. data/lib/cancer_registry_reporting_test_kit/igs/package/xml/StructureDefinition-us-ph-tribal-affiliation-extension.sch +36 -0
  248. data/lib/cancer_registry_reporting_test_kit/metadata.rb +71 -0
  249. data/lib/cancer_registry_reporting_test_kit/must_support_test.rb +263 -0
  250. data/lib/cancer_registry_reporting_test_kit/primitive_type.rb +7 -0
  251. data/lib/cancer_registry_reporting_test_kit/requirements/cancer-registry-reporting-test-kit_out_of_scope_requirements.csv +77 -0
  252. data/lib/cancer_registry_reporting_test_kit/requirements/cancer-registry-reporting-test-kit_requirements.csv +162 -0
  253. data/lib/cancer_registry_reporting_test_kit/requirements/generated/cancer-registry-reporting-test-kit_requirements_coverage.csv +161 -0
  254. data/lib/cancer_registry_reporting_test_kit/search_test.rb +897 -0
  255. data/lib/cancer_registry_reporting_test_kit/search_test_properties.rb +58 -0
  256. data/lib/cancer_registry_reporting_test_kit/validation_test.rb +68 -0
  257. data/lib/cancer_registry_reporting_test_kit/version.rb +6 -0
  258. data/lib/cancer_registry_reporting_test_kit.rb +6 -0
  259. data/lib/inferno_requirements_tools/ext/inferno_core/runnable.rb +22 -0
  260. data/lib/inferno_requirements_tools/tasks/requirements_coverage.rb +284 -0
  261. data/lib/requirements_config.yaml +22 -0
  262. metadata +341 -0
@@ -0,0 +1,14 @@
1
+ {
2
+ "title": "HDEA Demo Report",
3
+ "id": "hdea_demo",
4
+ "test_suite_id": "ccrr_v100_report_generation",
5
+ "inputs": [
6
+ {
7
+ "name": "reports",
8
+ "description": "A comma-Separated list of one or more FHIR Central Cancer Registry Reporting Content Bundles in JSON format generated by the system under test.",
9
+ "title": "Cancer Reports",
10
+ "type": "textarea",
11
+ "value": "{\n \"resourceType\": \"Bundle\",\n \"id\": \"ccrr-content-bundle-example\",\n \"meta\": {\n \"versionId\": \"1\",\n \"lastUpdated\": \"2020-11-29T02:03:28.045+00:00\",\n \"profile\": [\n \"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-content-bundle\"\n ]\n },\n \"type\": \"collection\",\n \"timestamp\": \"2020-11-20T11:15:33-10:00\",\n \"entry\": [\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/central-cancer-registry-reporting/Composition/ccrr-composition-content-example\",\n \"resource\": {\n \"resourceType\": \"Composition\",\n \"id\": \"ccrr-composition-content-example\",\n \"meta\": {\n \"versionId\": \"23\",\n \"lastUpdated\": \"2021-08-19T22:06:32.441+00:00\",\n \"source\": \"#6i8cijintDjJ8In2\",\n \"profile\": [\n \"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/ccrr-composition\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b> Amy Shaw data for HCS </b></p></div>\"\n },\n \"identifier\": {\n \"value\": \"c03eab8c-11e8-4d0c-ad2a-b385395e27db\"\n },\n \"status\": \"final\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72134-0\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example-Patient\",\n \"display\": \"Amy Shaw\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example-Encounter\",\n \"display\": \"Patient encounter procedure\"\n },\n \"date\": \"2023-01-02T22:13:23Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/example-Practitioner\",\n \"display\": \"Nicholas Joseph\"\n }\n ],\n \"title\": \"Central Cancer Registry Report\",\n \"section\": [\n {\n \"title\": \"Primary Cancer Condition Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"363346000\",\n \"display\": \"Malignant neoplastic disease (disorder)\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Primary Cancer Condition Section</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-breast\"\n }\n ]\n },\n {\n \"title\": \"Secondary Cancer Condition Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"128462008\",\n \"display\": \"Secondary malignant neoplastic disease\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Secondary Cancer Condition Section</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Condition/secondary-cancer-condition-brain-mets\"\n }\n ]\n },\n {\n \"title\": \"Cancer Stage Group section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"21908-9\",\n \"display\": \"Stage group.clinical Cancer\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Cancer Stage Group</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Observation/cancer-stage-group-example\"\n }\n ]\n },\n {\n \"title\": \"Cancer Radio Therapy Course Summary section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1217123003\",\n \"display\": \"Radiotherapy course of treatment\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Cancer Radio Therapy Course Summary</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Procedure/radiotherapy-example\"\n }\n ]\n },\n {\n \"title\": \"Problem section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"11450-4\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Problem</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Condition/example-Condition\"\n }\n ]\n },\n {\n \"title\": \"Allergies Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"48765-2\",\n \"display\": \"Allergies and adverse reactions Document\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Allergy to Sulfonide</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"AllergyIntolerance/example-AllergyIntolerance\"\n }\n ]\n },\n {\n \"title\": \"Medications Administered section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29549-3\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Medications Administered</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"MedicationAdministration/cancer-related-medication-admin-cyclophosphamide-jenny-m\"\n },\n {\n \"reference\": \"Medication/MEDICATION1\"\n }\n ]\n },\n {\n \"title\": \"Medications Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"10160-0\",\n \"display\": \"History of Medication use Narrative\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n Medications section: cancer-related medication </div>\"\n },\n \"entry\": [\n {\n \"reference\": \"MedicationAdministration/cancer-related-medication-admin-cyclophosphamide-jenny-m\"\n },\n {\n \"reference\": \"MedicationStatement/example-MedicationStatement\"\n },\n {\n \"reference\": \"Medication/uscore-med1\"\n }\n ]\n },\n {\n \"title\": \"ODH Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74165-2\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>ODH Narrative</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Observation/observation-odh-usual-work-sample\"\n }\n ]\n },\n {\n \"title\": \"Results Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"30954-2\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Results</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Observation/1-blood-glucose\"\n },\n {\n \"reference\": \"Observation/2-blood-glucose\"\n },\n {\n \"reference\": \"Observation/3-blood-glucose\"\n },\n {\n \"reference\": \"Observation/4-blood-glucose\"\n },\n {\n \"reference\": \"DiagnosticReport/cbc\"\n }\n ]\n },\n {\n \"title\": \"Notes Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"28650-0\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>ODH Narrative</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"DocumentReference/example-DocumentReference\"\n },\n {\n \"reference\": \"DiagnosticReport/note-exchange\"\n }\n ]\n },\n {\n \"title\": \"Plan Of Treatment Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"18776-5\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Plan Of Treatment Narrative</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"MedicationReferences/1\"\n },\n {\n \"reference\": \"MedicationRequest/cancer-related-medication-request-anastrozole-jenny-m\"\n },\n {\n \"reference\": \"MedicationRequest/cancer-related-medication-request-anastrozole-jenny-m1\"\n },\n {\n \"reference\": \"ServiceRequest/lipid\"\n },\n {\n \"reference\": \"CarePlan/example-CarePlan\"\n }\n ]\n },\n {\n \"title\": \"Procedures Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"47519-4\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Procedures</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Procedure/rehab\"\n }\n ]\n },\n {\n \"title\": \"Vital Signs Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"8716-3\",\n \"display\": \"Vital Signs\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Vital Signs</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Observation/example-Observation\"\n }\n ]\n },\n {\n \"title\": \"Social History Section\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29762-2\"\n }\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n<p>Social History</p></div>\"\n },\n \"entry\": [\n {\n \"reference\": \"Observation/example-SmokingStatus\"\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Patient/example-Patient\",\n \"resource\": {\n \"resourceType\": \"Patient\",\n \"id\": \"example-Patient\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>identifier</b>: Medical Record Number: 1032702 (USUAL)</p><p><b>active</b>: true</p><p><b>name</b>: Amy V. Shaw , Amy V. Baxter </p><p><b>telecom</b>: ph: 555-555-5555(HOME), amy.shaw@example.com</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1987-02-20</p><p><b>address</b>: </p><ul><li>49 Meadow St Mounds OK 74047 US </li><li>183 Mountain View St Mounds OK 74048 US </li></ul></div>\"\n },\n \"extension\": [\n {\n \"extension\": [\n {\n \"url\": \"ombCategory\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2106-3\",\n \"display\": \"White\"\n }\n },\n {\n \"url\": \"ombCategory\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"1002-5\",\n \"display\": \"American Indian or Alaska Native\"\n }\n },\n {\n \"url\": \"ombCategory\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2028-9\",\n \"display\": \"Asian\"\n }\n },\n {\n \"url\": \"detailed\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"1586-7\",\n \"display\": \"Shoshone\"\n }\n },\n {\n \"url\": \"detailed\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2036-2\",\n \"display\": \"Filipino\"\n }\n },\n {\n \"url\": \"text\",\n \"valueString\": \"Mixed\"\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n },\n {\n \"extension\": [\n {\n \"url\": \"ombCategory\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2135-2\",\n \"display\": \"Hispanic or Latino\"\n }\n },\n {\n \"url\": \"detailed\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2184-0\",\n \"display\": \"Dominican\"\n }\n },\n {\n \"url\": \"detailed\",\n \"valueCoding\": {\n \"system\": \"urn:oid:2.16.840.1.113883.6.238\",\n \"code\": \"2148-5\",\n \"display\": \"Mexican\"\n }\n },\n {\n \"url\": \"text\",\n \"valueString\": \"Hispanic or Latino\"\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n },\n {\n \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n \"valueCode\": \"F\"\n }\n ],\n \"identifier\": [\n {\n \"use\": \"usual\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"MR\",\n \"display\": \"Medical Record Number\"\n }\n ],\n \"text\": \"Medical Record Number\"\n },\n \"system\": \"http://hospital.smarthealthit.org\",\n \"value\": \"1032702\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"family\": \"Shaw\",\n \"given\": [\n \"Amy\",\n \"V.\"\n ],\n \"period\": {\n \"start\": \"2016-12-06\",\n \"end\": \"2020-07-22\"\n }\n },\n {\n \"family\": \"Baxter\",\n \"given\": [\n \"Amy\",\n \"V.\"\n ],\n \"suffix\": [\n \"PharmD\"\n ],\n \"period\": {\n \"start\": \"2020-07-22\"\n }\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"555-555-5555\",\n \"use\": \"home\"\n },\n {\n \"system\": \"email\",\n \"value\": \"amy.shaw@example.com\"\n }\n ],\n \"gender\": \"female\",\n \"birthDate\": \"1987-02-20\",\n \"address\": [\n {\n \"line\": [\n \"49 Meadow St\"\n ],\n \"city\": \"Mounds\",\n \"state\": \"OK\",\n \"postalCode\": \"74047\",\n \"country\": \"US\",\n \"period\": {\n \"start\": \"2016-12-06\",\n \"end\": \"2020-07-22\"\n }\n },\n {\n \"line\": [\n \"183 Mountain View St\"\n ],\n \"city\": \"Mounds\",\n \"state\": \"OK\",\n \"postalCode\": \"74048\",\n \"country\": \"US\",\n \"period\": {\n \"start\": \"2020-07-22\"\n }\n }\n ],\n \"communication\": [\n {\n \"language\": {\n \"coding\": [\n {\n \"system\": \"urn:ietf:bcp:47\",\n \"code\": \"en\",\n \"display\": \"English\"\n }\n ]\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Encounter/example-Encounter\",\n \"resource\": {\n \"resourceType\": \"Encounter\",\n \"id\": \"example-Encounter\",\n \"meta\": {\n \"versionId\": \"1\",\n \"lastUpdated\": \"2017-05-26T11:56:57.250-04:00\",\n \"source\": \"#crGIzXgvY3vm6ixN\",\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-encounter\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><a name=\\\"Encounter_uspath-specimen-collection-example\\\"> </a><p><b>Generated Narrative: Encounter</b><a name=\\\"uspath-specimen-collection-example\\\"> </a><a name=\\\"hcuspath-specimen-collection-example\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource Encounter &quot;uspath-specimen-collection-example&quot; Version &quot;1&quot; Updated &quot;2022-04-17 13:46:33+0000&quot; </p><p style=\\\"margin-bottom: 0px\\\">Information Source: #crGIzXgvY3vm6ixN!</p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"http://hl7.org/fhir/us/core/STU5.0.1/StructureDefinition-us-core-encounter.html\\\">US Core Encounter Profile</a></p></div><p><b>identifier</b>: <code>http://example.com/fhir/encounters</code>/123</p><p><b>status</b>: finished</p><p><b>class</b>: inpatient encounter (Details: http://terminology.hl7.org/CodeSystem/v3-ActCode code IMP = 'inpatient encounter', stated as 'inpatient encounter')</p><p><b>type</b>: Pathology consultation, comprehensive, records and specimen with report <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#726007)</span></p><p><b>subject</b>: See on this page: Patient/JoelAlexPatient</p><blockquote><p><b>participant</b></p><p><b>individual</b>: <a href=\\\"Practitioner-oncologist-example.html\\\">Practitioner/oncologist-example</a> &quot; OWL&quot;</p></blockquote><blockquote><p><b>participant</b></p><p><b>individual</b>: See on this page: Practitioner/pathologist-example</p></blockquote></div>\"\n },\n \"period\": {\n \"start\": \"2015-11-11\",\n \"end\": \"2015-11-12\"\n },\n \"identifier\": [\n {\n \"system\": \"http://example.com/fhir/encounters\",\n \"value\": \"123\"\n }\n ],\n \"status\": \"finished\",\n \"class\": {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ActCode\",\n \"code\": \"IMP\",\n \"display\": \"inpatient encounter\"\n },\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"726007\",\n \"display\": \"Pathology consultation, comprehensive, records and specimen with report\"\n }\n ]\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\",\n \"display\": \"Ordering Provider\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"hospitalization\": {\n \"dischargeDisposition\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/nubc-UB92\",\n \"code\": \"01\",\n \"display\": \"Discharged to Home\"\n }\n ]\n }\n },\n \"location\": [\n {\n \"location\": {\n \"reference\": \"Location/hospital\",\n \"display\": \"Holy Family Hospital\"\n }\n }\n ],\n \"participant\": [\n {\n \"type\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\",\n \"display\": \"Ordering Provider\"\n }\n ]\n }\n ],\n \"period\": {\n \"start\": \"2016-12-06\",\n \"end\": \"2020-07-22\"\n },\n \"individual\": {\n \"reference\": \"Practitioner/example\"\n }\n },\n {\n \"individual\": {\n \"reference\": \"Practitioner/example\"\n }\n }\n ],\n \"reasonReference\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-breast\"\n }\n ],\n \"serviceProvider\": {\n \"reference\": \"Organization/acme-lab\"\n }\n }\n },\n {\n \"fullUrl\": \"https://hl7.org/fhir/us/central-cancer-registry-reporting/Practitioner-1.json\",\n \"resource\": {\n \"resourceType\": \"Practitioner\",\n \"id\": \"example-Practitioner\",\n \"meta\": {\n \"versionId\": \"3\",\n \"lastUpdated\": \"2019-03-06T03:07:57.933-05:00\"\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Joseph Nichols</div>\"\n },\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://hl7.org/fhir/sid/us-npi\",\n \"value\": \"0123456789\"\n },\n {\n \"use\": \"official\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"SB\",\n \"display\": \"Social Beneficiary Identifier\"\n }\n ],\n \"text\": \"US Social Security Number\"\n },\n \"system\": \"http://hl7.org/fhir/sid/us-ssn\",\n \"value\": \"000-00-0004\"\n }\n ],\n \"active\": true,\n \"name\": [\n {\n \"use\": \"official\",\n \"family\": \"Nichols\",\n \"given\": [\n \"Joseph\",\n \"P\"\n ],\n \"suffix\": [\n \"MD\"\n ]\n }\n ],\n \"telecom\": [\n {\n \"system\": \"phone\",\n \"value\": \"800-277-1993\",\n \"use\": \"mobile\"\n },\n {\n \"system\": \"email\",\n \"value\": \"joseph.nichols@example.com\"\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"53 Sunset AveApt 9\"\n ],\n \"city\": \"Tulsa\",\n \"state\": \"OK\",\n \"postalCode\": \"74126\",\n \"country\": \"USA\"\n }\n ],\n \"gender\": \"male\"\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Condition/primary-cancer-condition-breast\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"id\": \"primary-cancer-condition-breast\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/central-cancer-registry-reporting/StructureDefinition/central-cancer-registry-primary-cancer-condition\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Narrative:</b></p><p><b>Condition: </b>primary-cancer-condition-breast</p><p><b>Histology-Morphology-Behavior Extension</b>: Lobular carcinoma in situ (morphologic abnormality) <a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT[Intl]</a>#77284006)</p><p><b>clinicalStatus</b>: Active</p><p><b>verificationStatus</b>: Confirmed</p><p><b>category</b>: Problem List Item</p><p><b>code</b>: Malignant neoplastic disease (disorder) <a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT[Intl]</a>#363346000)</p><p><b>bodySite</b>: Left breast structure (body structure) <a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT[Intl]</a>#80248007)</p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example</a> Amy Shaw</p><p><b>onset</b>: 2019-04-01</p><p><b>asserter</b>: <a href=\\\"Practitioner-1.html\\\">Practitioner/1</a> Joseph Nichols</p><p><b>Stage: </b>American Joint Committee on Cancer stage IIIC (qualifier value) <a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT[Intl]</a>#1222806003)</p></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/condition-assertedDate\",\n \"valueDateTime\": \"2019-04-01\"\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-histology-morphology-behavior\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"127569003\",\n \"display\": \"In situ neoplasm (morphologic abnormality)\"\n }\n ]\n }\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"remission\",\n \"display\": \"Remission\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-tags\",\n \"code\": \"sdoh\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"363346000\",\n \"display\": \"Malignant neoplastic disease (disorder)\"\n }\n ]\n },\n \"bodySite\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-laterality-qualifier\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7771000\",\n \"display\": \"Left (qualifier value)\"\n }\n ]\n }\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-body-location-qualifier\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49370004\",\n \"display\": \"Lateral\"\n }\n ]\n }\n }\n ],\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80248007\",\n \"display\": \"Left breast structure (body structure)\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"onsetDateTime\": \"2019-04-01\",\n \"asserter\": {\n \"reference\": \"Practitioner/example-Practitioner\"\n },\n \"stage\": [\n {\n \"assessment\": [\n {\n \"reference\": \"Observation/cancer-stage-group-example\"\n }\n ]\n }\n ],\n \"recordedDate\": \"2020-10-10\",\n \"abatementDateTime\": \"2020-11-11\"\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Practitioner/example-Practitioner\",\n \"resource\": {\n \"resourceType\": \"Practitioner\",\n \"id\": \"example-Practitioner\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: practitioner-1</p><p><b>meta</b>: </p><p><b>identifier</b>: id: 9941339108, id: 25456</p><p><b>name</b>: Ronald Bone </p><p><b>address</b>: 1003 Healthcare Drive Amherst MA 01002 (HOME)</p></div>\"\n },\n \"identifier\": [\n {\n \"system\": \"http://hl7.org.fhir/sid/us-npi\",\n \"value\": \"9941339108\"\n },\n {\n \"system\": \"http://www.acme.org/practitioners\",\n \"value\": \"25456\"\n }\n ],\n \"name\": [\n {\n \"family\": \"Bone\",\n \"given\": [\n \"Ronald\"\n ],\n \"prefix\": [\n \"Dr\"\n ]\n }\n ],\n \"address\": [\n {\n \"use\": \"home\",\n \"line\": [\n \"1003 Healthcare Drive\"\n ],\n \"city\": \"Amherst\",\n \"state\": \"MA\",\n \"postalCode\": \"01002\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Condition/secondary-cancer-condition-brain-mets\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"id\": \"secondary-cancer-condition-brain-mets\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-secondary-cancer-condition\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: Condition</b><a name=\\\"secondary-cancer-condition-brain-mets\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource Condition &quot;secondary-cancer-condition-brain-mets&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-secondary-cancer-condition.html\\\">Secondary Cancer Condition Profile</a></p></div><p><b>Condition Related</b>: <a href=\\\"Condition-primary-cancer-condition-nsclc.html\\\">Condition/primary-cancer-condition-nsclc</a></p><p><b>clinicalStatus</b>: Active <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-condition-clinical.html\\\">Condition Clinical Status Codes</a>#active)</span></p><p><b>verificationStatus</b>: Confirmed <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-condition-ver-status.html\\\">ConditionVerificationStatus</a>#confirmed)</span></p><p><b>category</b>: Problem List Item <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-condition-category.html\\\">Condition Category Codes</a>#problem-list-item)</span></p><p><b>code</b>: Secondary malignant neoplasm of brain <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#94225005)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-john-anyperson.html\\\">Patient/cancer-patient-john-anyperson</a> &quot; ANYPERSON&quot;</p><p><b>onset</b>: 2019-05-01</p><p><b>asserter</b>: <a href=\\\"Practitioner-us-core-practitioner-kyle-anydoc.html\\\">Practitioner/us-core-practitioner-kyle-anydoc</a> &quot; ANYDOC&quot;</p></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-histology-morphology-behavior\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"127569003\",\n \"display\": \"In situ neoplasm (morphologic abnormality)\"\n }\n ]\n }\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/condition-assertedDate\",\n \"valueDateTime\": \"2019-04-01\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/condition-related\",\n \"valueReference\": {\n \"reference\": \"Condition/primary-cancer-condition-nsclc\"\n }\n }\n ],\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"remission\",\n \"display\": \"Remission\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ]\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\"\n }\n ]\n },\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-tags\",\n \"code\": \"sdoh\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"94225005\",\n \"display\": \"Secondary malignant neoplasm of brain\"\n }\n ]\n },\n \"bodySite\": [\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-laterality-qualifier\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7771000\",\n \"display\": \"Left (qualifier value)\"\n }\n ]\n }\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-body-location-qualifier\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"49370004\",\n \"display\": \"Lateral\"\n }\n ]\n }\n }\n ],\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"80248007\",\n \"display\": \"Left breast structure (body structure)\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-john-anyperson\"\n },\n \"onsetDateTime\": \"2019-05-01\",\n \"asserter\": {\n \"reference\": \"Practitioner/us-core-practitioner-kyle-anydoc\"\n },\n \"recordedDate\": \"2020-10-10\",\n \"abatementDateTime\": \"2020-11-11\"\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/cancer-stage-group-example\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"cancer-stage-group-example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-tnm-stage-group\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: Observation</b><a name=\\\"tnm-clinical-stage-group-jenny-m\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource Observation &quot;tnm-clinical-stage-group-jenny-m&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-tnm-stage-group.html\\\">TNM Stage Group Profile</a></p></div><p><b>status</b>: final</p><p><b>code</b>: Clinical TNM stage grouping <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#399537006)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-jenny-m.html\\\">Patient/cancer-patient-jenny-m</a> &quot; M&quot;</p><p><b>focus</b>: <a href=\\\"Condition-primary-cancer-condition-jenny-m.html\\\">Condition/primary-cancer-condition-jenny-m</a></p><p><b>effective</b>: 2018-03-16</p><p><b>performer</b>: <a href=\\\"Practitioner-us-core-practitioner-owen-oncologist.html\\\">Practitioner/us-core-practitioner-owen-oncologist</a> &quot; ONCOLOGIST&quot;</p><p><b>value</b>: American Joint Committee on Cancer stage IIB (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#1222769001)</span></p><p><b>method</b>: American Joint Commission on Cancer, Cancer Staging Manual, 8th edition neoplasm staging system (tumor staging) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#897275008)</span></p><p><b>hasMember</b>: </p><ul><li><a href=\\\"Observation-tnm-pathologic-primary-tumor-category-jenny-m.html\\\">Observation/tnm-pathologic-primary-tumor-category-jenny-m</a></li><li><a href=\\\"Observation-tnm-pathologic-regional-nodes-category-jenny-m.html\\\">Observation/tnm-pathologic-regional-nodes-category-jenny-m</a></li><li><a href=\\\"Observation-tnm-pathologic-distant-metastases-category-jenny-m.html\\\">Observation/tnm-pathologic-distant-metastases-category-jenny-m</a></li></ul></div>\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"399537006\",\n \"display\": \"Clinical TNM stage grouping\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-jenny-m\"\n },\n \"focus\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-jenny-m\"\n }\n ],\n \"effectiveDateTime\": \"2018-03-16\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/us-core-practitioner-owen-oncologist\"\n }\n ],\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1222769001\",\n \"display\": \"American Joint Committee on Cancer stage IIB (qualifier value)\"\n }\n ]\n },\n \"method\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"897275008\",\n \"display\": \"American Joint Committee on Cancer, Cancer Staging Manual, 8th edition tumor staging system\"\n }\n ]\n },\n \"hasMember\": [\n {\n \"reference\": \"Observation/tnm-pathologic-primary-tumor-category-jenny-m\"\n },\n {\n \"reference\": \"Observation/tnm-pathologic-regional-nodes-category-jenny-m\"\n },\n {\n \"reference\": \"Observation/tnm-pathologic-distant-metastases-category-jenny-m\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Procedure/radiotherapy-example\",\n \"resource\": {\n \"resourceType\": \"Procedure\",\n \"id\": \"radiotherapy-example\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-course-summary\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: Procedure</b><a name=\\\"radiotherapy-treatment-summary-chest-wall-jenny-m\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource Procedure &quot;radiotherapy-treatment-summary-chest-wall-jenny-m&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-radiotherapy-course-summary.html\\\">Radiotherapy Course Summary Profile</a></p></div><p><b>Radiotherapy Number of Sessions Extension</b>: 31</p><p><b>Procedure Intent Extension</b>: Curative - procedure intent <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#373808002)</span></p><blockquote><p><b>Radiotherapy Modality And Technique Extension</b></p><blockquote><p><b>url</b></p><a href=\\\"StructureDefinition-mcode-radiotherapy-modality.html\\\">Radiotherapy Modality Extension</a></blockquote><p><b>value</b>: External beam radiation therapy using photons (procedure) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#1156506007)</span></p><blockquote><p><b>url</b></p><a href=\\\"StructureDefinition-mcode-radiotherapy-technique.html\\\">Radiotherapy Technique Extension</a></blockquote><p><b>value</b>: Volumetric Modulated Arc Therapy (procedure) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#1156530009)</span></p></blockquote><blockquote><p><b>Radiotherapy Modality And Technique Extension</b></p><blockquote><p><b>url</b></p><a href=\\\"StructureDefinition-mcode-radiotherapy-modality.html\\\">Radiotherapy Modality Extension</a></blockquote><p><b>value</b>: Teleradiotherapy using electrons <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#45643008)</span></p><blockquote><p><b>url</b></p><a href=\\\"StructureDefinition-mcode-radiotherapy-technique.html\\\">Radiotherapy Technique Extension</a></blockquote><p><b>value</b>: Three dimensional external beam radiation therapy (procedure) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#1162782007)</span></p></blockquote><blockquote><p><b>Radiotherapy Dose Delivered To Volume Extension</b></p><blockquote><p><b>url</b></p><code>volume</code></blockquote><p><b>value</b>: <a href=\\\"BodyStructure-jenny-m-chest-wall-treatment-volume.html\\\">BodyStructure/jenny-m-chest-wall-treatment-volume</a></p><blockquote><p><b>url</b></p><code>totalDoseDelivered</code></blockquote><p><b>value</b>: 6000 cGy<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code cGy = 'cGy')</span></p><blockquote><p><b>url</b></p><code>fractionsDelivered</code></blockquote><p><b>value</b>: 30</p></blockquote><blockquote><p><b>Radiotherapy Dose Delivered To Volume Extension</b></p><blockquote><p><b>url</b></p><code>volume</code></blockquote><p><b>value</b>: <a href=\\\"BodyStructure-jenny-m-chest-wall-lymph-nodes-treatment-volume.html\\\">BodyStructure/jenny-m-chest-wall-lymph-nodes-treatment-volume</a></p><blockquote><p><b>url</b></p><code>totalDoseDelivered</code></blockquote><p><b>value</b>: 5000 cGy<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code cGy = 'cGy')</span></p><blockquote><p><b>url</b></p><code>fractionsDelivered</code></blockquote><p><b>value</b>: 25</p></blockquote><p><b>status</b>: completed</p><p><b>category</b>: Radiation oncology AND/OR radiotherapy (procedure) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#108290001)</span></p><p><b>code</b>: 1217123003 <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#1217123003)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-jenny-m.html\\\">Patient/cancer-patient-jenny-m</a> &quot; M&quot;</p><p><b>performed</b>: 2018-08-15 --&gt; 2018-10-25</p><p><b>asserter</b>: <a href=\\\"Practitioner-us-core-practitioner-kyle-anydoc.html\\\">Practitioner/us-core-practitioner-kyle-anydoc</a> &quot; ANYDOC&quot;</p><p><b>reasonCode</b>: Malignant neoplasm of overlapping sites of right female breast <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-icd10CM.html\\\">International Classification of Diseases, 10th Revision, Clinical Modification (ICD-10-CM)</a>#C50.811)</span></p><p><b>bodySite</b>: Chest Wall Structure (body structure) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#78904004)</span></p></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-sessions\",\n \"valueUnsignedInt\": 31\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-procedure-intent\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"373808002\",\n \"display\": \"Curative - procedure intent\"\n }\n ]\n }\n },\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-modality\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156506007\",\n \"display\": \"External beam radiation therapy using photons (procedure)\"\n }\n ]\n }\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-technique\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1156530009\",\n \"display\": \"Volumetric Modulated Arc Therapy (procedure)\"\n }\n ]\n }\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-modality-and-technique\"\n },\n {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-modality\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"45643008\",\n \"display\": \"Teleradiotherapy using electrons\"\n }\n ]\n }\n },\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-technique\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1162782007\",\n \"display\": \"Three dimensional external beam radiation therapy (procedure)\"\n }\n ]\n }\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-modality-and-technique\"\n },\n {\n \"extension\": [\n {\n \"url\": \"volume\",\n \"valueReference\": {\n \"reference\": \"BodyStructure/jenny-m-chest-wall-treatment-volume\"\n }\n },\n {\n \"url\": \"totalDoseDelivered\",\n \"valueQuantity\": {\n \"value\": 6000,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cGy\"\n }\n },\n {\n \"url\": \"fractionsDelivered\",\n \"valueUnsignedInt\": 30\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-dose-delivered-to-volume\"\n },\n {\n \"extension\": [\n {\n \"url\": \"volume\",\n \"valueReference\": {\n \"reference\": \"BodyStructure/jenny-m-chest-wall-lymph-nodes-treatment-volume\"\n }\n },\n {\n \"url\": \"totalDoseDelivered\",\n \"valueQuantity\": {\n \"value\": 5000,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"cGy\"\n }\n },\n {\n \"url\": \"fractionsDelivered\",\n \"valueUnsignedInt\": 25\n }\n ],\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-radiotherapy-dose-delivered-to-volume\"\n },\n {\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"266721009\"\n }\n ]\n },\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-treatment-termination-reason\"\n }\n ],\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"108290001\",\n \"display\": \"Radiation oncology AND/OR radiotherapy (procedure)\"\n }\n ]\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"1217123003\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-jenny-m\"\n },\n \"performedPeriod\": {\n \"start\": \"2018-08-15\",\n \"end\": \"2018-10-25\"\n },\n \"asserter\": {\n \"reference\": \"Practitioner/us-core-practitioner-kyle-anydoc\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-10-cm\",\n \"code\": \"C50.811\",\n \"display\": \"Malignant neoplasm of overlapping sites of right female breast\"\n }\n ]\n }\n ],\n \"reasonReference\": [\n {\n \"reference\": \"Condition/example-condition\"\n }\n ],\n \"bodySite\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"78904004\",\n \"display\": \"Chest Wall Structure (body structure)\"\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Condition/example-Condition\",\n \"resource\": {\n \"resourceType\": \"Condition\",\n \"id\": \"example-Condition\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>clinicalStatus</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/condition-clinical active}\\\">Active</span></p><p><b>verificationStatus</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/condition-ver-status confirmed}\\\">Confirmed</span></p><p><b>category</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/condition-category problem-list-item}\\\">Problem</span></p><p><b>code</b>: <span title=\\\"Codes: {http://snomed.info/sct 442311008}\\\">Single liveborn, born in hospital</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Amy V. Shaw. Generated Summary: id: example; Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><p><b>onset</b>: 2016-08-10</p></div>\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\",\n \"code\": \"active\",\n \"display\": \"Active\"\n }\n ],\n \"text\": \"Active\"\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-ver-status\",\n \"code\": \"confirmed\",\n \"display\": \"Confirmed\"\n }\n ],\n \"text\": \"Confirmed\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\",\n \"code\": \"problem-list-item\",\n \"display\": \"Problem List Item\"\n }\n ],\n \"text\": \"Problem\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"442311008\",\n \"display\": \"Liveborn born in hospital\"\n }\n ],\n \"text\": \"Single liveborn, born in hospital\"\n },\n \"subject\": {\n \"reference\": \"Patient/example-Patient\",\n \"display\": \"Amy V. Shaw\"\n },\n \"onsetDateTime\": \"2016-08-10\"\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/AllergyIntolerance/example-AllergyIntolerance\",\n \"resource\": {\n \"resourceType\": \"AllergyIntolerance\",\n \"id\": \"example-AllergyIntolerance\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>clinicalStatus</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical active}\\\">Active</span></p><p><b>verificationStatus</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/allergyintolerance-verification confirmed}\\\">Confirmed</span></p><p><b>category</b>: medication</p><p><b>criticality</b>: high</p><p><b>code</b>: <span title=\\\"Codes: {http://snomed.info/sct 387406002}\\\">sulfonamide antibacterial</span></p><p><b>patient</b>: <a href=\\\"Patient-example.html\\\">Amy V. Shaw. Generated Summary: id: example; Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><h3>Reactions</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Manifestation</b></td><td><b>Severity</b></td></tr><tr><td>*</td><td><span title=\\\"Codes: {http://snomed.info/sct 271807003}\\\">skin rash</span></td><td>mild</td></tr></table></div>\"\n },\n \"clinicalStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n \"code\": \"active\"\n }\n ]\n },\n \"verificationStatus\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n \"code\": \"confirmed\"\n }\n ]\n },\n \"category\": [\n \"medication\"\n ],\n \"criticality\": \"high\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"387406002\",\n \"display\": \"Sulfonamide (substance)\"\n }\n ],\n \"text\": \"sulfonamide antibacterial\"\n },\n \"patient\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy V. Shaw\"\n },\n \"reaction\": [\n {\n \"manifestation\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"271807003\",\n \"display\": \"skin rash\"\n }\n ],\n \"text\": \"skin rash\"\n }\n ],\n \"severity\": \"mild\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Medication/uscore-med1\",\n \"resource\": {\n \"resourceType\": \"Medication\",\n \"id\": \"uscore-med1\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Uscore Med1 Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a uscore med1 example for the *US Core Medication Profile*.\"\n }\n ],\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"uscore-med1\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-medication.html\\\">US Core Medication Profile</a></p></div><p><b>code</b>: lisinopril oral 10 mg <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-v3-rxNorm.html\\\">RxNorm</a>#206765 \\\"Prinivil 10 MG Oral Tablet\\\")</span></p></div>\"\n },\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"206765\",\n \"display\": \"Prinivil 10 MG Oral Tablet\"\n }\n ],\n \"text\": \"lisinopril oral 10 mg\"\n }\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/MedicationAdministration/cancer-related-medication-admin-cyclophosphamide-jenny-m\",\n \"resource\": {\n \"resourceType\": \"MedicationAdministration\",\n \"id\": \"cancer-related-medication-admin-cyclophosphamide-jenny-m\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-cancer-related-medication-administration\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: MedicationAdministration</b><a name=\\\"cancer-related-medication-admin-cyclophosphamide-jenny-m\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource MedicationAdministration &quot;cancer-related-medication-admin-cyclophosphamide-jenny-m&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-cancer-related-medication-administration.html\\\">Cancer-Related Medication Administration Profile</a></p></div><p><b>Procedure Intent Extension</b>: Curative - procedure intent (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#373808002)</span></p><p><b>status</b>: completed</p><p><b>category</b>: Outpatient <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-medicationrequest-category.html\\\">MedicationRequest Category Codes</a>#outpatient)</span></p><p><b>medication</b>: cyclophosphamide <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-v3-rxNorm.html\\\">RxNorm</a>#3002)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-jenny-m.html\\\">Patient/cancer-patient-jenny-m</a> &quot; M&quot;</p><p><b>effective</b>: 2018-04-22</p><h3>Performers</h3><table class=\\\"grid\\\"><tr><td style=\\\"display: none\\\">-</td><td><b>Actor</b></td></tr><tr><td style=\\\"display: none\\\">*</td><td><a href=\\\"Practitioner-us-core-practitioner-nancy-oncology-nurse.html\\\">Practitioner/us-core-practitioner-nancy-oncology-nurse</a> &quot; NURSE&quot;</td></tr></table><p><b>reasonReference</b>: <a href=\\\"Condition-primary-cancer-condition-jenny-m.html\\\">Condition/primary-cancer-condition-jenny-m</a></p><p><b>note</b>: cyclophosphamide (60 mg/m² IV), 932.59 mg in 50 ml 0.9% normal saline administered by continuous infusion. Patient tolerated infusion without side effects. (By Practitioner/us-core-practitioner-nancy-oncology-nurse @2018-04-22)</p><h3>Dosages</h3><table class=\\\"grid\\\"><tr><td style=\\\"display: none\\\">-</td><td><b>Route</b></td><td><b>Dose</b></td></tr><tr><td style=\\\"display: none\\\">*</td><td>Intravenous route (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#47625008)</span></td><td>932.59 mg<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg = 'mg')</span></td></tr></table></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-procedure-intent\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"373808002\",\n \"display\": \"Curative - procedure intent (qualifier value)\"\n }\n ]\n }\n }\n ],\n \"status\": \"completed\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"outpatient\"\n }\n ]\n },\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"3002\",\n \"display\": \"cyclophosphamide\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-jenny-m\"\n },\n \"effectiveDateTime\": \"2018-04-22\",\n \"performer\": [\n {\n \"actor\": {\n \"reference\": \"Practitioner/us-core-practitioner-nancy-oncology-nurse\"\n }\n }\n ],\n \"statusReason\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/us/mcode/ValueSet/mcode-treatment-termination-reason-vs\",\n \"code\": \"266721009\",\n \"display\": \"Absent response to treatment\"\n }\n ]\n }\n ],\n \"reasonReference\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-jenny-m\"\n }\n ],\n \"note\": [\n {\n \"authorReference\": {\n \"reference\": \"Practitioner/us-core-practitioner-nancy-oncology-nurse\"\n },\n \"time\": \"2018-04-22\",\n \"text\": \"cyclophosphamide (60 mg/m² IV), 932.59 mg in 50 ml 0.9% normal saline administered by continuous infusion. Patient tolerated infusion without side effects.\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"35868009\",\n \"display\": \"Carcinoid syndrome\"\n }\n ]\n }\n ],\n \"dosage\": {\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"47625008\",\n \"display\": \"Intravenous route (qualifier value)\"\n }\n ]\n },\n \"dose\": {\n \"value\": 932.59,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n }\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/MedicationStatement/example-MedicationStatement\",\n \"resource\": {\n \"resourceType\": \"MedicationStatement\",\n \"id\": \"example-MedicationStatement\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example001</p><p><b>contained</b>: </p><p><b>identifier</b>: 12345689 (OFFICIAL)</p><p><b>status</b>: active</p><p><b>category</b>: Inpatient <span>(Details : {http://terminology.hl7.org/CodeSystem/medication-statement-category code 'inpatient' = 'Inpatient', given as 'Inpatient'})</span></p><p><b>medication</b>: id: med0309; Tylenol PM <span>(Details : {http://hl7.org/fhir/sid/ndc code '50580-506-02' = 'n/a', given as 'Tylenol PM'})</span>; Film-coated tablet (qualifier value) <span>(Details : {SNOMED CT code '385057009' = 'Film-coated tablet', given as 'Film-coated tablet (qualifier value)'})</span></p><p><b>subject</b>: <a>Donald Duck</a></p><p><b>effective</b>: 23/01/2015</p><p><b>dateAsserted</b>: 22/02/2015</p><p><b>informationSource</b>: <a>Donald Duck</a></p><p><b>derivedFrom</b>: <a>MedicationRequest/medrx002</a></p><p><b>reasonCode</b>: Restless Legs <span>(Details : {SNOMED CT code '32914008' = 'Restless legs', given as 'Restless Legs'})</span></p><p><b>note</b>: Patient indicates they miss the occasional dose</p><p><b>dosage</b>: </p></div>\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Medication\",\n \"id\": \"med0309\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/ndc\",\n \"code\": \"50580-506-02\",\n \"display\": \"Tylenol PM Extra Strength, 2 TABLET, FILM COATED in 1 POUCH (50580-506-02) (package)\"\n }\n ]\n },\n \"form\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"385057009\",\n \"display\": \"Film-coated tablet\"\n }\n ]\n },\n \"ingredient\": [\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"315266\",\n \"display\": \"Acetaminophen 500 MG\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 500,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n },\n {\n \"itemCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"901813\",\n \"display\": \"Diphenhydramine Hydrochloride 25 mg\"\n }\n ]\n },\n \"strength\": {\n \"numerator\": {\n \"value\": 25,\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n },\n \"denominator\": {\n \"value\": 1,\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ],\n \"batch\": {\n \"lotNumber\": \"9494788\",\n \"expirationDate\": \"2017-05-22\"\n }\n }\n ],\n \"identifier\": [\n {\n \"use\": \"official\",\n \"system\": \"http://www.bmc.nl/portal/medstatements\",\n \"value\": \"12345689\"\n }\n ],\n \"status\": \"active\",\n \"category\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medication-statement-category\",\n \"code\": \"inpatient\",\n \"display\": \"Inpatient\"\n }\n ]\n },\n \"medicationReference\": {\n \"reference\": \"#med0309\"\n },\n \"subject\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"effectiveDateTime\": \"2015-01-23\",\n \"dateAsserted\": \"2015-02-22\",\n \"informationSource\": {\n \"reference\": \"Patient/pat1\",\n \"display\": \"Donald Duck\"\n },\n \"derivedFrom\": [\n {\n \"reference\": \"MedicationRequest/medrx002\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n }\n ],\n \"note\": [\n {\n \"text\": \"Patient indicates they miss the occasional dose\"\n }\n ],\n \"dosage\": [\n {\n \"sequence\": 1,\n \"text\": \"1-2 tablets once daily at bedtime as needed for restless legs\",\n \"additionalInstruction\": [\n {\n \"text\": \"Taking at bedtime\"\n }\n ],\n \"timing\": {\n \"repeat\": {\n \"frequency\": 1,\n \"period\": 1,\n \"periodUnit\": \"d\"\n }\n },\n \"asNeededCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"32914008\",\n \"display\": \"Restless Legs\"\n }\n ]\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral Route\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/dose-rate-type\",\n \"code\": \"ordered\",\n \"display\": \"Ordered\"\n }\n ]\n },\n \"doseRange\": {\n \"low\": {\n \"value\": 1,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n },\n \"high\": {\n \"value\": 2,\n \"unit\": \"TAB\",\n \"system\": \"http://terminology.hl7.org/CodeSystem/v3-orderableDrugForm\",\n \"code\": \"TAB\"\n }\n }\n }\n ]\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/MedicationRequest/cancer-related-medication-request-anastrozole-jenny-m\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"cancer-related-medication-request-anastrozole-jenny-m\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-cancer-related-medication-request\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: MedicationRequest</b><a name=\\\"cancer-related-medication-request-anastrozole-jenny-m\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource MedicationRequest &quot;cancer-related-medication-request-anastrozole-jenny-m&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-cancer-related-medication-request.html\\\">Cancer-Related Medication Request Profile</a></p></div><p><b>Procedure Intent Extension</b>: Curative - procedure intent (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#373808002)</span></p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>category</b>: Community <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-medicationrequest-category.html\\\">MedicationRequest Category Codes</a>#community)</span></p><p><b>medication</b>: anastrozole <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-v3-rxNorm.html\\\">RxNorm</a>#84857)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-jenny-m.html\\\">Patient/cancer-patient-jenny-m</a> &quot; M&quot;</p><p><b>authoredOn</b>: 2018-09-30</p><p><b>requester</b>: <a href=\\\"Practitioner-us-core-practitioner-owen-oncologist.html\\\">Practitioner/us-core-practitioner-owen-oncologist</a> &quot; ONCOLOGIST&quot;</p><p><b>reasonReference</b>: <a href=\\\"Condition-primary-cancer-condition-jenny-m.html\\\">Condition/primary-cancer-condition-jenny-m</a></p><blockquote><p><b>dosageInstruction</b></p><p><b>text</b>: 1mg orally once daily</p><p><b>timing</b>: Starting 2018-09-30, Once</p><p><b>route</b>: Oral route (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#26643006)</span></p><blockquote><p><b>doseAndRate</b></p></blockquote><p><b>maxDosePerPeriod</b>: 1/1 day<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code d = 'd')</span></p></blockquote></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-procedure-intent\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"373808002\",\n \"display\": \"Curative - procedure intent (qualifier value)\"\n }\n ]\n }\n }\n ],\n \"status\": \"stopped\",\n \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"community\"\n }\n ]\n }\n ],\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"84857\",\n \"display\": \"anastrozole\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-jenny-m\"\n },\n \"authoredOn\": \"2018-09-30\",\n \"reportedBoolean\": true,\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\",\n \"display\": \"Ordering Provider\"\n }\n ]\n }\n ],\n \"requester\": {\n \"reference\": \"Practitioner/us-core-practitioner-owen-oncologist\"\n },\n \"statusReason\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"266721009\",\n \"display\": \"Absent response to treatment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-jenny-m\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"text\": \"1mg orally once daily\",\n \"timing\": {\n \"repeat\": {\n \"boundsPeriod\": {\n \"start\": \"2018-09-30\"\n }\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n }\n ],\n \"maxDosePerPeriod\": {\n \"numerator\": {\n \"value\": 1\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n }\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/MedicationRequest/cancer-related-medication-request-anastrozole-jenny-m1\",\n \"resource\": {\n \"resourceType\": \"MedicationRequest\",\n \"id\": \"cancer-related-medication-request-anastrozole-jenny-m1\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-cancer-related-medication-request\"\n ]\n },\n \"text\": {\n \"status\": \"extensions\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative: MedicationRequest</b><a name=\\\"cancer-related-medication-request-anastrozole-jenny-m\\\"> </a></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource MedicationRequest &quot;cancer-related-medication-request-anastrozole-jenny-m&quot; </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-mcode-cancer-related-medication-request.html\\\">Cancer-Related Medication Request Profile</a></p></div><p><b>Procedure Intent Extension</b>: Curative - procedure intent (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#373808002)</span></p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>category</b>: Community <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-medicationrequest-category.html\\\">MedicationRequest Category Codes</a>#community)</span></p><p><b>medication</b>: anastrozole <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/5.3.0/CodeSystem-v3-rxNorm.html\\\">RxNorm</a>#84857)</span></p><p><b>subject</b>: <a href=\\\"Patient-cancer-patient-jenny-m.html\\\">Patient/cancer-patient-jenny-m</a> &quot; M&quot;</p><p><b>authoredOn</b>: 2018-09-30</p><p><b>requester</b>: <a href=\\\"Practitioner-us-core-practitioner-owen-oncologist.html\\\">Practitioner/us-core-practitioner-owen-oncologist</a> &quot; ONCOLOGIST&quot;</p><p><b>reasonReference</b>: <a href=\\\"Condition-primary-cancer-condition-jenny-m.html\\\">Condition/primary-cancer-condition-jenny-m</a></p><blockquote><p><b>dosageInstruction</b></p><p><b>text</b>: 1mg orally once daily</p><p><b>timing</b>: Starting 2018-09-30, Once</p><p><b>route</b>: Oral route (qualifier value) <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#26643006)</span></p><blockquote><p><b>doseAndRate</b></p></blockquote><p><b>maxDosePerPeriod</b>: 1/1 day<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code d = 'd')</span></p></blockquote></div>\"\n },\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/us/mcode/StructureDefinition/mcode-procedure-intent\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"373808002\",\n \"display\": \"Curative - procedure intent (qualifier value)\"\n }\n ]\n }\n }\n ],\n \"status\": \"stopped\",\n \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\",\n \"code\": \"community\"\n }\n ]\n }\n ],\n \"medicationCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\",\n \"code\": \"84857\",\n \"display\": \"anastrozole\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/cancer-patient-jenny-m\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example-encounter\"\n },\n \"authoredOn\": \"2018-09-30\",\n \"reportedReference\": {\n \"reference\": \"Practitioner/practitioner-1\"\n },\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0443\",\n \"code\": \"OP\",\n \"display\": \"Ordering Provider\"\n }\n ]\n }\n ],\n \"requester\": {\n \"reference\": \"Practitioner/us-core-practitioner-owen-oncologist\"\n },\n \"statusReason\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"266721009\",\n \"display\": \"Absent response to treatment\"\n }\n ]\n },\n \"reasonReference\": [\n {\n \"reference\": \"Condition/primary-cancer-condition-jenny-m\"\n }\n ],\n \"dosageInstruction\": [\n {\n \"text\": \"1mg orally once daily\",\n \"timing\": {\n \"repeat\": {\n \"boundsPeriod\": {\n \"start\": \"2018-09-30\"\n }\n }\n },\n \"route\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"26643006\",\n \"display\": \"Oral route (qualifier value)\"\n }\n ]\n },\n \"doseAndRate\": [\n {\n \"doseQuantity\": {\n \"value\": 1,\n \"unit\": \"mg\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg\"\n }\n }\n ],\n \"maxDosePerPeriod\": {\n \"numerator\": {\n \"value\": 1\n },\n \"denominator\": {\n \"value\": 1,\n \"unit\": \"day\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"d\"\n }\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/observation-odh-usual-work-sample\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"observation-odh-usual-work-sample\",\n \"meta\": {\n \"versionId\": \"23\",\n \"lastUpdated\": \"2021-05-26T23:18:45.020+00:00\",\n \"source\": \"#Z8v7wbIsRnZcpksX\",\n \"profile\": [\n \"http://hl7.org/fhir/us/odh/StructureDefinition/odh-UsualWork\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><table xmlns:xsl=\\\"http://www.w3.org/1999/XSL/Transform\\\"><tr><td style=\\\"font-weight: bold\\\">id</td><td><div title=\\\"id\\\">observation-odh-usual-work-sample</div></td></tr><tr><td style=\\\"font-weight: bold\\\">meta</td><td><table><tr><td style=\\\"font-weight: bold\\\">versionId</td><td><div title=\\\"versionId\\\">1</div></td></tr><tr><td style=\\\"font-weight: bold\\\">lastUpdated</td><td><div title=\\\"lastUpdated\\\">2021-05-24T8:53:14.000-04:00</div></td></tr><tr><td style=\\\"font-weight: bold\\\">profile</td><td><div title=\\\"profile\\\">http://hl7.org/fhir/us/odh/StructureDefinition/odh-UsualWork</div></td></tr></table></td></tr><tr><td style=\\\"font-weight: bold\\\">status</td><td><div title=\\\"status\\\">final</div></td></tr><tr><td style=\\\"font-weight: bold\\\">code</td><td><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><div title=\\\"display\\\">History of Usual occupation</div> (\\r\\n \\r\\n \\r\\n <div title=\\\"code\\\">21843-8</div> )\\r\\n \\r\\n \\r\\n \\r\\n </li><li><div title=\\\"system\\\"><a href=\\\"http://loinc.org\\\">http://loinc.org</a></div></li></ul></li></ul></td></tr><tr><td style=\\\"font-weight: bold\\\">subject</td><td><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li/><li><a href=\\\"Patient-patient-odh-maya-gordon.html\\\">Maya Gordon</a></li></ul></td></tr><tr><td style=\\\"font-weight: bold\\\">effectivePeriod</td><td><table><tr><td style=\\\"font-weight: bold\\\">start</td><td><div title=\\\"start\\\">2000-06-01</div></td></tr><tr><td style=\\\"font-weight: bold\\\">end</td><td><div title=\\\"end\\\">2021-05-20</div></td></tr></table></td></tr><tr><td style=\\\"font-weight: bold\\\">valueCodeableConcept</td><td><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><div title=\\\"display\\\">Nursing, psychiatric, and home health aides</div> (\\r\\n \\r\\n \\r\\n <div title=\\\"code\\\">3600</div> )\\r\\n \\r\\n \\r\\n \\r\\n </li><li><div title=\\\"system\\\"><a href=\\\"https://phinvads.cdc.gov/vads/ViewCodeSystem.action?id=2.16.840.1.114222.4.5.314\\\">https://phinvads.cdc.gov/vads/ViewCodeSystem.action?id=2.16.840.1.114222.4.5.314</a></div></li></ul></li></ul></td></tr><tr><td style=\\\"font-weight: bold\\\">component</td><td><table><tr><td style=\\\"font-weight: bold\\\">code</td><td><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><div title=\\\"display\\\">History of Usual industry</div> (\\r\\n \\r\\n \\r\\n <div title=\\\"code\\\">21844-6</div> )\\r\\n \\r\\n \\r\\n \\r\\n </li><li><div title=\\\"system\\\"><a href=\\\"http://loinc.org\\\">http://loinc.org</a></div></li></ul></li></ul></td></tr><tr><td style=\\\"font-weight: bold\\\">valueCodeableConcept</td><td><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><ul style=\\\"list-style:none; padding-left:0; margin:0 0;\\\"><li><div title=\\\"display\\\">Nursing care facilities</div> (\\r\\n \\r\\n \\r\\n <div title=\\\"code\\\">8270</div> )\\r\\n \\r\\n \\r\\n \\r\\n </li><li><div title=\\\"system\\\"><a href=\\\"https://phinvads.cdc.gov/vads/ViewCodeSystem.action?id=2.16.840.1.114222.4.5.315\\\">https://phinvads.cdc.gov/vads/ViewCodeSystem.action?id=2.16.840.1.114222.4.5.315</a></div></li></ul></li></ul></td></tr></table></td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"21843-8\",\n \"display\": \"History of Usual occupation\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/patient-odh-maya-gordon\",\n \"display\": \"Maya Gordon\"\n },\n \"effectivePeriod\": {\n \"start\": \"2018-06-01\",\n \"end\": \"2021-05-07\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:2.16.840.1.114222.4.11.7186\",\n \"code\": \"3600\",\n \"display\": \"Nursing, psychiatric, and home health aides\"\n },\n {\n \"system\": \"urn:oid:2.16.840.1.114222.4.11.7901\",\n \"code\": \"31-1014.00.007136\",\n \"display\": \"Certified Nursing Assistant (CNA) [Nursing Assistants]\"\n }\n ]\n },\n \"component\": [\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"21844-6\",\n \"display\": \"History of Usual industry\"\n }\n ]\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"urn:oid:2.16.840.1.114222.4.11.7187\",\n \"code\": \"8270\",\n \"display\": \"Nursing care facilities\"\n },\n {\n \"system\": \"urn:oid:2.16.840.1.114222.4.11.7900\",\n \"code\": \"6231\",\n \"display\": \"Nursing Care Facilities (Skilled Nursing Facilities)\"\n }\n ]\n }\n },\n {\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"74163-7\",\n \"display\": \"Usual occupation duration\"\n }\n ]\n },\n \"valueQuantity\": {\n \"value\": 21,\n \"unit\": \"a\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"a\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/R4/observation-example\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"example-Observation\",\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"vital-signs\",\n \"display\": \"Vital Signs\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"29463-7\",\n \"display\": \"Body Weight\"\n },\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"3141-9\",\n \"display\": \"Body weight Measured\"\n },\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"27113001\",\n \"display\": \"Body weight\"\n },\n {\n \"system\": \"http://acme.org/devices/clinical-codes\",\n \"code\": \"body-weight\",\n \"display\": \"Body Weight\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"effectiveDateTime\": \"2016-03-28\",\n \"valueQuantity\": {\n \"value\": 185,\n \"unit\": \"lbs\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"[lb_av]\"\n }\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/1-blood-glucose\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"1-blood-glucose\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Blood Glucose Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a blood glucose example for the *US Core Observation Lab Profile*.\"\n }\n ],\n \"versionId\": \"1165\",\n \"lastUpdated\": \"2014-03-09T15:29:58.328+00:00\",\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"blood-glucose\\\" Version \\\"1165\\\" Updated \\\"2016-03-09 03:29:58+0000\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-observation-lab.html\\\">US Core Laboratory Result Observation Profile</a></p></div><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-observation-category.html\\\">Observation Category Codes</a>#laboratory)</span></p><p><b>code</b>: Glucose Bld-mCnc <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://loinc.org/\\\">LOINC</a>#2339-0)</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example: Amy Shaw</a> \\\" SHAW\\\"</p><p><b>effective</b>: 2005-07-05</p><p><b>value</b>: 76.0 mg/dL</p><h3>ReferenceRanges</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Low</b></td><td><b>High</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>40.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>109.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>Normal Range <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-referencerange-meaning.html\\\">Observation Reference Range Meaning Codes</a>#normal)</span></td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ],\n \"text\": \"Laboratory\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose Bld-mCnc\"\n }\n ],\n \"text\": \"Glucose Bld-mCnc\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"effectiveDateTime\": \"2014-01-05\",\n \"valueQuantity\": {\n \"value\": 76,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\"\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 40,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"high\": {\n \"value\": 109,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/referencerange-meaning\",\n \"code\": \"normal\",\n \"display\": \"Normal Range\"\n }\n ],\n \"text\": \"Normal Range\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/2-blood-glucose\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"2-blood-glucose\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Blood Glucose Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a blood glucose example for the *US Core Observation Lab Profile*.\"\n }\n ],\n \"versionId\": \"1165\",\n \"lastUpdated\": \"2015-03-09T15:29:58.328+00:00\",\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"blood-glucose\\\" Version \\\"1165\\\" Updated \\\"2016-03-09 03:29:58+0000\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-observation-lab.html\\\">US Core Laboratory Result Observation Profile</a></p></div><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-observation-category.html\\\">Observation Category Codes</a>#laboratory)</span></p><p><b>code</b>: Glucose Bld-mCnc <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://loinc.org/\\\">LOINC</a>#2339-0)</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example: Amy Shaw</a> \\\" SHAW\\\"</p><p><b>effective</b>: 2005-07-05</p><p><b>value</b>: 76.0 mg/dL</p><h3>ReferenceRanges</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Low</b></td><td><b>High</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>40.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>109.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>Normal Range <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-referencerange-meaning.html\\\">Observation Reference Range Meaning Codes</a>#normal)</span></td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ],\n \"text\": \"Laboratory\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose Bld-mCnc\"\n }\n ],\n \"text\": \"Glucose Bld-mCnc\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"effectiveDateTime\": \"2015-01-05\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"7667005\"\n }\n ]\n },\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 40,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"high\": {\n \"value\": 109,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/referencerange-meaning\",\n \"code\": \"normal\",\n \"display\": \"Normal Range\"\n }\n ],\n \"text\": \"Normal Range\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/3-blood-glucose\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"3-blood-glucose\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Blood Glucose Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a blood glucose example for the *US Core Observation Lab Profile*.\"\n }\n ],\n \"versionId\": \"1165\",\n \"lastUpdated\": \"2016-03-09T15:29:58.328+00:00\",\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"blood-glucose\\\" Version \\\"1165\\\" Updated \\\"2016-03-09 03:29:58+0000\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-observation-lab.html\\\">US Core Laboratory Result Observation Profile</a></p></div><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-observation-category.html\\\">Observation Category Codes</a>#laboratory)</span></p><p><b>code</b>: Glucose Bld-mCnc <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://loinc.org/\\\">LOINC</a>#2339-0)</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example: Amy Shaw</a> \\\" SHAW\\\"</p><p><b>effective</b>: 2005-07-05</p><p><b>value</b>: 76.0 mg/dL</p><h3>ReferenceRanges</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Low</b></td><td><b>High</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>40.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>109.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>Normal Range <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-referencerange-meaning.html\\\">Observation Reference Range Meaning Codes</a>#normal)</span></td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ],\n \"text\": \"Laboratory\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose Bld-mCnc\"\n }\n ],\n \"text\": \"Glucose Bld-mCnc\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"dataAbsentReason\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n \"code\": \"unknown\"\n }\n ]\n },\n \"effectiveDateTime\": \"2016-01-05\",\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 40,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"high\": {\n \"value\": 109,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/referencerange-meaning\",\n \"code\": \"normal\",\n \"display\": \"Normal Range\"\n }\n ],\n \"text\": \"Normal Range\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/4-blood-glucose\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"4-blood-glucose\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Blood Glucose Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a blood glucose example for the *US Core Observation Lab Profile*.\"\n }\n ],\n \"versionId\": \"1165\",\n \"lastUpdated\": \"2017-03-09T15:29:58.328+00:00\",\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"blood-glucose\\\" Version \\\"1165\\\" Updated \\\"2016-03-09 03:29:58+0000\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-observation-lab.html\\\">US Core Laboratory Result Observation Profile</a></p></div><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-observation-category.html\\\">Observation Category Codes</a>#laboratory)</span></p><p><b>code</b>: Glucose Bld-mCnc <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://loinc.org/\\\">LOINC</a>#2339-0)</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example: Amy Shaw</a> \\\" SHAW\\\"</p><p><b>effective</b>: 2005-07-05</p><p><b>value</b>: 76.0 mg/dL</p><h3>ReferenceRanges</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Low</b></td><td><b>High</b></td><td><b>Type</b></td></tr><tr><td>*</td><td>40.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>109.0 mg/dL<span style=\\\"background: LightGoldenRodYellow\\\"> (Details: UCUM code mg/dL = 'mg/dL')</span></td><td>Normal Range <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-referencerange-meaning.html\\\">Observation Reference Range Meaning Codes</a>#normal)</span></td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"laboratory\",\n \"display\": \"Laboratory\"\n }\n ],\n \"text\": \"Laboratory\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"2339-0\",\n \"display\": \"Glucose Bld-mCnc\"\n }\n ],\n \"text\": \"Glucose Bld-mCnc\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"effectiveDateTime\": \"2017-01-05\",\n \"valueString\": \"Specimen shows excessive cytolysis\",\n \"referenceRange\": [\n {\n \"low\": {\n \"value\": 40,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"high\": {\n \"value\": 109,\n \"unit\": \"mg/dL\",\n \"system\": \"http://unitsofmeasure.org\",\n \"code\": \"mg/dL\"\n },\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/referencerange-meaning\",\n \"code\": \"normal\",\n \"display\": \"Normal Range\"\n }\n ],\n \"text\": \"Normal Range\"\n }\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/DiagnosticReport/note-exchange\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"performer\": [\n {\n \"reference\": \"Practitioner/example-Practitioner\"\n }\n ],\n \"id\": \"note-exchange\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"DiagnosticReport Cardiology Report Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a DiagnosticReport cardiology report example for the *US Core DiagnosticReport Note Profile*.\"\n }\n ],\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-note\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><h2><span title=\\\"Codes: {http://loinc.org 45033-8}\\\">Cardiovascular physiologic and EKG assessment panel</span> (<span title=\\\"Codes: {http://loinc.org LP29708-2}\\\">Cardiology</span>) </h2><table class=\\\"grid\\\"><tr><td>Subject</td><td><b>Amy V. Baxter </b> female, DoB: 1987-02-20 ( Medical Record Number: 1032702 (USUAL))</td></tr><tr><td>When For</td><td>2021-11-10 09:39:30+0000</td></tr></table><p><b>Report Details</b></p><table class=\\\"grid\\\"><tr><td><b>Code</b></td><td><b>Value</b></td><td><b>When For</b></td></tr><tr><td><a href=\\\"Observation-qrs-dur-ekg-lead.html\\\"><span title=\\\"Codes: {http://loinc.org 44973-6}\\\">QRS dur {EKG lead}</span></a></td><td>60 ms</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-pulse-intensity-palpation.html\\\"><span title=\\\"Codes: {http://loinc.org 44974-4}\\\">Pulse intensity Palpation</span></a></td><td><span title=\\\"Codes: {http://loinc.org LA11841-6}\\\">1+</span></td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-p-r-interval-ekg-lead.html\\\"><span title=\\\"Codes: {http://loinc.org 44976-9}\\\">P-R interval {EKG lead}</span></a></td><td>0.2 s</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-q-t-interval-ekg-lead.html\\\"><span title=\\\"Codes: {http://loinc.org 44975-1}\\\">Q-T interval {EKG lead}</span></a></td><td>0.4 s</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-jugular-vein-distension.html\\\"><span title=\\\"Codes: {http://loinc.org 69428-1}\\\">Jugular vein distension</span></a></td><td><span title=\\\"Codes: {http://loinc.org LA9634-2}\\\">Absent</span></td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-heart-rate-rhythm.html\\\"><span title=\\\"Codes: {http://loinc.org 8884-9}\\\">Heart rate rhythm</span></a></td><td>Regular (R)</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-ekg-lead.html\\\"><span title=\\\"Codes: {http://loinc.org 44967-8}\\\">EKG lead</span></a></td><td>II</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-ekg-impression.html\\\"><span title=\\\"Codes: {http://loinc.org 8601-7}\\\">EKG impression</span></a></td><td>Normal Sinus Rhythm (NSR)</td><td>2021-11-10 04:48:57-0800</td></tr><tr><td><a href=\\\"Observation-capillary-refill-time-nail-bed.html\\\"><span title=\\\"Codes: {http://loinc.org 44963-7}\\\">Capillary refill Time Nail Bed</span></a></td><td>1 s</td><td>2021-11-10 04:48:57-0800</td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"LP29708-2\",\n \"display\": \"Cardiology\"\n }\n ],\n \"text\": \"Cardiology\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"45033-8\",\n \"display\": \"Cardiovascular physiologic and EKG assessment panel\"\n }\n ],\n \"text\": \"Cardiovascular physiologic and EKG assessment panel\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"issued\": \"2021-02-07T13:28:17.239+02:00\",\n \"effectiveDateTime\": \"2021-11-10T21:39:30.000Z\",\n \"result\": [\n {\n \"reference\": \"Observation/qrs-dur-ekg-lead\"\n },\n {\n \"reference\": \"Observation/pulse-intensity-palpation\"\n },\n {\n \"reference\": \"Observation/p-r-interval-ekg-lead\"\n },\n {\n \"reference\": \"Observation/q-t-interval-ekg-lead\"\n },\n {\n \"reference\": \"Observation/jugular-vein-distension\"\n },\n {\n \"reference\": \"Observation/heart-rate-rhythm\"\n },\n {\n \"reference\": \"Observation/ekg-lead\"\n },\n {\n \"reference\": \"Observation/ekg-impression\"\n },\n {\n \"reference\": \"Observation/capillary-refill-time-nail-bed\"\n }\n ],\n \"media\": [\n {\n \"link\": {\n \"reference\": \"Media/ekg-strip\",\n \"display\": \"EKG Strip\"\n }\n }\n ],\n \"encounter\": {\n \"reference\": \"Encounter/example-Encounter\"\n },\n \"presentedForm\": [\n {\n \"contentType\": \"application/pdf\",\n \"url\": \"http://cancer-report.org/pdfdownloads/cardiopanel-report-123.pdf\",\n \"hash\": \"RVFILy4uQWdNRQo=\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/DiagnosticReport/cbc\",\n \"resource\": {\n \"resourceType\": \"DiagnosticReport\",\n \"id\": \"cbc\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"CBC Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a CBC example for the *US Core DiagnosticReport Lab Profile*.\"\n }\n ],\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport-lab\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><h2><span title=\\\"Codes: {http://loinc.org 58410-2}\\\">CBC panel - Blood by Automated count</span> (<span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0074 LAB}\\\">Laboratory</span>) </h2><table class=\\\"grid\\\"><tr><td>Subject</td><td><b>Amy V. Baxter </b> female, DoB: 1987-02-20 ( Medical Record Number: 1032702 (USUAL))</td></tr><tr><td>When For</td><td>2005-07-05</td></tr><tr><td>Reported</td><td>2005-07-06 11:45:33+1100</td></tr></table><p><b>Report Details</b></p><table class=\\\"grid\\\"><tr><td><b>Code</b></td><td><b>Value</b></td><td><b>Reference Range</b></td><td><b>When For</b></td></tr><tr><td><a href=\\\"Observation-neutrophils.html\\\"><span title=\\\"Codes: {http://loinc.org 770-8}\\\">Neutrophils %</span></a></td><td>40.0 %</td><td><span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/referencerange-meaning normal}\\\">Normal Range</span>: 37.0 % - 67.0 %</td><td>2005-07-05</td></tr><tr><td><a href=\\\"Observation-mchc.html\\\"><span title=\\\"Codes: {http://loinc.org 786-4}\\\">MCHC RBC Auto-mCnc</span></a></td><td>34.7 g/dL</td><td><span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/referencerange-meaning normal}\\\">Normal Range</span>: 30.0 g/dL - 34.0 g/dL</td><td>2005-07-05</td></tr><tr><td><a href=\\\"Observation-hemoglobin.html\\\"><span title=\\\"Codes: {http://loinc.org 718-7}\\\">Hgb Bld-mCnc</span></a></td><td>17.0 g/dL</td><td><span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/referencerange-meaning normal}\\\">Normal Range</span>: 16.5 g/dL - 21.5 g/dL</td><td>2005-07-05</td></tr><tr><td><a href=\\\"Observation-erythrocytes.html\\\"><span title=\\\"Codes: {http://loinc.org 789-8}\\\">RBC # Bld Auto</span></a></td><td>4.58 10*6/uL</td><td><span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/referencerange-meaning normal}\\\">Normal Range</span>: 4.1 10*6/uL - 6.1 10*6/uL</td><td>2005-07-05</td></tr></table></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0074\",\n \"code\": \"LAB\",\n \"display\": \"Laboratory\"\n }\n ]\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"58410-2\",\n \"display\": \"CBC panel - Blood by Automated count\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"effectiveDateTime\": \"2005-07-05\",\n \"issued\": \"2005-07-06T11:45:33+11:00\",\n \"performer\": [\n {\n \"reference\": \"Organization/acme-lab\",\n \"display\": \"Acme Laboratory, Inc\"\n }\n ],\n \"result\": [\n {\n \"reference\": \"Observation/neutrophils\",\n \"display\": \"NEUTROPHILS\"\n },\n {\n \"reference\": \"Observation/mchc\",\n \"display\": \"MCHC\"\n },\n {\n \"reference\": \"Observation/hemoglobin\",\n \"display\": \"HEMOGLOBIN\"\n },\n {\n \"reference\": \"Observation/erythrocytes\",\n \"display\": \"ERYTHROCYTES\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/DocumentReference/example-DocumentReference\",\n \"resource\": {\n \"resourceType\": \"DocumentReference\",\n \"id\": \"example-DocumentReference\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: episode-summary</p><p><b>meta</b>: </p><p><b>identifier</b>: id: urn:oid:2.16.840.1.113883.19.5.99999.1</p><p><b>status</b>: current</p><p><b>type</b>: <span title=\\\"Codes: {http://loinc.org 34133-9}\\\">CCD Document</span></p><p><b>category</b>: <span title=\\\"Codes: {http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category clinical-note}\\\">Clinical Note</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Amy Shaw. Generated Summary: id: example; Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><p><b>date</b>: 10/03/2016 2:29:46 AM</p><p><b>author</b>: <a href=\\\"Practitioner-practitioner-1.html\\\">Ronald Bone, MD. Generated Summary: id: practitioner-1; id: 9941339108, id: 25456; Ronald Bone </a></p><p><b>description</b>: Pulmonology clinic acute visit</p><h3>Contents</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Attachment</b></td><td><b>Format</b></td></tr><tr><td>*</td><td></td><td><span title=\\\"{urn:oid:1.3.6.1.4.1.19376.1.2.3 urn:hl7-org:sdwg:ccda-structuredBody:2.1}\\\">Documents following C-CDA constraints using a structured body</span></td></tr></table><h3>Contexts</h3><table class=\\\"grid\\\"><tr><td>-</td><td><b>Period</b></td></tr><tr><td>*</td><td>23/12/2004 8:00:00 AM --&gt; 23/12/2004 8:01:00 AM</td></tr></table></div>\"\n },\n \"identifier\": [\n {\n \"system\": \"urn:ietf:rfc:3986\",\n \"value\": \"urn:oid:2.16.840.1.113883.19.5.99999.1\"\n }\n ],\n \"status\": \"current\",\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"34133-9\",\n \"display\": \"Summary of episode note\"\n }\n ],\n \"text\": \"CCD Document\"\n },\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n \"code\": \"clinical-note\",\n \"display\": \"Clinical Note\"\n }\n ],\n \"text\": \"Clinical Note\"\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"date\": \"2016-03-09T15:29:46Z\",\n \"author\": [\n {\n \"reference\": \"Practitioner/practitioner-1\",\n \"display\": \"Ronald Bone, MD\"\n }\n ],\n \"description\": \"Pulmonology clinic acute visit\",\n \"content\": [\n {\n \"attachment\": {\n \"contentType\": \"text/plain\",\n \"url\": \"/Binary/1-note\",\n \"data\": \"TWFueSBoYW5kcyBtYWtlIGxpZ2h0IHdvcmsu\",\n \"title\": \"Uri where the data can be found: [base]/Binary/1-note\"\n },\n \"format\": {\n \"system\": \"urn:oid:1.3.6.1.4.1.19376.1.2.3\",\n \"code\": \"urn:hl7-org:sdwg:ccda-structuredBody:2.1\",\n \"display\": \"Documents following C-CDA constraints using a structured body\"\n }\n }\n ],\n \"context\": {\n \"encounter\": [\n {\n \"reference\": \"Encounter/example-encounter\"\n }\n ],\n \"period\": {\n \"start\": \"2004-12-23T08:00:00+11:00\",\n \"end\": \"2004-12-23T08:01:00+11:00\"\n }\n }\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/ServiceRequest/lipid\",\n \"resource\": {\n \"resourceType\": \"ServiceRequest\",\n \"id\": \"lipid\",\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: lipid</p><p><b>contained</b>: , </p><p><b>identifier</b>: Placer = 2345234234234</p><p><b>status</b>: active</p><p><b>intent</b>: original-order</p><p><b>code</b>: Lipid Panel <span>(Details : {http://acme.org/tests code 'LIPID' = 'LIPID)</span></p><p><b>subject</b>: <a>Patient/example</a></p><p><b>encounter</b>: <a>Encounter/example</a></p><p><b>occurrence</b>: 02/05/2013 4:16:00 PM</p><p><b>requester</b>: <a>Practitioner/example</a></p><p><b>performer</b>: <a>Practitioner/f202</a></p><p><b>reasonCode</b>: Fam hx-ischem heart dis <span>(Details : {ICD-9 code 'V173' = 'V173', given as 'Fam hx-ischem heart dis'})</span></p><p><b>supportingInfo</b>: Fasting status. Generated Summary: id: fasting; status: final; Fasting status - Reported <span>(Details : {LOINC code '49541-6' = 'Fasting status - Reported', given as 'Fasting status - Reported'})</span>; Yes <span>(Details : {http://terminology.hl7.org/CodeSystem/v2-0136 code 'Y' = 'Yes', given as 'Yes'})</span></p><p><b>specimen</b>: Serum specimen. Generated Summary: id: serum; 20150107-0012; Serum sample <span>(Details : {SNOMED CT code '119364003' = 'Serum specimen', given as 'Serum sample'})</span></p><p><b>note</b>: patient is afraid of needles</p></div>\"\n },\n \"contained\": [\n {\n \"resourceType\": \"Observation\",\n \"id\": \"fasting\",\n \"status\": \"final\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"49541-6\",\n \"display\": \"Fasting status - Reported\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0136\",\n \"code\": \"Y\",\n \"display\": \"Yes\"\n }\n ]\n }\n },\n {\n \"resourceType\": \"Specimen\",\n \"id\": \"serum\",\n \"identifier\": [\n {\n \"system\": \"http://acme.org/specimens\",\n \"value\": \"20150107-0012\"\n }\n ],\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"119364003\",\n \"display\": \"Serum sample\"\n }\n ]\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"collection\": {\n \"collectedDateTime\": \"2015-08-16T06:40:17Z\"\n }\n }\n ],\n \"identifier\": [\n {\n \"type\": {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\",\n \"code\": \"PLAC\"\n }\n ],\n \"text\": \"Placer\"\n },\n \"system\": \"urn:oid:1.3.4.5.6.7\",\n \"value\": \"2345234234234\"\n }\n ],\n \"status\": \"active\",\n \"intent\": \"original-order\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://acme.org/tests\",\n \"code\": \"LIPID\"\n }\n ],\n \"text\": \"Lipid Panel\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\"\n },\n \"encounter\": {\n \"reference\": \"Encounter/example\"\n },\n \"occurrenceDateTime\": \"2013-05-02T16:16:00-07:00\",\n \"requester\": {\n \"reference\": \"Practitioner/example\"\n },\n \"performer\": [\n {\n \"reference\": \"Practitioner/f202\"\n }\n ],\n \"reasonCode\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/sid/icd-9\",\n \"code\": \"V173\",\n \"display\": \"Fam hx-ischem heart dis\"\n }\n ]\n }\n ],\n \"supportingInfo\": [\n {\n \"reference\": \"#fasting\",\n \"display\": \"Fasting status\"\n }\n ],\n \"specimen\": [\n {\n \"reference\": \"#serum\",\n \"display\": \"Serum specimen\"\n }\n ],\n \"note\": [\n {\n \"text\": \"patient is afraid of needles\"\n }\n ]\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/CarePlan/example-CarePlan\",\n \"resource\": {\n \"resourceType\": \"CarePlan\",\n \"id\": \"example-CarePlan\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan\"\n ]\n },\n \"text\": {\n \"status\": \"additional\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">\\n\\t\\t\\t<strong>Assessment</strong>\\n\\t\\t\\t<ol>\\n\\t\\t\\t\\t<li>Recurrent GI bleed of unknown etiology; hypotension perhaps secondary to this but as likely secondary to polypharmacy.</li>\\n\\t\\t\\t\\t<li>Acute on chronic anemia secondary to #1.</li>\\n\\t\\t\\t\\t<li>Azotemia, acute renal failure with volume loss secondary to #1.</li>\\n\\t\\t\\t\\t<li>Hyperkalemia secondary to #3 and on ACE and K+ supplement.</li>\\n\\t\\t\\t\\t<li>Other chronic diagnoses as noted above, currently stable.</li>\\n\\t\\t\\t</ol>\\n\\t\\t\\t<table>\\n\\t\\t\\t\\t<thead>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<th>Planned Activity</th>\\n\\t\\t\\t\\t\\t\\t<th>Planned Date</th>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</thead>\\n\\t\\t\\t\\t<tbody>\\n\\t\\t\\t\\t\\t<tr>\\n\\t\\t\\t\\t\\t\\t<td>Colonoscopy</td>\\n\\t\\t\\t\\t\\t\\t<td>April 21, 2000</td>\\n\\t\\t\\t\\t\\t</tr>\\n\\t\\t\\t\\t</tbody>\\n\\t\\t\\t</table>\\n\\t\\t</div>\"\n },\n \"status\": \"active\",\n \"intent\": \"order\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n \"code\": \"assess-plan\"\n }\n ]\n }\n ],\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n }\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Procedure/rehab\",\n \"resource\": {\n \"resourceType\": \"Procedure\",\n \"id\": \"rehab\",\n \"meta\": {\n \"extension\": [\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-name\",\n \"valueString\": \"Rehab Example\"\n },\n {\n \"url\": \"http://hl7.org/fhir/StructureDefinition/instance-description\",\n \"valueMarkdown\": \"This is a rehab example for the *US Core Procedure Profile*.\"\n }\n ],\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-procedure\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><div style=\\\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\\\"><p style=\\\"margin-bottom: 0px\\\">Resource \\\"rehab\\\" </p><p style=\\\"margin-bottom: 0px\\\">Profile: <a href=\\\"StructureDefinition-us-core-procedure.html\\\">US Core Procedure Profile</a></p></div><p><b>status</b>: completed</p><p><b>code</b>: Alcohol rehabilitation <span style=\\\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\\\"> (<a href=\\\"https://browser.ihtsdotools.org/\\\">SNOMED CT</a>#24165007 \\\"Alcoholism counseling\\\"; <a href=\\\"http://terminology.hl7.org/3.1.0/CodeSystem-icd10PCS.html\\\">ICD-10 Procedure Codes</a>#HZ30ZZZ \\\"Individual Counseling for Substance Abuse Treatment, Cognitive\\\")</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Patient/example: Amy Shaw</a> \\\" SHAW\\\"</p><p><b>performed</b>: 2002-05-23</p></div>\"\n },\n \"status\": \"completed\",\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"24165007\",\n \"display\": \"Alcoholism counseling\"\n },\n {\n \"system\": \"http://www.cms.gov/Medicare/Coding/ICD10\",\n \"code\": \"HZ30ZZZ\",\n \"display\": \"Individual Counseling for Substance Abuse Treatment, Cognitive\"\n }\n ],\n \"text\": \"Alcohol rehabilitation\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"performedDateTime\": \"2002-05-23\"\n }\n },\n {\n \"fullUrl\": \"http://hl7.org/fhir/us/centrral-cancer-registry-reporting/Observation/example-SmokingStatus\",\n \"resource\": {\n \"resourceType\": \"Observation\",\n \"id\": \"example-SmokingStatus\",\n \"meta\": {\n \"profile\": [\n \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus\"\n ]\n },\n \"text\": {\n \"status\": \"generated\",\n \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\"><p><b>Generated Narrative</b></p><p><b>id</b>: some-day-smoker</p><p><b>meta</b>: </p><p></p><p><b>category</b>: <span title=\\\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category social-history}\\\">Social History</span></p><p><b>code</b>: <span title=\\\"Codes: {http://loinc.org 72166-2}\\\">Tobacco smoking status</span></p><p><b>subject</b>: <a href=\\\"Patient-example.html\\\">Amy Shaw. Generated Summary: id: example; Medical Record Number: 1032702 (USUAL); active; Amy V. Shaw , Amy V. Baxter ; ph: 555-555-5555(HOME), amy.shaw@example.com; gender: female; birthDate: 1987-02-20</a></p><p><b>issued</b>: 18/03/2016 4:27:04 PM</p><p><b>value</b>: <span title=\\\"Codes: {http://snomed.info/sct 428041000124106}\\\">Current some day smoker</span></p></div>\"\n },\n \"status\": \"final\",\n \"category\": [\n {\n \"coding\": [\n {\n \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\",\n \"code\": \"social-history\",\n \"display\": \"Social History\"\n }\n ],\n \"text\": \"Social History\"\n }\n ],\n \"code\": {\n \"coding\": [\n {\n \"system\": \"http://loinc.org\",\n \"code\": \"72166-2\",\n \"display\": \"Tobacco smoking status\"\n }\n ],\n \"text\": \"Tobacco smoking status\"\n },\n \"subject\": {\n \"reference\": \"Patient/example\",\n \"display\": \"Amy Shaw\"\n },\n \"effectiveDateTime\": \"2016-03-18\",\n \"issued\": \"2016-03-18T05:27:04Z\",\n \"valueCodeableConcept\": {\n \"coding\": [\n {\n \"system\": \"http://snomed.info/sct\",\n \"code\": \"428041000124106\"\n }\n ],\n \"text\": \"Current some day smoker\"\n }\n }\n }\n ]\n}"
12
+ }
13
+ ]
14
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "title": "Inferno Reference Server",
3
+ "id": "ccrr_server_inferno_reference",
4
+ "test_suite_id": "ccrr_ehr",
5
+ "inputs": [
6
+ {
7
+ "name": "url",
8
+ "type": "text",
9
+ "title": "FHIR Endpoint",
10
+ "description": "URL of the FHIR endpoint",
11
+ "value": "<%= Inferno::Application['base_url'].include?('localhost:4567') ? 'http://localhost:8080' : Inferno::Application['base_url'].include?('inferno-qa') ? 'https://inferno-qa.healthit.gov' : 'https://inferno.healthit.gov' %>/reference-server/r4"
12
+ },
13
+ {
14
+ "name": "smart_credentials",
15
+ "type": "auth_info",
16
+ "title": "OAuth Credentials",
17
+ "optional": true,
18
+ "value": "{\"access_token\":\"SAMPLE_TOKEN\"}"
19
+ },
20
+ {
21
+ "name": "patient_ids",
22
+ "type": "text",
23
+ "title": "Patient IDs",
24
+ "description": "Comma separated list of patient IDs that in sum contain all MUST SUPPORT elements",
25
+ "value": "355,85"
26
+ },
27
+ {
28
+ "name": "implantable_device_codes",
29
+ "type": "text",
30
+ "title": "Implantable Device Type Code",
31
+ "description": "Enter the code for an Implantable Device type, or multiple codes separated by commas. If blank, Inferno will validate all Device resources against the Implantable Device profile",
32
+ "optional": true,
33
+ "value": null
34
+ },
35
+ {
36
+ "name": "primary_condition_category",
37
+ "type": "text",
38
+ "title": "Primary Condition Category",
39
+ "value": "problem-list-item"
40
+ },
41
+ {
42
+ "name": "secondary_condition_category",
43
+ "type": "text",
44
+ "title": "Secondary Condition Category",
45
+ "value": "problem-list-item"
46
+ },
47
+ {
48
+ "name": "tnm_distant_metastases_category_code",
49
+ "type": "text",
50
+ "title": "Code of TNM Distant Metastases Category",
51
+ "value": "399387003"
52
+ },
53
+ {
54
+ "name": "tnm_primary_tumor_category_code",
55
+ "type": "text",
56
+ "title": "Code of TNM Primary Tumor Category",
57
+ "value": "399504009"
58
+ },
59
+ {
60
+ "name": "tnm_regional_nodes_category_code",
61
+ "type": "text",
62
+ "title": "Code of TNM Regional Nodes Category",
63
+ "value": "399534004"
64
+ },
65
+ {
66
+ "name": "tnm_stage_group_code",
67
+ "type": "text",
68
+ "title": "Code of TNM Stage Group",
69
+ "value": "399537006"
70
+ },
71
+ {
72
+ "name": "medication_administration_effective_date",
73
+ "type": "text",
74
+ "title": "Effective Date Time of Medication Administration",
75
+ "value": "2018-04-22"
76
+ },
77
+ {
78
+ "name": "radiotherapy_procedure_performed_date",
79
+ "type": "text",
80
+ "title": "Date Time of Radiotherapy Procedure",
81
+ "value": "2018-08-15"
82
+ }
83
+ ]
84
+ }