hqmf-parser 1.0.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 (49) hide show
  1. data/Gemfile +23 -0
  2. data/README.md +903 -0
  3. data/Rakefile +19 -0
  4. data/VERSION +1 -0
  5. data/lib/hqmf-generator/hqmf-generator.rb +308 -0
  6. data/lib/hqmf-model/attribute.rb +35 -0
  7. data/lib/hqmf-model/data_criteria.rb +322 -0
  8. data/lib/hqmf-model/document.rb +172 -0
  9. data/lib/hqmf-model/population_criteria.rb +90 -0
  10. data/lib/hqmf-model/precondition.rb +85 -0
  11. data/lib/hqmf-model/types.rb +318 -0
  12. data/lib/hqmf-model/utilities.rb +52 -0
  13. data/lib/hqmf-parser.rb +54 -0
  14. data/lib/hqmf-parser/1.0/attribute.rb +68 -0
  15. data/lib/hqmf-parser/1.0/comparison.rb +34 -0
  16. data/lib/hqmf-parser/1.0/data_criteria.rb +105 -0
  17. data/lib/hqmf-parser/1.0/document.rb +209 -0
  18. data/lib/hqmf-parser/1.0/expression.rb +52 -0
  19. data/lib/hqmf-parser/1.0/population_criteria.rb +79 -0
  20. data/lib/hqmf-parser/1.0/precondition.rb +89 -0
  21. data/lib/hqmf-parser/1.0/range.rb +65 -0
  22. data/lib/hqmf-parser/1.0/restriction.rb +157 -0
  23. data/lib/hqmf-parser/1.0/utilities.rb +41 -0
  24. data/lib/hqmf-parser/2.0/data_criteria.rb +319 -0
  25. data/lib/hqmf-parser/2.0/document.rb +165 -0
  26. data/lib/hqmf-parser/2.0/population_criteria.rb +53 -0
  27. data/lib/hqmf-parser/2.0/precondition.rb +44 -0
  28. data/lib/hqmf-parser/2.0/types.rb +223 -0
  29. data/lib/hqmf-parser/2.0/utilities.rb +30 -0
  30. data/lib/hqmf-parser/converter/pass1/data_criteria_converter.rb +254 -0
  31. data/lib/hqmf-parser/converter/pass1/document_converter.rb +183 -0
  32. data/lib/hqmf-parser/converter/pass1/population_criteria_converter.rb +135 -0
  33. data/lib/hqmf-parser/converter/pass1/precondition_converter.rb +164 -0
  34. data/lib/hqmf-parser/converter/pass1/precondition_extractor.rb +159 -0
  35. data/lib/hqmf-parser/converter/pass1/simple_data_criteria.rb +35 -0
  36. data/lib/hqmf-parser/converter/pass1/simple_operator.rb +89 -0
  37. data/lib/hqmf-parser/converter/pass1/simple_population_criteria.rb +10 -0
  38. data/lib/hqmf-parser/converter/pass1/simple_precondition.rb +63 -0
  39. data/lib/hqmf-parser/converter/pass1/simple_restriction.rb +64 -0
  40. data/lib/hqmf-parser/converter/pass2/comparison_converter.rb +91 -0
  41. data/lib/hqmf-parser/converter/pass2/operator_converter.rb +169 -0
  42. data/lib/hqmf-parser/converter/pass3/specific_occurrence_converter.rb +86 -0
  43. data/lib/hqmf-parser/converter/pass3/specific_occurrence_converter_bak.rb +70 -0
  44. data/lib/hqmf-parser/parser.rb +22 -0
  45. data/lib/hqmf-parser/value_sets/value_set_parser.rb +206 -0
  46. data/lib/tasks/coverme.rake +8 -0
  47. data/lib/tasks/hqmf.rake +141 -0
  48. data/lib/tasks/value_sets.rake +23 -0
  49. metadata +159 -0
data/Gemfile ADDED
@@ -0,0 +1,23 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'rake'
4
+ gem 'pry'
5
+ gem 'pry-nav'
6
+ gem 'nokogiri'
7
+ gem 'rubyzip'
8
+
9
+ #gem "health-data-standards", :git => 'http://github.com/projectcypress/health-data-standards.git', :branch => 'develop'
10
+ gem "health-data-standards", '2.1.1'
11
+ gem "bson_ext"
12
+
13
+ # below are gems required for excel spreadsheet processing
14
+ gem 'spreadsheet', '0.6.8'
15
+ gem 'google-spreadsheet-ruby', '0.1.8'
16
+ gem 'roo', '1.10.1'
17
+
18
+ group :test do
19
+ gem 'minitest'
20
+ gem 'turn', :require => false
21
+ gem 'cover_me', '~> 1.2.0'
22
+ gem 'awesome_print', :require => 'ap'
23
+ end
data/README.md ADDED
@@ -0,0 +1,903 @@
1
+ This is a project to consume HQMF XML Files and produce json
2
+
3
+ Environment
4
+ ===========
5
+
6
+ This project currently uses Ruby 1.9.2 and is built using [Bundler](http://gembundler.com/). To get all of the dependencies for the project, first install bundler:
7
+
8
+ gem install bundler
9
+
10
+ Then run bundler to grab all of the necessary gems:
11
+
12
+ bundle install
13
+
14
+ Project Practices
15
+ =================
16
+
17
+ Please try to follow our [Coding Style Guides](http://github.com/eedrummer/styleguide). Additionally, we will be using git in a pattern similar to [Vincent Driessen's workflow](http://nvie.com/posts/a-successful-git-branching-model/). While feature branches are encouraged, they are not required to work on the project.
18
+
19
+ License
20
+ =======
21
+
22
+ Copyright 2011 The MITRE Corporation
23
+
24
+ Licensed under the Apache License, Version 2.0 (the "License");
25
+ you may not use this file except in compliance with the License.
26
+ You may obtain a copy of the License at
27
+
28
+ http://www.apache.org/licenses/LICENSE-2.0
29
+
30
+ Unless required by applicable law or agreed to in writing, software
31
+ distributed under the License is distributed on an "AS IS" BASIS,
32
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
33
+ See the License for the specific language governing permissions and
34
+ limitations under the License.
35
+
36
+ Data Mappings
37
+ =======
38
+
39
+ PATIENT API FUNCTIONS
40
+ allProblems => conditions, socialHistories, procedures
41
+ encounters => encounters
42
+ allProcedures => procedures, immunizations, medications
43
+ procedureResults => results, vitalSigns, procedures
44
+ allergies => allergies
45
+ allMedications => medications, immunizations
46
+ laboratoryTests => results, vitalSigns
47
+ careGoals => careGoals
48
+ procedures => procedures
49
+ allDevices => conditions, procedures, careGoals, medicalEquipment
50
+
51
+ CATEGORIES
52
+ characteristic
53
+ encounters
54
+ procedures
55
+ conditions
56
+ diagnostic_studies
57
+ medications
58
+ physical_exams
59
+ laboratory_tests
60
+ care_goals
61
+ communications
62
+ devices
63
+ substances
64
+ interventions
65
+ symptoms
66
+ functional_statuses
67
+ risk_category_assessments
68
+ provider_care_experiences
69
+ patient_care_experiences
70
+ preferences
71
+ system_characteristics
72
+ provider_characteristics
73
+ transfers
74
+
75
+ SUB CATEGORIES BY CATEGORY
76
+ characteristic
77
+ birthdate
78
+ age
79
+ marital_status
80
+ languages
81
+ clinical_trial_participant
82
+ gender
83
+ ethnicity
84
+ expired
85
+ payer
86
+ race
87
+ procedures
88
+ result
89
+ adverse_event
90
+ intolerance
91
+ conditions
92
+ family_history
93
+ risk_of
94
+ diagnostic_studies
95
+ result
96
+ adverse_event
97
+ intolerance
98
+ medications
99
+ adverse_effects
100
+ allergy
101
+ intolerance
102
+ laboratory_tests
103
+ adverse_event
104
+ intolerance
105
+ communications
106
+ from_patient_to_provider
107
+ from_provider_to_patient
108
+ from_provider_to_provider
109
+ devices
110
+ adverse_event
111
+ allergy
112
+ intolerance
113
+ substances
114
+ adverse_event
115
+ intolerance
116
+ allergy
117
+ interventions
118
+ adverse_event
119
+ intolerance
120
+ result
121
+ functional_statuses
122
+ result
123
+ preferences
124
+ provider
125
+ patient
126
+ system_characteristics
127
+ provider_characteristics
128
+ transfers
129
+ from
130
+ to
131
+
132
+
133
+ STATUSES
134
+ active, performed, ordered, recommended, resolved, inactive, dispensed, administered, applied, assessed, final report
135
+
136
+
137
+ STATUSES BY CATEGORY
138
+
139
+ encounters
140
+ active
141
+ performed
142
+ ordered
143
+ recommended
144
+ procedures
145
+ performed
146
+ ordered
147
+ recommended
148
+ final report
149
+ conditions
150
+ active
151
+ resolved
152
+ inactive
153
+ diagnostic_studies
154
+ performed
155
+ ordered
156
+ final report
157
+ medications
158
+ dispensed
159
+ ordered
160
+ active
161
+ administered
162
+ physical_exams
163
+ ordered
164
+ performed
165
+ recommended
166
+ laboratory_tests
167
+ performed
168
+ ordered
169
+ recommended
170
+ devices
171
+ applied
172
+ ordered
173
+ recommended
174
+ substances
175
+ administered
176
+ ordered
177
+ recommended
178
+ interventions
179
+ ordered
180
+ performed
181
+ recommended
182
+ symptoms
183
+ active
184
+ assessed
185
+ inactive
186
+ resolved
187
+ functional_statuses
188
+ performed
189
+ ordered
190
+ recommended
191
+
192
+ STAGE 2 Data Criteria
193
+ communication_from_patient_to_provider
194
+ communication_from_provider_to_provider
195
+ device_applied
196
+ diagnosis_active
197
+ diagnosis_family_history
198
+ diagnosis_inactive
199
+ diagnosis_resolved
200
+ diagnostic_study_ordered
201
+ diagnostic_study_performed
202
+ diagnostic_study_result
203
+ encounter_active
204
+ encounter_ordered
205
+ encounter_performed
206
+ functional_status_result
207
+ intervention_ordered
208
+ intervention_performed
209
+ intervention_result
210
+ laboratory_test
211
+ laboratory_test_ordered
212
+ laboratory_test_performed
213
+ MeasurePeriod
214
+ medication_active
215
+ medication_administered
216
+ medication_allergy
217
+ medication_dispensed
218
+ medication_intolerance
219
+ medication_ordered
220
+ patient_characteristic
221
+ patient_characteristic_birthdate
222
+ patient_characteristic_clinical_trial_participant
223
+ patient_characteristic_expired
224
+ patient_characteristic_gender
225
+ physical_exam
226
+ physical_exam_performed
227
+ procedure_intolerance
228
+ procedure_ordered
229
+ procedure_performed
230
+ procedure_result
231
+ risk_category_assessment
232
+
233
+ STAGE 2 Definitions
234
+ communication_from_patient_to_provider
235
+ communication_from_provider_to_provider
236
+ device
237
+ diagnosis
238
+ diagnosis_family_history
239
+ diagnostic_study
240
+ diagnostic_study_result
241
+ encounter
242
+ functional_status_result
243
+ intervention
244
+ intervention_result
245
+ laboratory_test
246
+ medication
247
+ medication_allergy
248
+ medication_intolerance
249
+ patient_characteristic
250
+ patient_characteristic_birthdate
251
+ patient_characteristic_clinical_trial_participant
252
+ patient_characteristic_expired
253
+ patient_characteristic_gender
254
+ physical_exam
255
+ procedure_intolerance
256
+ procedure
257
+ procedure_result
258
+ risk_category_assessment
259
+
260
+ CHARACTERISTIC
261
+ -------
262
+ 2.16.840.1.113883.3.560.1.1001
263
+ patient_characteristic
264
+ allProblems
265
+ 2.16.840.1.113883.3.560.1.25
266
+ patient_characteristic_birthdate
267
+ birthtime
268
+ 2.16.840.1.113883.3.560.1.400
269
+ patient_characteristic_birthdate
270
+ birthtime
271
+ 2.16.840.1.113883.3.560.1.401
272
+ patient_characteristic_clinical_trial_participant
273
+ clinical_trial_participant
274
+ 2.16.840.1.113883.3.560.1.402
275
+ patient_characteristic_gender
276
+ gender
277
+ 2.16.840.1.113883.3.560.1.403
278
+ patient_characteristic_ethnicity
279
+ ethnicity
280
+ 2.16.840.1.113883.3.560.1.404
281
+ patient_characteristic_expired
282
+ expired
283
+ 2.16.840.1.113883.3.560.1.405
284
+ patient_characteristic_payer
285
+ payer
286
+ 2.16.840.1.113883.3.560.1.406
287
+ patient_characteristic_race
288
+ race
289
+
290
+ ENCOUNTERS
291
+ -------
292
+ 2.16.840.1.113883.3.560.1.4
293
+ encounter
294
+ encounters
295
+ 2.16.840.1.113883.3.560.1.81
296
+ encounter_active
297
+ encounters
298
+ 2.16.840.1.113883.3.560.1.79
299
+ encounter_performed
300
+ encounters
301
+ 2.16.840.1.113883.3.560.1.82
302
+ encounter_performed
303
+ encounters
304
+ 2.16.840.1.113883.3.560.1.83
305
+ encounter_ordered
306
+ encounters
307
+ 2.16.840.1.113883.3.560.1.84
308
+ encounter_recommended
309
+ encounters
310
+ 2.16.840.1.113883.3.560.1.179
311
+ encounter_performed
312
+ encounters
313
+ negation=true
314
+ 2.16.840.1.113883.3.560.1.182
315
+ encounter_performed
316
+ encounters
317
+ NEGATION
318
+ 2.16.840.1.113883.3.560.1.181
319
+ encounter_active
320
+ encounters
321
+ NEGATION
322
+ 2.16.840.1.113883.3.560.1.183
323
+ encounter_ordered
324
+ encounters
325
+ NEGATION
326
+ 2.16.840.1.113883.3.560.1.184
327
+ encounter_recommended
328
+ encounters
329
+ NEGATION
330
+ 2.16.840.1.113883.3.560.1.104
331
+ encounter
332
+ encounters
333
+ NEGATION
334
+
335
+ PROCEDURES
336
+ -------
337
+ 2.16.840.1.113883.3.560.1.6
338
+ procedure_performed
339
+ allProcedures
340
+ 2.16.840.1.113883.3.560.1.62
341
+ procedure_ordered
342
+ allProcedures
343
+ 2.16.840.1.113883.3.560.1.63
344
+ procedure_result
345
+ procedureResults
346
+ 2.16.840.1.113883.3.560.1.60
347
+ procedure_adverse_event
348
+ allergies
349
+ 2.16.840.1.113883.3.560.1.61
350
+ procedure_intolerance
351
+ allergies
352
+ 2.16.840.1.113883.3.560.1.92
353
+ procedure_recommended
354
+ allProcedures
355
+ 2.16.840.1.113883.3.560.1.162
356
+ procedure_ordered
357
+ allProcedures
358
+ NEGATION
359
+ 2.16.840.1.113883.3.560.1.163
360
+ procedure_result
361
+ procedureResults
362
+ NEGATION
363
+ 2.16.840.1.113883.3.560.1.160
364
+ procedure_adverse_event
365
+ allergies
366
+ NEGATION
367
+ 2.16.840.1.113883.3.560.1.161
368
+ procedure_intolerance
369
+ allergies
370
+ NEGATION
371
+ 2.16.840.1.113883.3.560.1.106
372
+ procedure_performed
373
+ allProcedures
374
+ NEGATION
375
+ 2.16.840.1.113883.3.560.1.192
376
+ procedure_recommended
377
+ allProcedures
378
+ NEGATION
379
+
380
+ CONDITIONS
381
+ -------
382
+ 2.16.840.1.113883.3.560.1.2
383
+ diagnosis_active
384
+ allProblems
385
+ 2.16.840.1.113883.3.560.1.24
386
+ diagnosis_resolved
387
+ allProblems
388
+ 2.16.840.1.113883.3.560.1.32
389
+ diagnosis_family_history
390
+ N/A
391
+ 2.16.840.1.113883.3.560.1.23
392
+ diagnosis_inactive
393
+ allProblems
394
+ 2.16.840.1.113883.3.560.1.33
395
+ diagnosis_risk_of
396
+ N/A
397
+ 2.16.840.1.113883.3.560.1.124
398
+ diagnosis_resolved
399
+ allProblems
400
+ NEGATION
401
+ 2.16.840.1.113883.3.560.1.132
402
+ diagnosis_family_history
403
+ N/A
404
+ NEGATION
405
+ 2.16.840.1.113883.3.560.1.123
406
+ diagnosis_inactive
407
+ allProblems
408
+ NEGATION
409
+ 2.16.840.1.113883.3.560.1.102
410
+ diagnosis_active
411
+ allProblems
412
+ NEGATION
413
+ 2.16.840.1.113883.3.560.1.133
414
+ diagnosis_risk_of
415
+ N/A
416
+ NEGATION
417
+
418
+ DIAGNOSTIC STUDIES
419
+ -------
420
+ 2.16.840.1.113883.3.560.1.3
421
+ diagnostic_study_performed
422
+ allProcedures
423
+ 2.16.840.1.113883.3.560.1.11
424
+ diagnostic_study_result
425
+ procedureResults
426
+ 2.16.840.1.113883.3.560.1.38
427
+ diagnostic_study_adverse_event
428
+ allergies
429
+ 2.16.840.1.113883.3.560.1.39
430
+ diagnostic_study_intolerance
431
+ allergies
432
+ 2.16.840.1.113883.3.560.1.40
433
+ diagnostic_study_ordered
434
+ allProcedures
435
+ 2.16.840.1.113883.3.560.1.103
436
+ diagnostic_study_performed
437
+ allProcedures
438
+ NEGATION
439
+ 2.16.840.1.113883.3.560.1.138
440
+ diagnostic_study_adverse_event
441
+ allergies
442
+ NEGATION
443
+ 2.16.840.1.113883.3.560.1.139
444
+ diagnostic_study_intolerance
445
+ allergies
446
+ NEGATION
447
+ 2.16.840.1.113883.3.560.1.140
448
+ diagnostic_study_ordered
449
+ allProcedures
450
+ NEGATION
451
+ 2.16.840.1.113883.3.560.1.111
452
+ diagnostic_study_result
453
+ procedureResults
454
+ NEGATION
455
+
456
+ MEDICATIONS
457
+ -------
458
+ 2.16.840.1.113883.3.560.1.8
459
+ medication_dispensed
460
+ allMedications
461
+ 2.16.840.1.113883.3.560.1.17
462
+ medication_ordered
463
+ allMedications
464
+ 2.16.840.1.113883.3.560.1.13
465
+ medication_active
466
+ allMedications
467
+ 2.16.840.1.113883.3.560.1.14
468
+ medication_administered
469
+ allMedications
470
+ 2.16.840.1.113883.3.560.1.7
471
+ medication_adverse_effects
472
+ allergies
473
+ 2.16.840.1.113883.3.560.1.1
474
+ medication_allergy
475
+ allergies
476
+ 2.16.840.1.113883.3.560.1.15
477
+ medication_intolerance
478
+ allergies
479
+ 2.16.840.1.113883.3.560.1.77
480
+ medication
481
+ allMedications
482
+ NEGATION
483
+ 2.16.840.1.113883.3.560.1.78
484
+ medication_ordered
485
+ allMedications
486
+ NEGATION
487
+ 2.16.840.1.113883.3.560.1.108
488
+ medication_dispensed
489
+ allMedications
490
+ NEGATION
491
+ 2.16.840.1.113883.3.560.1.113
492
+ medication_active
493
+ allMedications
494
+ NEGATION
495
+ 2.16.840.1.113883.3.560.1.107
496
+ medication_adverse_effects
497
+ allergies
498
+ NEGATION
499
+ 2.16.840.1.113883.3.560.1.101
500
+ medication_allergy
501
+ allergies
502
+ NEGATION
503
+ 2.16.840.1.113883.3.560.1.115
504
+ medication_intolerance
505
+ allergies
506
+ NEGATION
507
+ 2.16.840.1.113883.3.560.1.114
508
+ medication_administered
509
+ allMedications
510
+ NEGATION
511
+
512
+ PHYSICAL EXAMS
513
+ -------
514
+ 2.16.840.1.113883.3.560.1.19
515
+ physical_exam
516
+ procedureResults
517
+ 2.16.840.1.113883.3.560.1.18
518
+ physical_exam
519
+ procedureResults
520
+ 2.16.840.1.113883.3.560.1.56
521
+ physical_exam_ordered
522
+ procedureResults
523
+ 2.16.840.1.113883.3.560.1.57
524
+ physical_exam_performed
525
+ procedureResults
526
+ 2.16.840.1.113883.3.560.1.91
527
+ physical_exam_recommended
528
+ procedureResults
529
+ 2.16.840.1.113883.3.560.1.156
530
+ physical_exam_ordered
531
+ procedureResults
532
+ NEGATION
533
+ 2.16.840.1.113883.3.560.1.157
534
+ physical_exam_performed
535
+ procedureResults
536
+ NEGATION
537
+ 2.16.840.1.113883.3.560.1.191
538
+ physical_exam_recommended
539
+ procedureResults
540
+ NEGATION
541
+ 2.16.840.1.113883.3.560.1.118
542
+ physical_exam
543
+ procedureResults
544
+ NEGATION
545
+
546
+ LABORATORY TESTS
547
+ --------
548
+ 2.16.840.1.113883.3.560.1.12
549
+ laboratory_test
550
+ laboratoryTests
551
+ 2.16.840.1.113883.3.560.1.5
552
+ laboratory_test_performed
553
+ laboratoryTests
554
+ 2.16.840.1.113883.3.560.1.48
555
+ laboratory_test_adverse_event
556
+ allergies
557
+ 2.16.840.1.113883.3.560.1.49
558
+ laboratory_test_intolerance
559
+ allergies
560
+ 2.16.840.1.113883.3.560.1.50
561
+ laboratory_test_ordered
562
+ laboratoryTests
563
+ 2.16.840.1.113883.3.560.1.90
564
+ laboratory_test_recommended
565
+ laboratoryTests
566
+ 2.16.840.1.113883.3.560.1.112
567
+ laboratory_test
568
+ laboratoryTests
569
+ NEGATION
570
+ 2.16.840.1.113883.3.560.1.148
571
+ laboratory_test_adverse_event
572
+ allergies
573
+ NEGATION
574
+ 2.16.840.1.113883.3.560.1.149
575
+ laboratory_test_intolerance
576
+ allergies
577
+ NEGATION
578
+ 2.16.840.1.113883.3.560.1.150
579
+ laboratory_test_ordered
580
+ laboratoryTests
581
+ NEGATION
582
+ 2.16.840.1.113883.3.560.1.190
583
+ laboratory_test_recommended
584
+ laboratoryTests
585
+ NEGATION
586
+ 2.16.840.1.113883.3.560.1.105
587
+ laboratory_test_performed
588
+ laboratoryTests
589
+ NEGATION
590
+
591
+ CARE GOALS
592
+ --------
593
+ 2.16.840.1.113883.3.560.1.9
594
+ care_goal
595
+ careGoals
596
+ 2.16.840.1.113883.3.560.1.109
597
+ care_goal
598
+ careGoals
599
+ NEGATION
600
+
601
+ COMMUNICATIONS
602
+ --------
603
+ 2.16.840.1.113883.3.560.1.30
604
+ communication_from_patient_to_provider
605
+ procedures
606
+ 2.16.840.1.113883.3.560.1.31
607
+ communication_from_provider_to_patient
608
+ procedures
609
+ 2.16.840.1.113883.3.560.1.29
610
+ communication_from_provider_to_provider
611
+ procedures
612
+ 2.16.840.1.113883.3.560.1.130
613
+ communication_from_patient_to_provider
614
+ procedures
615
+ NEGATION
616
+ 2.16.840.1.113883.3.560.1.131
617
+ communication_from_provider_to_patient
618
+ procedures
619
+ NEGATION
620
+ 2.16.840.1.113883.3.560.1.129
621
+ communication_from_provider_to_provider
622
+ procedures
623
+ NEGATION
624
+
625
+ DEVICES
626
+ -------
627
+ 2.16.840.1.113883.3.560.1.10
628
+ device_applied
629
+ allDevices
630
+ 2.16.840.1.113883.3.560.1.34
631
+ device_adverse_event
632
+ allergies
633
+ 2.16.840.1.113883.3.560.1.35
634
+ device_allergy
635
+ allergies
636
+ 2.16.840.1.113883.3.560.1.36
637
+ device_intolerance
638
+ allergies
639
+ 2.16.840.1.113883.3.560.1.37
640
+ device_ordered
641
+ allDevices
642
+ 2.16.840.1.113883.3.560.1.80
643
+ device_recommended
644
+ allDevices
645
+ 2.16.840.1.113883.3.560.1.134
646
+ device_adverse_event
647
+ allergies
648
+ NEGATION
649
+ 2.16.840.1.113883.3.560.1.135
650
+ device_allergy
651
+ allergies
652
+ NEGATION
653
+ 2.16.840.1.113883.3.560.1.136
654
+ device_intolerance
655
+ allergies
656
+ NEGATION
657
+ 2.16.840.1.113883.3.560.1.137
658
+ device_ordered
659
+ allDevices
660
+ NEGATION
661
+ 2.16.840.1.113883.3.560.1.180
662
+ device_recommended
663
+ allDevices
664
+ NEGATION
665
+ 2.16.840.1.113883.3.560.1.110
666
+ device_applied
667
+ allDevices
668
+ NEGATION
669
+
670
+ SUBSTANCES
671
+ -------
672
+ 2.16.840.1.113883.3.560.1.64
673
+ substance_administered
674
+ allMedications
675
+ 2.16.840.1.113883.3.560.1.68
676
+ substance_ordered
677
+ allMedications
678
+ 2.16.840.1.113883.3.560.1.65
679
+ substance_adverse_event
680
+ allergies
681
+ 2.16.840.1.113883.3.560.1.67
682
+ substance_intolerance
683
+ allergies
684
+ 2.16.840.1.113883.3.560.1.66
685
+ substance_allergy
686
+ allergies
687
+ 2.16.840.1.113883.3.560.1.93
688
+ substance_recommended
689
+ allMedications
690
+ 2.16.840.1.113883.3.560.1.165
691
+ substance_adverse_event
692
+ allergies
693
+ NEGATION
694
+ 2.16.840.1.113883.3.560.1.167
695
+ substance_intolerance
696
+ allergies
697
+ NEGATION
698
+ 2.16.840.1.113883.3.560.1.164
699
+ substance_administered
700
+ allMedications
701
+ NEGATION
702
+ 2.16.840.1.113883.3.560.1.168
703
+ substance_ordered
704
+ allMedications
705
+ NEGATION
706
+ 2.16.840.1.113883.3.560.1.193
707
+ substance_recommended
708
+ allMedications
709
+ NEGATION
710
+ 2.16.840.1.113883.3.560.1.166
711
+ substance_allergy
712
+ allergies
713
+ NEGATION
714
+
715
+ INTERVENTIONS
716
+ -------
717
+ 2.16.840.1.113883.3.560.1.43
718
+ intervention_adverse_event
719
+ allergies
720
+ 2.16.840.1.113883.3.560.1.44
721
+ intervention_intolerance
722
+ allergies
723
+ 2.16.840.1.113883.3.560.1.45
724
+ intervention_ordered
725
+ procedures
726
+ 2.16.840.1.113883.3.560.1.46
727
+ intervention_performed
728
+ procedures
729
+ 2.16.840.1.113883.3.560.1.47
730
+ intervention_result
731
+ procedureResults
732
+ 2.16.840.1.113883.3.560.1.89
733
+ intervention_recommended
734
+ procedures
735
+ 2.16.840.1.113883.3.560.1.143
736
+ intervention_adverse_event
737
+ allergies
738
+ NEGATION
739
+ 2.16.840.1.113883.3.560.1.144
740
+ intervention_intolerance
741
+ allergies
742
+ NEGATION
743
+ 2.16.840.1.113883.3.560.1.145
744
+ intervention_ordered
745
+ procedures
746
+ NEGATION
747
+ 2.16.840.1.113883.3.560.1.146
748
+ intervention_performed
749
+ procedures
750
+ NEGATION
751
+ 2.16.840.1.113883.3.560.1.147
752
+ intervention_result
753
+ procedureResults
754
+ NEGATION
755
+ 2.16.840.1.113883.3.560.1.189
756
+ intervention_recommended
757
+ procedures
758
+ NEGATION
759
+
760
+ SYMPTOMS
761
+ -------
762
+ 2.16.840.1.113883.3.560.1.69
763
+ symptom_active
764
+ allProblems
765
+ 2.16.840.1.113883.3.560.1.70
766
+ symptom_assessed
767
+ allProblems
768
+ 2.16.840.1.113883.3.560.1.97
769
+ symptom_inactive
770
+ allProblems
771
+ 2.16.840.1.113883.3.560.1.98
772
+ symptom_resolved
773
+ allProblems
774
+ 2.16.840.1.113883.3.560.1.169
775
+ symptom_active
776
+ allProblems
777
+ NEGATION
778
+ 2.16.840.1.113883.3.560.1.170
779
+ symptom_assessed
780
+ allProblems
781
+ NEGATION
782
+ 2.16.840.1.113883.3.560.1.197
783
+ symptom_inactive
784
+ allProblems
785
+ NEGATION
786
+ 2.16.840.1.113883.3.560.1.198
787
+ symptom_resolved
788
+ allProblems
789
+ NEGATION
790
+
791
+ FUNCTIONAL STATUSES
792
+ -------
793
+ 2.16.840.1.113883.3.560.1.41
794
+ functional_status
795
+ procedureResults
796
+ 2.16.840.1.113883.3.560.1.85
797
+ functional_status_performed
798
+ procedureResults
799
+ 2.16.840.1.113883.3.560.1.86
800
+ functional_status_ordered
801
+ procedureResults
802
+ 2.16.840.1.113883.3.560.1.87
803
+ functional_status_recommended
804
+ procedureResults
805
+ 2.16.840.1.113883.3.560.1.88
806
+ functional_status_result
807
+ procedureResults
808
+ 2.16.840.1.113883.3.560.1.185
809
+ functional_status_performed
810
+ procedureResults
811
+ NEGATION
812
+ 2.16.840.1.113883.3.560.1.186
813
+ functional_status_ordered
814
+ procedureResults
815
+ NEGATION
816
+ 2.16.840.1.113883.3.560.1.187
817
+ functional_status_recommended
818
+ procedureResults
819
+ NEGATION
820
+ 2.16.840.1.113883.3.560.1.188
821
+ functional_status_result
822
+ procedureResults
823
+ NEGATION
824
+ 2.16.840.1.113883.3.560.1.141
825
+ functional_status
826
+ procedureResults
827
+ NEGATION
828
+
829
+ RISK CATEGORY/ASSESSMENTS
830
+ 2.16.840.1.113883.3.560.1.21
831
+ risk_category_assessment
832
+ procedures
833
+ 2.16.840.1.113883.3.560.1.121
834
+ risk_category_assessment
835
+ procedures
836
+ NEGATION
837
+
838
+ PROVIDER_CARE_EXPERIENCES
839
+ -------
840
+ 2.16.840.1.113883.3.560.1.28
841
+ provider_care_experience
842
+ N/A
843
+ 2.16.840.1.113883.3.560.1.128
844
+ provider_care_experience
845
+ N/A
846
+ NEGATION
847
+
848
+ PATIENT_CARE_EXPERIENCES
849
+ -------
850
+ 2.16.840.1.113883.3.560.1.96
851
+ patient_care_experience
852
+ N/A
853
+ 2.16.840.1.113883.3.560.1.196
854
+ patient_care_experience
855
+ N/A
856
+ NEGATION
857
+
858
+ PREFERENCES
859
+ -------
860
+ 2.16.840.1.113883.3.560.1.59
861
+ preference_provider
862
+ N/A
863
+ 2.16.840.1.113883.3.560.1.58
864
+ preference_patient
865
+ N/A
866
+
867
+ SYSTEM CHARACTERISTICS
868
+ -------
869
+ 2.16.840.1.113883.3.560.1.94
870
+ system_characteristic
871
+ N/A
872
+ 2.16.840.1.113883.3.560.1.194
873
+ system_characteristic
874
+ N/A
875
+ NEGATION
876
+
877
+ PROVIDER CHARACTERISTICS
878
+ -------
879
+ 2.16.840.1.113883.3.560.1.95
880
+ provider_characteristic
881
+ N/A
882
+ 2.16.840.1.113883.3.560.1.195
883
+ provider_characteristic
884
+ N/A
885
+ NEGATION
886
+
887
+ TRANSFERS
888
+ -------
889
+ 2.16.840.1.113883.3.560.1.71
890
+ transfer_from
891
+ N/A
892
+ 2.16.840.1.113883.3.560.1.72
893
+ transfer_to
894
+ N/A
895
+ 2.16.840.1.113883.3.560.1.171
896
+ transfer_from
897
+ N/A
898
+ NEGATION
899
+ 2.16.840.1.113883.3.560.1.172
900
+ transfer_to
901
+ N/A
902
+ NEGATION
903
+