health-data-standards 2.2.1 → 3.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) hide show
  1. data/Gemfile +5 -0
  2. data/lib/health-data-standards.rb +55 -12
  3. data/lib/health-data-standards/export/c32.rb +7 -6
  4. data/lib/health-data-standards/export/cat_1.rb +18 -0
  5. data/lib/health-data-standards/export/ccda.rb +8 -8
  6. data/lib/health-data-standards/export/green_c32/entry.rb +8 -5
  7. data/lib/health-data-standards/export/green_c32/export_generator.rb +1 -1
  8. data/lib/health-data-standards/export/green_c32/record.rb +10 -7
  9. data/lib/health-data-standards/export/hdata/metadata.rb +7 -6
  10. data/lib/health-data-standards/export/helper/cat1_view_helper.rb +133 -0
  11. data/lib/health-data-standards/export/helper/gc32_view_helper.rb +39 -0
  12. data/lib/health-data-standards/export/helper/html_view_helper.rb +23 -0
  13. data/lib/health-data-standards/export/html.rb +22 -10
  14. data/lib/health-data-standards/export/qrda/entry_template_resolver.rb +31 -0
  15. data/lib/health-data-standards/export/qrda/hqmf-qrda-oids.json +638 -0
  16. data/lib/health-data-standards/export/rendering_context.rb +37 -3
  17. data/lib/health-data-standards/export/template_helper.rb +20 -23
  18. data/lib/health-data-standards/export/view_helper.rb +8 -42
  19. data/lib/health-data-standards/import/bundle/importer.rb +148 -0
  20. data/lib/health-data-standards/import/c32/care_goal_importer.rb +14 -26
  21. data/lib/health-data-standards/import/c32/condition_importer.rb +12 -51
  22. data/lib/health-data-standards/import/c32/immunization_importer.rb +9 -27
  23. data/lib/health-data-standards/import/c32/insurance_provider_importer.rb +24 -21
  24. data/lib/health-data-standards/import/c32/patient_importer.rb +27 -34
  25. data/lib/health-data-standards/import/cat1/diagnosis_active_importer.rb +19 -0
  26. data/lib/health-data-standards/import/cat1/diagnosis_inactive_importer.rb +19 -0
  27. data/lib/health-data-standards/import/cat1/diagnostic_study_order_importer.rb +24 -0
  28. data/lib/health-data-standards/import/cat1/encounter_order_importer.rb +24 -0
  29. data/lib/health-data-standards/import/cat1/entry_package.rb +25 -0
  30. data/lib/health-data-standards/import/cat1/gestational_age_importer.rb +42 -0
  31. data/lib/health-data-standards/import/cat1/lab_order_importer.rb +24 -0
  32. data/lib/health-data-standards/import/cat1/medication_dispensed_importer.rb +13 -0
  33. data/lib/health-data-standards/import/cat1/patient_importer.rb +104 -0
  34. data/lib/health-data-standards/import/cat1/procedure_intolerance_importer.rb +13 -0
  35. data/lib/health-data-standards/import/cat1/procedure_order_importer.rb +38 -0
  36. data/lib/health-data-standards/import/cat1/tobacco_use_importer.rb +19 -0
  37. data/lib/health-data-standards/import/ccda/allergy_importer.rb +2 -8
  38. data/lib/health-data-standards/import/ccda/care_goal_importer.rb +1 -1
  39. data/lib/health-data-standards/import/ccda/condition_importer.rb +2 -3
  40. data/lib/health-data-standards/import/ccda/encounter_importer.rb +2 -5
  41. data/lib/health-data-standards/import/ccda/immunization_importer.rb +1 -3
  42. data/lib/health-data-standards/import/ccda/insurance_provider_importer.rb +1 -1
  43. data/lib/health-data-standards/import/ccda/medical_equipment_importer.rb +2 -4
  44. data/lib/health-data-standards/import/ccda/medication_importer.rb +2 -4
  45. data/lib/health-data-standards/import/ccda/patient_importer.rb +1 -1
  46. data/lib/health-data-standards/import/ccda/procedure_importer.rb +2 -6
  47. data/lib/health-data-standards/import/ccda/result_importer.rb +2 -5
  48. data/lib/health-data-standards/import/ccda/vital_sign_importer.rb +2 -3
  49. data/lib/health-data-standards/import/cda/allergy_importer.rb +32 -0
  50. data/lib/health-data-standards/import/cda/condition_importer.rb +51 -0
  51. data/lib/health-data-standards/import/{c32 → cda}/encounter_importer.rb +9 -35
  52. data/lib/health-data-standards/import/cda/entry_finder.rb +22 -0
  53. data/lib/health-data-standards/import/{c32 → cda}/locatable_import_utils.rb +2 -3
  54. data/lib/health-data-standards/import/cda/medical_equipment_importer.rb +24 -0
  55. data/lib/health-data-standards/import/{c32 → cda}/medication_importer.rb +13 -15
  56. data/lib/health-data-standards/import/cda/narrative_reference_handler.rb +35 -0
  57. data/lib/health-data-standards/import/{c32 → cda}/organization_importer.rb +1 -1
  58. data/lib/health-data-standards/import/cda/procedure_importer.rb +35 -0
  59. data/lib/health-data-standards/import/{c32 → cda}/provider_importer.rb +4 -8
  60. data/lib/health-data-standards/import/cda/result_importer.rb +31 -0
  61. data/lib/health-data-standards/import/{c32 → cda}/section_importer.rb +26 -48
  62. data/lib/health-data-standards/import/{c32 → cda}/vital_sign_importer.rb +2 -3
  63. data/lib/health-data-standards/import/green_c32/section_importer.rb +8 -6
  64. data/lib/health-data-standards/import/provider_import_utils.rb +2 -2
  65. data/lib/health-data-standards/models/address.rb +1 -1
  66. data/lib/health-data-standards/models/condition.rb +7 -6
  67. data/lib/health-data-standards/models/cqm/bundle.rb +45 -0
  68. data/lib/health-data-standards/models/cqm/measure.rb +36 -0
  69. data/lib/health-data-standards/models/guarantor.rb +1 -0
  70. data/lib/health-data-standards/models/insurance_provider.rb +2 -0
  71. data/lib/health-data-standards/models/order_information.rb +2 -0
  72. data/lib/health-data-standards/models/record.rb +6 -5
  73. data/lib/health-data-standards/models/svs/value_set.rb +1 -1
  74. data/lib/health-data-standards/railtie.rb +11 -0
  75. data/lib/health-data-standards/tasks/bundle.rake +107 -0
  76. data/lib/health-data-standards/util/code_system_helper.rb +9 -1
  77. data/lib/hqmf-generator/attribute.xml.erb +11 -0
  78. data/lib/hqmf-generator/characteristic_criteria.xml.erb +21 -0
  79. data/lib/hqmf-generator/code.xml.erb +13 -0
  80. data/lib/hqmf-generator/condition_criteria.xml.erb +22 -0
  81. data/lib/hqmf-generator/derivation.xml.erb +6 -0
  82. data/lib/hqmf-generator/description.xml.erb +1 -0
  83. data/lib/hqmf-generator/document.xml.erb +63 -0
  84. data/lib/hqmf-generator/effective_time.xml.erb +4 -0
  85. data/lib/hqmf-generator/encounter_criteria.xml.erb +21 -0
  86. data/lib/hqmf-generator/field.xml.erb +28 -0
  87. data/lib/hqmf-generator/hqmf-generator.rb +292 -0
  88. data/lib/hqmf-generator/observation_criteria.xml.erb +25 -0
  89. data/lib/hqmf-generator/population_criteria.xml.erb +23 -0
  90. data/lib/hqmf-generator/precondition.xml.erb +14 -0
  91. data/lib/hqmf-generator/procedure_criteria.xml.erb +22 -0
  92. data/lib/hqmf-generator/reason.xml.erb +3 -0
  93. data/lib/hqmf-generator/reference.xml.erb +3 -0
  94. data/lib/hqmf-generator/source.xml.erb +6 -0
  95. data/lib/hqmf-generator/specific_occurrence.xml.erb +7 -0
  96. data/lib/hqmf-generator/subset.xml.erb +8 -0
  97. data/lib/hqmf-generator/substance_criteria.xml.erb +26 -0
  98. data/lib/hqmf-generator/supply_criteria.xml.erb +26 -0
  99. data/lib/hqmf-generator/template_id.xml.erb +5 -0
  100. data/lib/hqmf-generator/temporal_relationship.xml.erb +6 -0
  101. data/lib/hqmf-generator/value.xml.erb +24 -0
  102. data/lib/hqmf-generator/variable_criteria.xml.erb +12 -0
  103. data/lib/hqmf-model/attribute.rb +35 -0
  104. data/lib/hqmf-model/data_criteria.json +1123 -0
  105. data/lib/hqmf-model/data_criteria.rb +344 -0
  106. data/lib/hqmf-model/document.rb +178 -0
  107. data/lib/hqmf-model/population_criteria.rb +96 -0
  108. data/lib/hqmf-model/precondition.rb +91 -0
  109. data/lib/hqmf-model/types.rb +319 -0
  110. data/lib/hqmf-model/utilities.rb +52 -0
  111. data/lib/hqmf-parser.rb +56 -0
  112. data/lib/hqmf-parser/1.0/attribute.rb +68 -0
  113. data/lib/hqmf-parser/1.0/comparison.rb +34 -0
  114. data/lib/hqmf-parser/1.0/data_criteria.rb +92 -0
  115. data/lib/hqmf-parser/1.0/data_criteria_oid_xpath.json +91 -0
  116. data/lib/hqmf-parser/1.0/document.rb +203 -0
  117. data/lib/hqmf-parser/1.0/expression.rb +58 -0
  118. data/lib/hqmf-parser/1.0/observation.rb +61 -0
  119. data/lib/hqmf-parser/1.0/population_criteria.rb +75 -0
  120. data/lib/hqmf-parser/1.0/precondition.rb +89 -0
  121. data/lib/hqmf-parser/1.0/range.rb +65 -0
  122. data/lib/hqmf-parser/1.0/restriction.rb +160 -0
  123. data/lib/hqmf-parser/1.0/utilities.rb +41 -0
  124. data/lib/hqmf-parser/2.0/data_criteria.rb +319 -0
  125. data/lib/hqmf-parser/2.0/document.rb +165 -0
  126. data/lib/hqmf-parser/2.0/population_criteria.rb +53 -0
  127. data/lib/hqmf-parser/2.0/precondition.rb +44 -0
  128. data/lib/hqmf-parser/2.0/types.rb +223 -0
  129. data/lib/hqmf-parser/2.0/utilities.rb +30 -0
  130. data/lib/hqmf-parser/converter/pass1/data_criteria_converter.rb +252 -0
  131. data/lib/hqmf-parser/converter/pass1/document_converter.rb +185 -0
  132. data/lib/hqmf-parser/converter/pass1/population_criteria_converter.rb +165 -0
  133. data/lib/hqmf-parser/converter/pass1/precondition_converter.rb +173 -0
  134. data/lib/hqmf-parser/converter/pass1/precondition_extractor.rb +188 -0
  135. data/lib/hqmf-parser/converter/pass1/simple_data_criteria.rb +26 -0
  136. data/lib/hqmf-parser/converter/pass1/simple_operator.rb +89 -0
  137. data/lib/hqmf-parser/converter/pass1/simple_population_criteria.rb +10 -0
  138. data/lib/hqmf-parser/converter/pass1/simple_precondition.rb +51 -0
  139. data/lib/hqmf-parser/converter/pass1/simple_restriction.rb +64 -0
  140. data/lib/hqmf-parser/converter/pass2/comparison_converter.rb +112 -0
  141. data/lib/hqmf-parser/converter/pass2/operator_converter.rb +102 -0
  142. data/lib/hqmf-parser/parser.rb +54 -0
  143. data/lib/hqmf-parser/value_sets/value_set_parser.rb +241 -0
  144. data/lib/util/counter.rb +20 -0
  145. data/templates/{_allergies.c32.erb → c32/_allergies.c32.erb} +0 -0
  146. data/templates/{_allergies_no_current.c32.erb → c32/_allergies_no_current.c32.erb} +0 -0
  147. data/templates/{_care_goals.c32.erb → c32/_care_goals.c32.erb} +0 -0
  148. data/templates/{_code_with_reference.c32.erb → c32/_code_with_reference.c32.erb} +0 -0
  149. data/templates/{_conditions.c32.erb → c32/_conditions.c32.erb} +0 -0
  150. data/templates/{_conditions_no_current.c32.erb → c32/_conditions_no_current.c32.erb} +0 -0
  151. data/templates/{_encounters.c32.erb → c32/_encounters.c32.erb} +0 -0
  152. data/templates/{_immunizations.c32.erb → c32/_immunizations.c32.erb} +0 -0
  153. data/templates/{_medical_equipment.c32.erb → c32/_medical_equipment.c32.erb} +0 -0
  154. data/templates/{_medications.c32.erb → c32/_medications.c32.erb} +0 -0
  155. data/templates/{_medications_no_current.c32.erb → c32/_medications_no_current.c32.erb} +0 -0
  156. data/templates/{_narrative_block.c32.erb → c32/_narrative_block.c32.erb} +0 -0
  157. data/templates/{_procedures.c32.erb → c32/_procedures.c32.erb} +0 -0
  158. data/templates/{_results.c32.erb → c32/_results.c32.erb} +0 -0
  159. data/templates/{_social_history.c32.erb → c32/_social_history.c32.erb} +0 -0
  160. data/templates/{_vital_signs.c32.erb → c32/_vital_signs.c32.erb} +0 -0
  161. data/templates/{show.c32.erb → c32/show.c32.erb} +0 -0
  162. data/templates/cat1/_2.16.840.1.113883.10.20.22.4.85.cat1.erb +18 -0
  163. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.1.cat1.erb +14 -0
  164. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.101.cat1.erb +25 -0
  165. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.103.cat1.erb +12 -0
  166. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.105.cat1.erb +60 -0
  167. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.11.cat1.erb +41 -0
  168. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.12.cat1.erb +50 -0
  169. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.13.cat1.erb +37 -0
  170. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.14.cat1.erb +35 -0
  171. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.17.cat1.erb +22 -0
  172. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.18.cat1.erb +21 -0
  173. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.2.cat1.erb +28 -0
  174. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.20.cat1.erb +20 -0
  175. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.22.cat1.erb +21 -0
  176. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.23.cat1.erb +71 -0
  177. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.28.cat1.erb +20 -0
  178. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.3.cat1.erb +24 -0
  179. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.31.cat1.erb +20 -0
  180. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.32.cat1.erb +15 -0
  181. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.34.cat1.erb +58 -0
  182. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.37.cat1.erb +20 -0
  183. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.38.cat1.erb +16 -0
  184. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.4.cat1.erb +27 -0
  185. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.40.cat1.erb +17 -0
  186. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.41.cat1.erb +38 -0
  187. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.42.cat1.erb +38 -0
  188. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.43.cat1.erb +24 -0
  189. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.44.cat1.erb +24 -0
  190. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.45.cat1.erb +26 -0
  191. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.46.cat1.erb +30 -0
  192. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.47.cat1.erb +26 -0
  193. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.51.cat1.erb +13 -0
  194. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.54.cat1.erb +16 -0
  195. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.55.cat1.erb +10 -0
  196. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.57.cat1.erb +19 -0
  197. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.59.cat1.erb +17 -0
  198. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.62.cat1.erb +36 -0
  199. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.63.cat1.erb +23 -0
  200. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.64.cat1.erb +29 -0
  201. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.66.cat1.erb +34 -0
  202. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.69.cat1.erb +23 -0
  203. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.7.cat1.erb +30 -0
  204. data/templates/cat1/_2.16.840.1.113883.10.20.24.3.76.cat1.erb +32 -0
  205. data/templates/cat1/_measures.cat1.erb +66 -0
  206. data/templates/cat1/_medication_details.cat1.erb +9 -0
  207. data/templates/cat1/_ordinality.cat1.erb +4 -0
  208. data/templates/cat1/_patient_data.cat1.erb +14 -0
  209. data/templates/cat1/_reason.cat1.erb +16 -0
  210. data/templates/cat1/_record_target.cat1.erb +39 -0
  211. data/templates/cat1/_reporting_parameters.cat1.erb +24 -0
  212. data/templates/cat1/_result_value.cat1.erb +16 -0
  213. data/templates/cat1/show.cat1.erb +125 -0
  214. data/templates/{_address.gc32.erb → gc32/_address.gc32.erb} +1 -1
  215. data/templates/gc32/_advance_directive.gc32.erb +5 -0
  216. data/templates/gc32/_allergy.gc32.erb +12 -0
  217. data/templates/{_care_goal.gc32.erb → gc32/_care_goal.gc32.erb} +1 -1
  218. data/templates/gc32/_condition.gc32.erb +10 -0
  219. data/templates/gc32/_encounter.gc32.erb +28 -0
  220. data/templates/gc32/_entry.gc32.erb +3 -0
  221. data/templates/gc32/_entry_attributes.gc32.erb +10 -0
  222. data/templates/gc32/_immunization.gc32.erb +9 -0
  223. data/templates/gc32/_insurance_provider.gc32.erb +28 -0
  224. data/templates/gc32/_medical_equipment.gc32.erb +6 -0
  225. data/templates/gc32/_medication.gc32.erb +91 -0
  226. data/templates/{_name.gc32.erb → gc32/_name.gc32.erb} +0 -0
  227. data/templates/gc32/_organization.gc32.erb +10 -0
  228. data/templates/gc32/_person_attributes.gc32.erb +7 -0
  229. data/templates/gc32/_procedure.gc32.erb +9 -0
  230. data/templates/gc32/_provider.gc32.erb +9 -0
  231. data/templates/gc32/_result.gc32.erb +12 -0
  232. data/templates/gc32/_social_history.gc32.erb +6 -0
  233. data/templates/{_support.gc32.erb → gc32/_support.gc32.erb} +4 -3
  234. data/templates/gc32/_telecom.gc32.erb +1 -0
  235. data/templates/gc32/_vital_sign.gc32.erb +4 -0
  236. data/templates/{record.gc32.erb → gc32/record.gc32.erb} +26 -10
  237. data/templates/html/_entries_by_encounter.html.erb +2 -2
  238. data/templates/html/_entries_by_section.html.erb +1 -1
  239. data/templates/html/_entry.html.erb +16 -21
  240. data/templates/html/_header.html.erb +1 -1
  241. data/templates/html/_section.html.erb +1 -1
  242. data/templates/html/show.html.erb +23 -2
  243. data/templates/metadata.hdata.erb +3 -3
  244. metadata +282 -54
  245. data/lib/health-data-standards/import/c32/allergy_importer.rb +0 -47
  246. data/lib/health-data-standards/import/c32/medical_equipment_importer.rb +0 -45
  247. data/lib/health-data-standards/import/c32/procedure_importer.rb +0 -62
  248. data/lib/health-data-standards/import/c32/result_importer.rb +0 -56
  249. data/templates/_advance_directive.gc32.erb +0 -8
  250. data/templates/_allergy.gc32.erb +0 -23
  251. data/templates/_condition.gc32.erb +0 -9
  252. data/templates/_encounter.gc32.erb +0 -26
  253. data/templates/_entry.gc32.erb +0 -14
  254. data/templates/_immunization.gc32.erb +0 -11
  255. data/templates/_insurance_provider.gc32.erb +0 -0
  256. data/templates/_medical_equipment.gc32.erb +0 -7
  257. data/templates/_medication.gc32.erb +0 -72
  258. data/templates/_organization.gc32.erb +0 -10
  259. data/templates/_procedure.gc32.erb +0 -10
  260. data/templates/_provider.gc32.erb +0 -19
  261. data/templates/_result.gc32.erb +0 -16
  262. data/templates/_social_history.gc32.erb +0 -8
  263. data/templates/_telecom.gc32.erb +0 -1
  264. data/templates/_vital_sign.gc32.erb +0 -7
@@ -1,17 +1,29 @@
1
1
  module HealthDataStandards
2
2
  module Export
3
- module HTML
4
- include TemplateHelper
5
-
6
- def export(patient, concept_map=nil)
7
- self.template_format = "html"
8
- self.template_subdir = "html"
9
- render(:template => 'show', :locals => {:patient => patient, :concept_map=>concept_map})
3
+ class HTML
4
+ def initialize
5
+ template_helper = TemplateHelper.new('html', 'html')
6
+ @rendering_context = RenderingContext.new
7
+ @rendering_context.template_helper = template_helper
8
+ @rendering_context.extensions = [HealthDataStandards::Export::Helper::HTMLViewHelper]
9
+ @code_map ||= self.build_code_map
10
10
  end
11
11
 
12
- extend self
13
-
12
+ def export(patient)
13
+ @rendering_context.render(:template => 'show', :locals => {:patient => patient, :code_map => @code_map})
14
+ end
14
15
 
16
+ def build_code_map
17
+ super_code_map = {}
18
+ val_set_array = HealthDataStandards::SVS::ValueSet.all.to_a
19
+ val_set_array.each do |valset|
20
+ valset.concepts.each do |concept|
21
+ super_code_map[concept.code_system_name] ||= {}
22
+ super_code_map[concept.code_system_name][concept.code] = concept.display_name unless super_code_map[concept.code_system_name][concept.code]
23
+ end
24
+ end
25
+ super_code_map
26
+ end
15
27
  end
16
28
  end
17
- end
29
+ end
@@ -0,0 +1,31 @@
1
+ module HealthDataStandards
2
+ module Export
3
+ module QRDA
4
+ module EntryTemplateResolver
5
+ def hqmf_qrda_oid_map
6
+ if @hqmf_qrda_oid_map.blank?
7
+ template_id_file = File.expand_path('../hqmf-qrda-oids.json', __FILE__)
8
+ @hqmf_qrda_oid_map = JSON.parse(File.read(template_id_file))
9
+ end
10
+ @hqmf_qrda_oid_map
11
+ end
12
+
13
+ def qrda_oid_exist?(oid)
14
+ hqmf_qrda_oid_map.any? {|map_tuple| map_tuple['qrda_oid'] == oid}
15
+ end
16
+
17
+ def qrda_oid_for_hqmf_oid(hqmf_oid)
18
+ oid_tuple = hqmf_qrda_oid_map.find {|map_tuple| map_tuple['hqmf_oid'] == hqmf_oid }
19
+ if oid_tuple.nil?
20
+ puts "no qrda oid for #{hqmf_oid}"
21
+ end
22
+ oid_tuple['qrda_oid']
23
+ end
24
+
25
+ alias :partial_for :qrda_oid_for_hqmf_oid
26
+
27
+ extend self
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,638 @@
1
+ [
2
+ {
3
+ "hqmf_name": "Care Goal",
4
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.9",
5
+ "qrda_name": "Care Goal",
6
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.1"
7
+ },
8
+ {
9
+ "hqmf_name": "Communication: From Patient to Provider",
10
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.30",
11
+ "qrda_name": "Communication from Patient to Provider",
12
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.2"
13
+ },
14
+ {
15
+ "hqmf_name": "Communication: From Provider to Patient",
16
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.31",
17
+ "qrda_name": "Communication from Provider to Patient",
18
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.3"
19
+ },
20
+ {
21
+ "hqmf_name": "Communication: From Provider to Provider",
22
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.29",
23
+ "qrda_name": "Communication from Provider to Provider",
24
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.4"
25
+ },
26
+ {
27
+ "hqmf_name": "Device, Adverse Event",
28
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.34",
29
+ "qrda_name": "Device Adverse Event",
30
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.5"
31
+ },
32
+ {
33
+ "hqmf_name": "Device, Allergy",
34
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.35",
35
+ "qrda_name": "Device Allergy",
36
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.6"
37
+ },
38
+ {
39
+ "hqmf_name": "Device, Applied",
40
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.10",
41
+ "qrda_name": "Device Applied",
42
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.7"
43
+ },
44
+ {
45
+ "hqmf_name": "Device, Intolerance",
46
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.36",
47
+ "qrda_name": "Device Intolerance",
48
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.8"
49
+ },
50
+ {
51
+ "hqmf_name": "Device, Order",
52
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.37",
53
+ "qrda_name": "Device Order",
54
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.9"
55
+ },
56
+ {
57
+ "hqmf_name": "Device, Recommended",
58
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.80",
59
+ "qrda_name": "Device Recommended",
60
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.10"
61
+ },
62
+ {
63
+ "hqmf_name": "Diagnosis, Active",
64
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.2",
65
+ "qrda_name": "Diagnosis Active",
66
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.11"
67
+ },
68
+ {
69
+ "hqmf_name": "Diagnosis, Family History",
70
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.32",
71
+ "qrda_name": "Diagnosis Family History",
72
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.12"
73
+ },
74
+ {
75
+ "hqmf_name": "Diagnosis, Inactive",
76
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.23",
77
+ "qrda_name": "Diagnosis Inactive",
78
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.13"
79
+ },
80
+ {
81
+ "hqmf_name": "Diagnosis, Resolved",
82
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.24",
83
+ "qrda_name": "Diagnosis Resolved",
84
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.14"
85
+ },
86
+ {
87
+ "hqmf_name": "Diagnostic Study Adverse Event",
88
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.38",
89
+ "qrda_name": "Diagnostic Study Adverse Event",
90
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.15"
91
+ },
92
+ {
93
+ "hqmf_name": "Diagnostic Study, Intolerance",
94
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.39",
95
+ "qrda_name": "Diagnostic Study Intolerance",
96
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.16"
97
+ },
98
+ {
99
+ "hqmf_name": "Diagnostic Study, Order",
100
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.40",
101
+ "qrda_name": "Diagnostic Study Order",
102
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.17"
103
+ },
104
+ {
105
+ "hqmf_name": "Diagnostic Study, Performed",
106
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.3",
107
+ "qrda_name": "Diagnostic Study Performed",
108
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.18"
109
+ },
110
+ {
111
+ "hqmf_name": "Diagnostic Study, Recommended",
112
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.40",
113
+ "qrda_name": "Diagnostic Study Recommended",
114
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.19"
115
+ },
116
+ {
117
+ "hqmf_name": "Diagnostic Study, Result",
118
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.11",
119
+ "qrda_name": "Diagnostic Study Result",
120
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.20"
121
+ },
122
+ {
123
+ "hqmf_name": "Discharge Medication (Health Record Field Flow Attribute)",
124
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.199",
125
+ "qrda_name": "Discharge Medication - Active Medication",
126
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.105"
127
+ },
128
+ {
129
+ "hqmf_name": "Encounter, Active",
130
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.81",
131
+ "qrda_name": "Encounter Active",
132
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.21"
133
+ },
134
+ {
135
+ "hqmf_name": "Encounter, Order",
136
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.83",
137
+ "qrda_name": "Encounter Order",
138
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.22"
139
+ },
140
+ {
141
+ "hqmf_name": "Encounter, Performed",
142
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.79",
143
+ "qrda_name": "Encounter Performed",
144
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.23"
145
+ },
146
+ {
147
+ "hqmf_name": "Encounter, Recommended",
148
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.84",
149
+ "qrda_name": "Encounter Recommended",
150
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.24"
151
+ },
152
+ {
153
+ "hqmf_name": "Facility Location (attribute)",
154
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1034",
155
+ "qrda_name": "Facility Location",
156
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.100"
157
+ },
158
+ {
159
+ "hqmf_name": "Functional Status, Order",
160
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.86",
161
+ "qrda_name": "Functional Status Order",
162
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.25"
163
+ },
164
+ {
165
+ "hqmf_name": "Functional Status, Performed",
166
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.85",
167
+ "qrda_name": "Functional Status Performed",
168
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.26"
169
+ },
170
+ {
171
+ "hqmf_name": "Functional Status, Recommended",
172
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.87",
173
+ "qrda_name": "Functional Status Recommended",
174
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.27"
175
+ },
176
+ {
177
+ "hqmf_name": "Functional Status, Result",
178
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.88",
179
+ "qrda_name": "Functional Status Result",
180
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.28"
181
+ },
182
+ {
183
+ "hqmf_name": "Incision Datetime (attribute)",
184
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1007",
185
+ "qrda_name": "Incision Datetime",
186
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.89"
187
+ },
188
+ {
189
+ "hqmf_name": "Intervention, Adverse Event",
190
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.43",
191
+ "qrda_name": "Intervention Adverse Event",
192
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.29"
193
+ },
194
+ {
195
+ "hqmf_name": "Intervention, Intolerance",
196
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.44",
197
+ "qrda_name": "Intervention Intolerance",
198
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.30"
199
+ },
200
+ {
201
+ "hqmf_name": "Intervention, Order",
202
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.45",
203
+ "qrda_name": "Intervention Order",
204
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.31"
205
+ },
206
+ {
207
+ "hqmf_name": "Intervention, Performed",
208
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.46",
209
+ "qrda_name": "Intervention Performed",
210
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.32"
211
+ },
212
+ {
213
+ "hqmf_name": "Intervention, Recommended",
214
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.89",
215
+ "qrda_name": "Intervention Recommended",
216
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.33"
217
+ },
218
+ {
219
+ "hqmf_name": "Intervention, Result",
220
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.47",
221
+ "qrda_name": "Intervention Result",
222
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.34"
223
+ },
224
+ {
225
+ "hqmf_name": "Laboratory Test, Adverse Event",
226
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.48",
227
+ "qrda_name": "Laboratory Test Adverse Event",
228
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.35"
229
+ },
230
+ {
231
+ "hqmf_name": "Laboratory Test, Intolerance",
232
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.49",
233
+ "qrda_name": "Laboratory Test Intolerance",
234
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.36"
235
+ },
236
+ {
237
+ "hqmf_name": "Laboratory Test, Order",
238
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.50",
239
+ "qrda_name": "Laboratory Test Order",
240
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.37"
241
+ },
242
+ {
243
+ "hqmf_name": "Laboratory Test, Performed",
244
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.5",
245
+ "qrda_name": "Laboratory Test Performed",
246
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.38"
247
+ },
248
+ {
249
+ "hqmf_name": "Laboratory Test, Recommended",
250
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.90",
251
+ "qrda_name": "Laboratory Test Recommended",
252
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.39"
253
+ },
254
+ {
255
+ "hqmf_name": "Laboratory Test, Result",
256
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.12",
257
+ "qrda_name": "Laboratory Test Result",
258
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.40"
259
+ },
260
+ {
261
+ "hqmf_name": "Medication, Active",
262
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.13",
263
+ "qrda_name": "Medication Active",
264
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.41"
265
+ },
266
+ {
267
+ "hqmf_name": "Medication, Administered",
268
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.14",
269
+ "qrda_name": "Medication Administered",
270
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.42"
271
+ },
272
+ {
273
+ "hqmf_name": "Medication, Adverse Effects",
274
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.7",
275
+ "qrda_name": "Medication Adverse Effect",
276
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.43"
277
+ },
278
+ {
279
+ "hqmf_name": "Medication, Allergy",
280
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1",
281
+ "qrda_name": "Medication Allergy",
282
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.44"
283
+ },
284
+ {
285
+ "hqmf_name": "Medication, Dispensed",
286
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.8",
287
+ "qrda_name": "Medication Dispensed",
288
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.45"
289
+ },
290
+ {
291
+ "hqmf_name": "Medication, Intolerance",
292
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.15",
293
+ "qrda_name": "Medication Intolerance",
294
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.46"
295
+ },
296
+ {
297
+ "hqmf_name": "Medication, Order",
298
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.17",
299
+ "qrda_name": "Medication Order",
300
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.47"
301
+ },
302
+ {
303
+ "hqmf_name": "Patient Care Experience",
304
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.96",
305
+ "qrda_name": "Patient Care Experience",
306
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.48"
307
+ },
308
+ {
309
+ "hqmf_name": "Patient CharacteristicGestational Age",
310
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1001",
311
+ "qrda_name": "Patient Characteristic Gestational Age",
312
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.101"
313
+ },
314
+ {
315
+ "hqmf_name": "Patient Characteristic Clinical Trial Participant",
316
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.401",
317
+ "qrda_name": "Patient Characteristic Clinical Trial Participant",
318
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.51"
319
+ },
320
+ {
321
+ "hqmf_name": "Patient Characteristic Expired",
322
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.404",
323
+ "qrda_name": "Patient Characteristic Expired",
324
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.54"
325
+ },
326
+ {
327
+ "hqmf_name": "Patient Characteristic Payer",
328
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.405",
329
+ "qrda_name": "Patient Characteristic Payer",
330
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.55"
331
+ },
332
+ {
333
+ "hqmf_name": "Patient Charactersitic, ECOG Performance Status Poor",
334
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1001",
335
+ "qrda_name": "Patient Characteristic Observation Assertion",
336
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.103"
337
+ },
338
+ {
339
+ "hqmf_name": "Patient Charactersitic, Estimated Date of Conception",
340
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1001",
341
+ "qrda_name": "Patient Characteristic Estimated Date of Conception",
342
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.102"
343
+ },
344
+ {
345
+ "hqmf_name": "Patient Charactersitic, Tobacco user and Non-User",
346
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1001",
347
+ "qrda_name": "Tobacco Use",
348
+ "qrda_oid": "2.16.840.1.113883.10.20.22.4.85"
349
+ },
350
+ {
351
+ "hqmf_name": "Patient Preference (attribute)",
352
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1013",
353
+ "qrda_name": "Patient Preference",
354
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.83"
355
+ },
356
+ {
357
+ "hqmf_name": "Physical Exam, Finding",
358
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.18",
359
+ "qrda_name": "Physical Exam Finding",
360
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.57"
361
+ },
362
+ {
363
+ "hqmf_name": "Physical Exam, Order",
364
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.56",
365
+ "qrda_name": "Physical Exam Order",
366
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.58"
367
+ },
368
+ {
369
+ "hqmf_name": "Physical Exam, Performed",
370
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.57",
371
+ "qrda_name": "Physical Exam Performed",
372
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.59"
373
+ },
374
+ {
375
+ "hqmf_name": "Physical Exam, Recommended",
376
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.91",
377
+ "qrda_name": "Physical Exam Recommended",
378
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.60"
379
+ },
380
+ {
381
+ "hqmf_name": "Procedure, Adverse Event",
382
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.60",
383
+ "qrda_name": "Procedure Adverse Event",
384
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.61"
385
+ },
386
+ {
387
+ "hqmf_name": "Procedure, Intolerance",
388
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.61",
389
+ "qrda_name": "Procedure Intolerance",
390
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.62"
391
+ },
392
+ {
393
+ "hqmf_name": "Procedure, Order",
394
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.62",
395
+ "qrda_name": "Procedure Order",
396
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.63"
397
+ },
398
+ {
399
+ "hqmf_name": "Procedure, Performed",
400
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.6",
401
+ "qrda_name": "Procedure Performed",
402
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.64"
403
+ },
404
+ {
405
+ "hqmf_name": "Procedure, Recommended",
406
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.92",
407
+ "qrda_name": "Procedure Recommended",
408
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.65"
409
+ },
410
+ {
411
+ "hqmf_name": "Procedure, Result",
412
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.63",
413
+ "qrda_name": "Procedure Result",
414
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.66"
415
+ },
416
+ {
417
+ "hqmf_name": "Provider Care Experience",
418
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.28",
419
+ "qrda_name": "Provider Care Experience",
420
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.67"
421
+ },
422
+ {
423
+ "hqmf_name": "Provider Preference (attribute)",
424
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1014",
425
+ "qrda_name": "Provider Preference",
426
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.84"
427
+ },
428
+ {
429
+ "hqmf_name": "Radiation Dosage (attribute)",
430
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1015",
431
+ "qrda_name": "Radiation Dosage and Duration",
432
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.91"
433
+ },
434
+ {
435
+ "hqmf_name": "Radiation Duration (attribute)",
436
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.10005",
437
+ "qrda_name": "Radiation Dosage and Duration",
438
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.91"
439
+ },
440
+ {
441
+ "hqmf_name": "Reaction (attribute)",
442
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1016.1",
443
+ "qrda_name": "Reaction",
444
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.85"
445
+ },
446
+ {
447
+ "hqmf_name": "Reason (attribute)",
448
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1017.1",
449
+ "qrda_name": "Reason",
450
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.88"
451
+ },
452
+ {
453
+ "hqmf_name": "Result (attribute)",
454
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1019",
455
+ "qrda_name": "Result",
456
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.87"
457
+ },
458
+ {
459
+ "hqmf_name": "Risk Category Assessment",
460
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.21",
461
+ "qrda_name": "Risk Category Assessment",
462
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.69"
463
+ },
464
+ {
465
+ "hqmf_name": "Severity (attribute)",
466
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1021",
467
+ "qrda_name": "Severity Observation",
468
+ "qrda_oid": "2.16.840.1.113883.10.20.22.4.8"
469
+ },
470
+ {
471
+ "hqmf_name": "Status (attribute)",
472
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.1022",
473
+ "qrda_name": "Status",
474
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.93"
475
+ },
476
+ {
477
+ "hqmf_name": "Substance, Administered",
478
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.64",
479
+ "qrda_name": "Medication Administered",
480
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.42"
481
+ },
482
+ {
483
+ "hqmf_name": "Substance, Adverse Event",
484
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.65",
485
+ "qrda_name": "Medication Adverse Effect",
486
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.43"
487
+ },
488
+ {
489
+ "hqmf_name": "Substance, Allergy",
490
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.66",
491
+ "qrda_name": "Medication Allergy",
492
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.44"
493
+ },
494
+ {
495
+ "hqmf_name": "Substance, Intolerance",
496
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.67",
497
+ "qrda_name": "Medication Intolerance",
498
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.46"
499
+ },
500
+ {
501
+ "hqmf_name": "Substance, Order",
502
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.68",
503
+ "qrda_name": "Medication Order",
504
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.47"
505
+ },
506
+ {
507
+ "hqmf_name": "Substance, Recommended",
508
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.93",
509
+ "qrda_name": "Substance Recommended",
510
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.75"
511
+ },
512
+ {
513
+ "hqmf_name": "Symptom, Active",
514
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.69",
515
+ "qrda_name": "Symptom Active",
516
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.76"
517
+ },
518
+ {
519
+ "hqmf_name": "Symptom, Assessed",
520
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.70",
521
+ "qrda_name": "Symptom Assessed",
522
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.77"
523
+ },
524
+ {
525
+ "hqmf_name": "Symptom, Inactive",
526
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.97",
527
+ "qrda_name": "Symptom Inactive",
528
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.78"
529
+ },
530
+ {
531
+ "hqmf_name": "Symptom, Resolved",
532
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.98",
533
+ "qrda_name": "Symptom Resolved",
534
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.79"
535
+ },
536
+ {
537
+ "hqmf_name": "Transfer From (attribute)",
538
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.71",
539
+ "qrda_name": "Transfer From",
540
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.81"
541
+ },
542
+ {
543
+ "hqmf_name": "Transfer To (attribute)",
544
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.72",
545
+ "qrda_name": "Transfer To",
546
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.82"
547
+ },
548
+ {
549
+ "hqmf_name": "Laboratory Test, not Performed",
550
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.105",
551
+ "qrda_name": "Laboratory Test Performed",
552
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.38"
553
+ },
554
+ {
555
+ "hqmf_name": "Diagnostic Study, not Performed",
556
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.103",
557
+ "qrda_name": "Diagnostic Study Performed",
558
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.18"
559
+ },
560
+ {
561
+ "hqmf_name": "Procedure, not Performed",
562
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.106",
563
+ "qrda_name": "Procedure Performed",
564
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.64"
565
+ },
566
+ {
567
+ "hqmf_name": "Medication, not Administered",
568
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.114",
569
+ "qrda_name": "Medication Administered",
570
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.42"
571
+ },
572
+ {
573
+ "hqmf_name": "Intervention, not Performed",
574
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.146",
575
+ "qrda_name": "Intervention Performed",
576
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.32"
577
+ },
578
+ {
579
+ "hqmf_name": "Medication, not Active",
580
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.113",
581
+ "qrda_name": "Medication Active",
582
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.41"
583
+ },
584
+ {
585
+ "hqmf_name": "Medication, Order not done",
586
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.78",
587
+ "qrda_name": "Medication Order",
588
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.47"
589
+ },
590
+ {
591
+ "hqmf_name": "Device, Applied not done",
592
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.110",
593
+ "qrda_name": "Device Applied",
594
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.7"
595
+ },
596
+ {
597
+ "hqmf_name": "Procedure, Order not done",
598
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.162",
599
+ "qrda_name": "Procedure Order",
600
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.63"
601
+ },
602
+ {
603
+ "hqmf_name": "Substance, Administered not done",
604
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.164",
605
+ "qrda_name": "Medication Administered",
606
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.42"
607
+ },
608
+ {
609
+ "hqmf_name": "Communication: From Provider to Provider not done",
610
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.129",
611
+ "qrda_name": "Communication from Provider to Provider",
612
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.4"
613
+ },
614
+ {
615
+ "hqmf_name": "Risk Category Assessment not done",
616
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.121",
617
+ "qrda_name": "Risk Category Assessment",
618
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.69"
619
+ },
620
+ {
621
+ "hqmf_name": "Diagnostic Study, Result not done",
622
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.111",
623
+ "qrda_name": "Diagnostic Study Result",
624
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.20"
625
+ },
626
+ {
627
+ "hqmf_name": "Communication: From Provider to Patient not done",
628
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.131",
629
+ "qrda_name": "Communication from Provider to Patient",
630
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.3"
631
+ },
632
+ {
633
+ "hqmf_name": "Physical Exam, Performed not done",
634
+ "hqmf_oid": "2.16.840.1.113883.3.560.1.157",
635
+ "qrda_name": "Physical Exam Performed",
636
+ "qrda_oid": "2.16.840.1.113883.10.20.24.3.59"
637
+ }
638
+ ]