-
Notifications
You must be signed in to change notification settings - Fork 2
/
ig.json
1005 lines (978 loc) · 44.6 KB
/
ig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"canonicalBase": "http://fhir.org/guides/cdc/opioid-cds",
"version" : "3.0.2",
"sct-edition" : "http://snomed.info/sct/731000124108",
"source": "../input/opioid-cds.xml",
"npm-name": "fhir.cdc.opioid-cds",
"license": "CC0-1.0",
"tool" : "jekyll",
"paths": {
"resources": [
"examples",
"bundles",
"bundles/plandefinition/OpioidCDSREC10PatientView",
"input/extensions",
"input/pagecontent/quick-start-bundles",
"input/profiles",
"input/resources",
"input/resources/library",
"input/resources/activitydefinition",
"input/resources/plandefinition",
"input/vocabulary",
"input/vocabulary/codesystem",
"input/vocabulary/valueset"
],
"pages": "input/pagecontent",
"temp": "temp",
"output": "output",
"txCache" : "input-cache/txcache",
"qa": "qa",
"liquid": "input/templates",
"specification": "http://hl7.org/fhir/STU3/"
},
"defaults": {
"Any": {
"template-format": "instance-template-format.html",
"template-base": "instance-template-base.html"
},
"StructureDefinition" : {
"template-base": "instance-template-sd.html",
"template-mappings": "instance-template-mappings.html",
"template-defns": "instance-template-definitions.html"
}
},
"dependencyList": [
{
"name" : "CQFMeasures",
"location" : "http://hl7.org/fhir/us/cqfmeasures",
"version" : "3.0.0"
}
],
"logging": ["init", "progress", "context", "html", "tx"],
"extraTemplates": [
"mappings"
],
"spreadsheets": [
"careplan-profile-spreadsheet.xml",
"medicationrequest-profile-spreadsheet.xml",
"observation-profile-spreadsheet.xml",
"plandefinition-profile-spreadsheet.xml",
"requestgroup-profile-spreadsheet.xml",
"valueset-profile-spreadsheet.xml"
],
"resources": {
"Bundle/opioid-cds-terminology": {
"source": "opioid-cds-terminology-bundle.json",
"base": "Bundle-opioiod-cds-terminology.html"
},
"Bundle/opioid-cds-recommendation10-patientview-bundle": {
"source": "OpioidCDSREC10PatientView-bundle.json",
"base": "Bundle-OpioidCDSREC10PatientView-bundle.html"
},
"Bundle/example-rec-04-long-acting-opioid": {
"source": "bundle-example-rec-04-long-acting-opioid.xml",
"base": "Bundle-example-rec-04-long-acting-opioid.html"
},
"Patient/example-rec-04-long-acting-opioid": {
"source": "patient-example-rec-04-long-acting-opioid.xml",
"base": "Patient-example-rec-04-long-acting-opioid.html"
},
"MedicationRequest/example-rec-04-long-acting-opioid-prefetch": {
"source": "medicationrequest-example-rec-04-long-acting-opioid-prefetch.xml",
"base": "MedicationRequest-example-rec-04-long-acting-opioid-prefetch.html"
},
"Encounter/example-rec-04-long-acting-opioid-context": {
"source": "encounter-example-rec-04-long-acting-opioid-context.xml",
"base": "Encounter-example-rec-04-long-acting-opioid-context.html"
},
"Encounter/example-rec-04-long-acting-opioid-prefetch": {
"source": "encounter-example-rec-04-long-acting-opioid-prefetch.xml",
"base": "Encounter-example-rec-04-long-acting-opioid-prefetch.html"
},
"Bundle/example-rec-04-patient-view-long-acting-opioid": {
"source": "bundle-example-rec-04-patient-view-long-acting-opioid.xml",
"base": "Bundle-example-rec-04-patient-view-long-acting-opioid.html"
},
"Patient/example-rec-04-patient-view-long-acting-opioid": {
"source": "patient-example-rec-04-patient-view-long-acting-opioid.xml",
"base": "Patient-example-rec-04-patient-view-long-acting-opioid.html"
},
"MedicationRequest/example-rec-04-patient-view-long-acting-opioid-prefetch": {
"source": "medicationrequest-example-rec-04-patient-view-long-acting-opioid-prefetch.xml",
"base": "MedicationRequest-example-rec-04-patient-view-long-acting-opioid-prefetch.html"
},
"Encounter/example-rec-04-patient-view-long-acting-opioid-context": {
"source": "encounter-example-rec-04-patient-view-long-acting-opioid-context.xml",
"base": "Encounter-example-rec-04-patient-view-long-acting-opioid-context.html"
},
"Encounter/example-rec-04-patient-view-long-acting-opioid-prefetch": {
"source": "encounter-example-rec-04-patient-view-long-acting-opioid-prefetch.xml",
"base": "Encounter-example-rec-04-patient-view-long-acting-opioid-prefetch.html"
},
"Bundle/example-rec-04-new-patient": {
"source": "bundle-example-rec-04-new-patient.xml",
"base": "Bundle-example-rec-04-new-patient.html"
},
"Patient/example-rec-04-new-patient": {
"source": "patient-example-rec-04-new-patient.xml",
"base": "Patient-example-rec-04-new-patient.html"
},
"Encounter/example-rec-04-new-patient-context": {
"source": "encounter-example-rec-04-new-patient-context.xml",
"base": "Encounter-example-rec-04-new-patient-context.html"
},
"Bundle/example-rec-04-patient-view-new-patient": {
"source": "bundle-example-rec-04-patient-view-new-patient.xml",
"base": "Bundle-example-rec-04-patient-view-new-patient.html"
},
"Patient/example-rec-04-patient-view-new-patient": {
"source": "patient-example-rec-04-patient-view-new-patient.xml",
"base": "Patient-example-rec-04-patient-view-new-patient.html"
},
"Encounter/example-rec-04-patient-view-new-patient-context": {
"source": "encounter-example-rec-04-patient-view-new-patient-context.xml",
"base": "Encounter-example-rec-04-patient-view-new-patient-context.html"
},
"Bundle/example-rec-04-not-long-acting-opioid": {
"source": "bundle-example-rec-04-not-long-acting-opioid.xml",
"base": "Bundle-example-rec-04-not-long-acting-opioid.html"
},
"Patient/example-rec-04-not-long-acting-opioid": {
"source": "patient-example-rec-04-not-long-acting-opioid.xml",
"base": "Patient-example-rec-04-not-long-acting-opioid.html"
},
"MedicationRequest/example-rec-04-not-long-acting-opioid-prefetch": {
"source": "medicationrequest-example-rec-04-not-long-acting-opioid-prefetch.xml",
"base": "MedicationRequest-example-rec-04-not-long-acting-opioid-prefetch.html"
},
"Encounter/example-rec-04-not-long-acting-opioid-context": {
"source": "encounter-example-rec-04-not-long-acting-opioid-context.xml",
"base": "Encounter-example-rec-04-not-long-acting-opioid-context.html"
},
"Encounter/example-rec-04-not-long-acting-opioid-prefetch": {
"source": "encounter-example-rec-04-not-long-acting-opioid-prefetch.xml",
"base": "Encounter-example-rec-04-not-long-acting-opioid-prefetch.html"
},
"Bundle/example-rec-04-patient-view-not-long-acting-opioid": {
"source": "bundle-example-rec-04-patient-view-not-long-acting-opioid.xml",
"base": "Bundle-example-rec-04-patient-view-not-long-acting-opioid.html"
},
"Patient/example-rec-04-patient-view-not-long-acting-opioid": {
"source": "patient-example-rec-04-patient-view-not-long-acting-opioid.xml",
"base": "Patient-example-rec-04-patient-view-not-long-acting-opioid.html"
},
"MedicationRequest/example-rec-04-patient-view-not-long-acting-opioid-prefetch": {
"source": "medicationrequest-example-rec-04-patient-view-not-long-acting-opioid-prefetch.xml",
"base": "MedicationRequest-example-rec-04-patient-view-not-long-acting-opioid-prefetch.html"
},
"Encounter/example-rec-04-patient-view-not-long-acting-opioid-context": {
"source": "encounter-example-rec-04-patient-view-not-long-acting-opioid-context.xml",
"base": "Encounter-example-rec-04-patient-view-not-long-acting-opioid-context.html"
},
"Encounter/example-rec-04-patient-view-not-long-acting-opioid-prefetch": {
"source": "encounter-example-rec-04-patient-view-not-long-acting-opioid-prefetch.xml",
"base": "Encounter-example-rec-04-patient-view-not-long-acting-opioid-prefetch.html"
},
"Bundle/example-rec-04-opioid-with-abuse-potential": {
"source": "bundle-example-rec-04-opioid-with-abuse-potential.xml",
"base": "Bundle-example-rec-04-opioid-with-abuse-potential.html"
},
"Patient/example-rec-04-opioid-with-abuse-potential": {
"source": "patient-example-rec-04-opioid-with-abuse-potential.xml",
"base": "Patient-example-rec-04-opioid-with-abuse-potential.html"
},
"MedicationRequest/example-rec-04-opioid-with-abuse-potential-prefetch": {
"source": "medicationrequest-example-rec-04-opioid-with-abuse-potential-prefetch.xml",
"base": "MedicationRequest-example-rec-04-opioid-with-abuse-potential-prefetch.html"
},
"Encounter/example-rec-04-opioid-with-abuse-potential-context": {
"source": "encounter-example-rec-04-opioid-with-abuse-potential-context.xml",
"base": "Encounter-example-rec-04-opioid-with-abuse-potential-context.html"
},
"Encounter/example-rec-04-opioid-with-abuse-potential-prefetch": {
"source": "encounter-example-rec-04-opioid-with-abuse-potential-prefetch.xml",
"base": "Encounter-example-rec-04-opioid-with-abuse-potential-prefetch.html"
},
"Bundle/example-rec-04-patient-view-opioid-with-abuse-potential": {
"source": "bundle-example-rec-04-patient-view-opioid-with-abuse-potential.xml",
"base": "Bundle-example-rec-04-patient-view-opioid-with-abuse-potential.html"
},
"Patient/example-rec-04-patient-view-opioid-with-abuse-potential": {
"source": "patient-example-rec-04-patient-view-opioid-with-abuse-potential.xml",
"base": "Patient-example-rec-04-patient-view-opioid-with-abuse-potential.html"
},
"MedicationRequest/example-rec-04-patient-view-opioid-with-abuse-potential-prefetch": {
"source": "medicationrequest-example-rec-04-patient-view-opioid-with-abuse-potential-prefetch.xml",
"base": "MedicationRequest-example-rec-04-patient-view-opioid-with-abuse-potential-prefetch.html"
},
"Encounter/example-rec-04-patient-view-opioid-with-abuse-potential-context": {
"source": "encounter-example-rec-04-patient-view-opioid-with-abuse-potential-context.xml",
"base": "Encounter-example-rec-04-patient-view-opioid-with-abuse-potential-context.html"
},
"Encounter/example-rec-04-patient-view-opioid-with-abuse-potential-prefetch": {
"source": "encounter-example-rec-04-patient-view-opioid-with-abuse-potential-prefetch.xml",
"base": "Encounter-example-rec-04-patient-view-opioid-with-abuse-potential-prefetch.html"
},
"Bundle/example-rec-05-mme-greater-than-fifty": {
"source": "bundle-example-rec-05-mme-greater-than-fifty.xml",
"base": "Bundle-example-rec-05-mme-greater-than-fifty.html"
},
"Patient/example-rec-05-mme-greater-than-fifty": {
"source": "patient-example-rec-05-mme-greater-than-fifty.xml",
"base": "Patient-example-rec-05-mme-greater-than-fifty.html"
},
"Encounter/example-rec-05-mme-greater-than-fifty-context": {
"source": "encounter-example-rec-05-mme-greater-than-fifty-context.xml",
"base": "Encounter-example-rec-05-mme-greater-than-fifty-context.html"
},
"Bundle/example-rec-05-mme-less-than-fifty": {
"source": "bundle-example-rec-05-mme-less-than-fifty.xml",
"base": "Bundle-example-rec-05-mme-less-than-fifty.html"
},
"Patient/example-rec-05-mme-less-than-fifty": {
"source": "patient-example-rec-05-mme-less-than-fifty.xml",
"base": "Patient-example-rec-05-mme-less-than-fifty.html"
},
"Encounter/example-rec-05-mme-less-than-fifty-context": {
"source": "encounter-example-rec-05-mme-less-than-fifty-context.xml",
"base": "Encounter-example-rec-05-mme-less-than-fifty-context.html"
},
"Bundle/example-rec-07-end-of-life-exclusion": {
"source": "bundle-example-rec-07-end-of-life-exclusion.xml",
"base": "Bundle-example-rec-07-end-of-life-exclusion.html"
},
"Patient/example-rec-07-end-of-life-exclusion": {
"source": "patient-example-rec-07-end-of-life-exclusion.xml",
"base": "Patient-example-rec-07-end-of-life-exclusion.html"
},
"MedicationRequest/example-rec-07-end-of-life-exclusion-prefetch": {
"source": "medicationrequest-example-rec-07-end-of-life-exclusion-prefetch.xml",
"base": "MedicationRequest-example-rec-07-end-of-life-exclusion-prefetch.html"
},
"Encounter/example-rec-07-end-of-life-exclusion-context": {
"source": "encounter-example-rec-07-end-of-life-exclusion-context.xml",
"base": "Encounter-example-rec-07-end-of-life-exclusion-context.html"
},
"Encounter/example-rec-07-end-of-life-exclusion-prefetch": {
"source": "encounter-example-rec-07-end-of-life-exclusion-prefetch.xml",
"base": "Encounter-example-rec-07-end-of-life-exclusion-prefetch.html"
},
"Bundle/example-rec-07-risk-assessment": {
"source": "bundle-example-rec-07-risk-assessment.xml",
"base": "Bundle-example-rec-07-risk-assessment.html"
},
"Patient/example-rec-07-risk-assessment": {
"source": "patient-example-rec-07-risk-assessment.xml",
"base": "Patient-example-rec-07-risk-assessment.html"
},
"Procedure/example-rec-07-risk-assessment-prefetch": {
"source": "procedure-example-rec-07-risk-assessment-prefetch.xml",
"base": "Procedure-example-rec-07-risk-assessment-prefetch.html"
},
"Encounter/example-rec-07-risk-assessment-context": {
"source": "encounter-example-rec-07-risk-assessment-context.xml",
"base": "Encounter-example-rec-07-risk-assessment-context.html"
},
"Encounter/example-rec-07-risk-assessment-prefetch": {
"source": "encounter-example-rec-07-risk-assessment-prefetch.xml",
"base": "Encounter-example-rec-07-risk-assessment-prefetch.html"
},
"Bundle/example-rec-07-seven-of-past-ten-days": {
"source": "bundle-example-rec-07-seven-of-past-ten-days.xml",
"base": "Bundle-example-rec-07-seven-of-past-ten-days.html"
},
"Patient/example-rec-07-seven-of-past-ten-days": {
"source": "patient-example-rec-07-seven-of-past-ten-days.xml",
"base": "Patient-example-rec-07-seven-of-past-ten-days.html"
},
"MedicationRequest/example-rec-07-seven-of-past-ten-days-prefetch": {
"source": "medicationrequest-example-rec-07-seven-of-past-ten-days-prefetch.xml",
"base": "MedicationRequest-example-rec-07-seven-of-past-ten-days-prefetch.html"
},
"Encounter/example-rec-07-seven-of-past-ten-days-context": {
"source": "encounter-example-rec-07-seven-of-past-ten-days-context.xml",
"base": "Encounter-example-rec-07-seven-of-past-ten-days-context.html"
},
"Encounter/example-rec-07-seven-of-past-ten-days-prefetch": {
"source": "encounter-example-rec-07-seven-of-past-ten-days-prefetch.xml",
"base": "Encounter-example-rec-07-seven-of-past-ten-days-prefetch.html"
},
"Bundle/example-rec-07-six-of-past-ten-days": {
"source": "bundle-example-rec-07-six-of-past-ten-days.xml",
"base": "Bundle-example-rec-07-six-of-past-ten-days.html"
},
"Patient/example-rec-07-six-of-past-ten-days": {
"source": "patient-example-rec-07-six-of-past-ten-days.xml",
"base": "Patient-example-rec-07-six-of-past-ten-days.html"
},
"MedicationRequest/example-rec-07-six-of-past-ten-days-prefetch": {
"source": "medicationrequest-example-rec-07-six-of-past-ten-days-prefetch.xml",
"base": "MedicationRequest-example-rec-07-six-of-past-ten-days-prefetch.html"
},
"Encounter/example-rec-07-six-of-past-ten-days-context": {
"source": "encounter-example-rec-07-six-of-past-ten-days-context.xml",
"base": "Encounter-example-rec-07-six-of-past-ten-days-context.html"
},
"Encounter/example-rec-07-six-of-past-ten-days-prefetch": {
"source": "encounter-example-rec-07-six-of-past-ten-days-prefetch.xml",
"base": "Encounter-example-rec-07-six-of-past-ten-days-prefetch.html"
},
"Bundle/example-rec-07-sixtythree-of-past-ninety-days": {
"source": "bundle-example-rec-07-sixtythree-of-past-ninety-days.xml",
"base": "Bundle-example-rec-07-sixtythree-of-past-ninety-days.html"
},
"Patient/example-rec-07-sixtythree-of-past-ninety-days": {
"source": "patient-example-rec-07-sixtythree-of-past-ninety-days.xml",
"base": "Patient-example-rec-07-sixtythree-of-past-ninety-days.html"
},
"MedicationRequest/example-rec-07-sixtythree-of-past-ninety-days-prefetch": {
"source": "medicationrequest-example-rec-07-sixtythree-of-past-ninety-days-prefetch.xml",
"base": "MedicationRequest-example-rec-07-sixtythree-of-past-ninety-days-prefetch.html"
},
"Encounter/example-rec-07-sixtythree-of-past-ninety-days-context": {
"source": "encounter-example-rec-07-sixtythree-of-past-ninety-days-context.xml",
"base": "Encounter-example-rec-07-sixtythree-of-past-ninety-days-context.html"
},
"Encounter/example-rec-07-sixtythree-of-past-ninety-days-prefetch": {
"source": "encounter-example-rec-07-sixtythree-of-past-ninety-days-prefetch.xml",
"base": "Encounter-example-rec-07-sixtythree-of-past-ninety-days-prefetch.html"
},
"Bundle/example-rec-07-sixtytwo-of-past-ninety-days": {
"source": "bundle-example-rec-07-sixtytwo-of-past-ninety-days.xml",
"base": "Bundle-example-rec-07-sixtytwo-of-past-ninety-days.html"
},
"Patient/example-rec-07-sixtytwo-of-past-ninety-days": {
"source": "patient-example-rec-07-sixtytwo-of-past-ninety-days.xml",
"base": "Patient-example-rec-07-sixtytwo-of-past-ninety-days.html"
},
"MedicationRequest/example-rec-07-sixtytwo-of-past-ninety-days-prefetch": {
"source": "medicationrequest-example-rec-07-sixtytwo-of-past-ninety-days-prefetch.xml",
"base": "MedicationRequest-example-rec-07-sixtytwo-of-past-ninety-days-prefetch.html"
},
"Encounter/example-rec-07-sixtytwo-of-past-ninety-days-context": {
"source": "encounter-example-rec-07-sixtytwo-of-past-ninety-days-context.xml",
"base": "Encounter-example-rec-07-sixtytwo-of-past-ninety-days-context.html"
},
"Encounter/example-rec-07-sixtytwo-of-past-ninety-days-prefetch": {
"source": "encounter-example-rec-07-sixtytwo-of-past-ninety-days-prefetch.xml",
"base": "Encounter-example-rec-07-sixtytwo-of-past-ninety-days-prefetch.html"
},
"Bundle/example-rec-08-mme-greater-than-fifty": {
"source": "bundle-example-rec-08-mme-greater-than-fifty.xml",
"base": "Bundle-example-rec-08-mme-greater-than-fifty.html"
},
"Patient/example-rec-08-mme-greater-than-fifty": {
"source": "patient-example-rec-08-mme-greater-than-fifty.xml",
"base": "Patient-example-rec-08-mme-greater-than-fifty.html"
},
"Encounter/example-rec-08-mme-greater-than-fifty-context": {
"source": "encounter-example-rec-08-mme-greater-than-fifty-context.xml",
"base": "Encounter-example-rec-08-mme-greater-than-fifty-context.html"
},
"Bundle/example-rec-08-mme-less-than-fifty": {
"source": "bundle-example-rec-08-mme-less-than-fifty.xml",
"base": "Bundle-example-rec-08-mme-less-than-fifty.html"
},
"Patient/example-rec-08-mme-less-than-fifty": {
"source": "patient-example-rec-08-mme-less-than-fifty.xml",
"base": "Patient-example-rec-08-mme-less-than-fifty.html"
},
"Encounter/example-rec-08-mme-less-than-fifty-context": {
"source": "encounter-example-rec-08-mme-less-than-fifty-context.xml",
"base": "Encounter-example-rec-08-mme-less-than-fifty-context.html"
},
"Bundle/example-rec-08-on-benzodiazepine": {
"source": "bundle-example-rec-08-on-benzodiazepine.xml",
"base": "Bundle-example-rec-08-on-benzodiazepine.html"
},
"Patient/example-rec-08-on-benzodiazepine": {
"source": "patient-example-rec-08-on-benzodiazepine.xml",
"base": "Patient-example-rec-08-on-benzodiazepine.html"
},
"MedicationRequest/example-rec-08-on-benzodiazepine-prefetch": {
"source": "medicationrequest-example-rec-08-on-benzodiazepine-prefetch.xml",
"base": "MedicationRequest-example-rec-08-on-benzodiazepine-prefetch.html"
},
"Encounter/example-rec-08-on-benzodiazepine-context": {
"source": "encounter-example-rec-08-on-benzodiazepine-context.xml",
"base": "Encounter-example-rec-08-on-benzodiazepine-context.html"
},
"Encounter/example-rec-08-on-benzodiazepine-prefetch": {
"source": "encounter-example-rec-08-on-benzodiazepine-prefetch.xml",
"base": "Encounter-example-rec-08-on-benzodiazepine-prefetch.html"
},
"Bundle/example-rec-08-on-naloxone": {
"source": "bundle-example-rec-08-on-naloxone.xml",
"base": "Bundle-example-rec-08-on-naloxone.html"
},
"Patient/example-rec-08-on-naloxone": {
"source": "patient-example-rec-08-on-naloxone.xml",
"base": "Patient-example-rec-08-on-naloxone.html"
},
"MedicationRequest/example-rec-08-on-naloxone-prefetch": {
"source": "medicationrequest-example-rec-08-on-naloxone-prefetch.xml",
"base": "MedicationRequest-example-rec-08-on-naloxone-prefetch.html"
},
"Encounter/example-rec-08-on-naloxone-context": {
"source": "encounter-example-rec-08-on-naloxone-context.xml",
"base": "Encounter-example-rec-08-on-naloxone-context.html"
},
"Encounter/example-rec-08-on-naloxone-prefetch": {
"source": "encounter-example-rec-08-on-naloxone-prefetch.xml",
"base": "Encounter-example-rec-08-on-naloxone-prefetch.html"
},
"Bundle/example-rec-08-substance-abuse": {
"source": "bundle-example-rec-08-substance-abuse.xml",
"base": "Bundle-example-rec-08-substance-abuse.html"
},
"Patient/example-rec-08-substance-abuse": {
"source": "patient-example-rec-08-substance-abuse.xml",
"base": "Patient-example-rec-08-substance-abuse.html"
},
"Encounter/example-rec-08-substance-abusee-context": {
"source": "encounter-example-rec-08-substance-abuse-context.xml",
"base": "Encounter-example-rec-08-substance-abuse-context.html"
},
"Bundle/example-rec-10-no-screenings": {
"source": "bundle-example-rec-10-no-screenings.xml",
"base": "Bundle-example-rec-10-no-screenings.html"
},
"Patient/example-rec-10-no-screenings": {
"source": "patient-example-rec-10-no-screenings.xml",
"base": "Patient-example-rec-10-no-screenings.html"
},
"MedicationRequest/example-rec-10-no-screenings-prefetch": {
"source": "medicationrequest-example-rec-10-no-screenings-prefetch.xml",
"base": "MedicationRequest-example-rec-10-no-screenings-prefetch.html"
},
"Encounter/example-rec-10-no-screenings-context": {
"source": "encounter-example-rec-10-no-screenings-context.xml",
"base": "Encounter-example-rec-10-no-screenings-context.html"
},
"Encounter/example-rec-10-no-screenings-prefetch": {
"source": "encounter-example-rec-10-no-screenings-prefetch.xml",
"base": "Encounter-example-rec-10-no-screenings-prefetch.html"
},
"Bundle/example-rec-10-patient-view-no-screenings": {
"source": "bundle-example-rec-10-patient-view-no-screenings.xml",
"base": "Bundle-example-rec-10-patient-view-no-screenings.html"
},
"Patient/example-rec-10-patient-view-no-screenings": {
"source": "patient-example-rec-10-patient-view-no-screenings.xml",
"base": "Patient-example-rec-10-patient-view-no-screenings.html"
},
"MedicationRequest/example-rec-10-patient-view-no-screenings-prefetch": {
"source": "medicationrequest-example-rec-10-patient-view-no-screenings-prefetch.xml",
"base": "MedicationRequest-example-rec-10-patient-view-no-screenings-prefetch.html"
},
"Encounter/example-rec-10-patient-view-no-screenings-context": {
"source": "encounter-example-rec-10-patient-view-no-screenings-context.xml",
"base": "Encounter-example-rec-10-patient-view-no-screenings-context.html"
},
"Encounter/example-rec-10-patient-view-no-screenings-prefetch": {
"source": "encounter-example-rec-10-patient-view-no-screenings-prefetch.xml",
"base": "Encounter-example-rec-10-patient-view-no-screenings-prefetch.html"
},
"Bundle/example-rec-11-benzo-trigger-with-opioid": {
"source": "bundle-example-rec-11-benzo-trigger-with-opioid.xml",
"base": "Bundle-example-rec-11-benzo-trigger-with-opioid.html"
},
"Patient/example-rec-11-benzo-trigger-with-opioid": {
"source": "patient-example-rec-11-benzo-trigger-with-opioid.xml",
"base": "Patient-example-rec-11-benzo-trigger-with-opioid.html"
},
"MedicationRequest/example-rec-11-benzo-trigger-with-opioid-prefetch": {
"source": "medicationrequest-example-rec-11-benzo-trigger-with-opioid-prefetch.xml",
"base": "MedicationRequest-example-rec-11-benzo-trigger-with-opioid-prefetch.html"
},
"Encounter/example-rec-11-benzo-trigger-with-opioid-context": {
"source": "encounter-example-rec-11-benzo-trigger-with-opioid-context.xml",
"base": "Encounter-example-rec-11-benzo-trigger-with-opioid-context.html"
},
"Encounter/example-rec-11-benzo-trigger-with-opioid-prefetch": {
"source": "encounter-example-rec-11-benzo-trigger-with-opioid-prefetch.xml",
"base": "Encounter-example-rec-11-benzo-trigger-with-opioid-prefetch.html"
},
"Bundle/example-rec-11-benzo-trigger-without-opioid": {
"source": "bundle-example-rec-11-benzo-trigger-without-opioid.xml",
"base": "Bundle-example-rec-11-benzo-trigger-without-opioid.html"
},
"Patient/example-rec-11-benzo-trigger-without-opioid": {
"source": "patient-example-rec-11-benzo-trigger-without-opioid.xml",
"base": "Patient-example-rec-11-benzo-trigger-without-opioid.html"
},
"Encounter/example-rec-11-benzo-trigger-without-opioid-context": {
"source": "encounter-example-rec-11-benzo-trigger-without-opioid-context.xml",
"base": "Encounter-example-rec-11-benzo-trigger-without-opioid-context.html"
},
"Bundle/example-rec-11-opioid-trigger-with-benzo": {
"source": "bundle-example-rec-11-opioid-trigger-with-benzo.xml",
"base": "Bundle-example-rec-11-opioid-trigger-with-benzo.html"
},
"Patient/example-rec-11-opioid-trigger-with-benzo": {
"source": "patient-example-rec-11-opioid-trigger-with-benzo.xml",
"base": "Patient-example-rec-11-opioid-trigger-with-benzo.html"
},
"MedicationRequest/example-rec-11-opioid-trigger-with-benzo-prefetch": {
"source": "medicationrequest-example-rec-11-opioid-trigger-with-benzo-prefetch.xml",
"base": "MedicationRequest-example-rec-11-opioid-trigger-with-benzo-prefetch.html"
},
"Encounter/example-rec-11-opioid-trigger-with-benzo-context": {
"source": "encounter-example-rec-11-opioid-trigger-with-benzo-context.xml",
"base": "Encounter-example-rec-11-opioid-trigger-with-benzo-context.html"
},
"Encounter/example-rec-11-opioid-trigger-with-benzo-prefetch": {
"source": "encounter-example-rec-11-opioid-trigger-with-benzo-prefetch.xml",
"base": "Encounter-example-rec-11-opioid-trigger-with-benzo-prefetch.html"
},
"Bundle/example-rec-11-opioid-trigger-without-benzo": {
"source": "bundle-example-rec-11-opioid-trigger-without-benzo.xml",
"base": "Bundle-example-rec-11-opioid-trigger-without-benzo.html"
},
"Patient/example-rec-11-opioid-trigger-without-benzo": {
"source": "patient-example-rec-11-opioid-trigger-without-benzo.xml",
"base": "Patient-example-rec-11-opioid-trigger-without-benzo.html"
},
"Encounter/example-rec-11-opioid-trigger-without-benzo-context": {
"source": "encounter-example-rec-11-opioid-trigger-without-benzo-context.xml",
"base": "Encounter-example-rec-11-opioid-trigger-without-benzo-context.html"
},
"Bundle/bundle-example-rec-12-criteria-invalid": {
"source": "bundle-example-rec-12-criteria-invalid.json",
"base": "Bundle-example-rec-12-criteria-invalid.html"
},
"Bundle/bundle-example-rec-12-criteria-valid": {
"source": "bundle-example-rec-12-criteria-valid.json",
"base": "Bundle-example-rec-12-criteria-valid.html"
},
"ActivityDefinition/opioidcds-detected-issue-opioids-and-benzodiazepines": {
"source": "activitydefinition-detected-issue-opioids-and-benzodiazepines.json",
"base": "ActivityDefinition-detected-issue-opioids-and-benzodiazepines.html"
},
"ActivityDefinition/opioidcds-risk-assessment-request": {
"source": "activitydefinition-opioidcds-risk-assessment-request.json",
"base": "ActivityDefinition-opioidcds-risk-assessment-request.html"
},
"ActivityDefinition/opioidcds-urine-screening-request": {
"source": "activitydefinition-opioidcds-urine-screening-request.json",
"base": "ActivityDefinition-opioidcds-urine-screening-request.html"
},
"CarePlan/example-opioidcds": {
"source": "careplan-example-opioidcds.xml",
"base": "CarePlan-example-opioidcds.html"
},
"CodeSystem/condition-category": {
"source": "codesystem-condition-category.json",
"base": "CodeSystem-condition-category.html"
},
"CodeSystem/condition-clinical": {
"source": "codesystem-condition-clinical.json",
"base": "CodeSystem-condition-clinical.html"
},
"CodeSystem/medication-request-category": {
"source": "codesystem-medication-request-category.json",
"base": "CodeSystem-medication-request-category.html"
},
"CodeSystem/medication-request-status": {
"source": "codesystem-medication-request-status.json",
"base": "CodeSystem-medication-request-status.html"
},
"CodeSystem/observation-category": {
"source": "codesystem-observation-category.json",
"base": "CodeSystem-observation-category.html"
},
"CodeSystem/opioidcds-indicator": {
"source": "codesystem-opioidcds-indicator.json",
"base": "CodeSystem-opioidcds-indicator.html"
},
"CodeSystem/uscore-condition-category": {
"source": "codesystem-uscore-condition-category.json",
"base": "CodeSystem-uscore-condition-category.html"
},
"Library/FHIRHelpers": {
"source": "FHIRHelpers.json",
"base": "Library-FHIRHelpers.html"
},
"Library/FHIR-ModelInfo": {
"source": "FHIR-ModelInfo.json",
"base": "Library-FHIR-ModelInfo.html"
},
"Library/OMTKLogicCQL": {
"source": "OMTKLogicCQL.json",
"base": "Library-OMTKLogicCQL.html"
},
"Library/OMTKLogicStub": {
"source": "OMTKLogicStub.json",
"base": "Library-OMTKLogicStub.html"
},
"Library/OMTKData2019": {
"source": "OMTKData2019.json",
"base": "Library-OMTKData2019.html"
},
"Library/OMTKData2020": {
"source": "OMTKData2020.json",
"base": "Library-OMTKData2020.html"
},
"Library/OpioidCDSCommon": {
"source": "OpioidCDSCommon.json",
"base": "Library-OpioidCDSCommon.html"
},
"Library/OpioidCDSRoutines": {
"source": "OpioidCDSRoutines.json",
"base": "Library-OpioidCDSRoutines.html"
},
"Library/OpioidCDSREC01": {
"source": "OpioidCDSREC01.json",
"base": "Library-OpioidCDSREC01.html"
},
"Library/OpioidCDSREC02": {
"source": "OpioidCDSREC02.json",
"base": "Library-OpioidCDSREC02.html"
},
"Library/OpioidCDSREC03": {
"source": "OpioidCDSREC03.json",
"base": "Library-OpioidCDSREC03.html"
},
"Library/OpioidCDSREC04": {
"source": "OpioidCDSREC04.json",
"base": "Library-OpioidCDSREC04.html"
},
"Library/OpioidCDSREC04PatientView": {
"source": "OpioidCDSREC04PatientView.json",
"base": "Library-OpioidCDSREC04PatientView.html"
},
"Library/OpioidCDSREC05": {
"source": "OpioidCDSREC05.json",
"base": "Library-OpioidCDSREC05.html"
},
"Library/OpioidCDSREC06": {
"source": "OpioidCDSREC06.json",
"base": "Library-OpioidCDSREC06.html"
},
"Library/OpioidCDSREC07": {
"source": "OpioidCDSREC07.json",
"base": "Library-OpioidCDSREC07.html"
},
"Library/OpioidCDSREC08": {
"source": "OpioidCDSREC08.json",
"base": "Library-OpioidCDSREC08.html"
},
"Library/OpioidCDSREC09": {
"source": "OpioidCDSREC09.json",
"base": "Library-OpioidCDSREC09.html"
},
"Library/OpioidCDSREC10": {
"source": "OpioidCDSREC10.json",
"base": "Library-OpioidCDSREC10.html"
},
"Library/OpioidCDSREC10PatientView": {
"source": "OpioidCDSREC10PatientView.json",
"base": "Library-OpioidCDSREC10PatientView.html"
},
"Library/OpioidCDSREC11": {
"source": "OpioidCDSREC11.json",
"base": "Library-OpioidCDSREC11.html"
},
"Library/OpioidCDSREC11PatientView": {
"source": "OpioidCDSREC11PatientView.json",
"base": "Library-OpioidCDSREC11PatientView.html"
},
"Library/OpioidCDSREC12PatientView": {
"source": "OpioidCDSREC12PatientView.json",
"base": "Library-OpioidCDSREC12PatientView.html"
},
"MedicationRequest/example-opioidcds": {
"source": "medicationrequest-example-opioidcds.xml",
"base": "MedicationRequest-example-opioidcds.html"
},
"Observation/example-opioidcds": {
"source": "observation-example-opioidcds.xml",
"base": "Observation-example-opioidcds.html"
},
"Patient/example-opioidcds": {
"source": "patient-example-opioidcds.xml",
"base": "Patient-example-opioidcds.html"
},
"PlanDefinition/HelloWorld": {
"source": "HelloWorld.json",
"base": "PlanDefinition-HelloWorld.html"
},
"PlanDefinition/opioidcds-01": {
"source": "opioidcds-01.json",
"base": "PlanDefinition-opioidcds-01.html"
},
"PlanDefinition/opioidcds-02": {
"source": "opioidcds-02.json",
"base": "PlanDefinition-opioidcds-02.html"
},
"PlanDefinition/opioidcds-03": {
"source": "opioidcds-03.json",
"base": "PlanDefinition-opioidcds-03.html"
},
"PlanDefinition/opioidcds-04": {
"source": "opioidcds-04.json",
"base": "PlanDefinition-opioidcds-04.html"
},
"PlanDefinition/opioidcds-04-patient-view": {
"source": "opioidcds-04-patient-view.json",
"base": "PlanDefinition-opioidcds-04-patient-view.html"
},
"PlanDefinition/opioidcds-05": {
"source": "opioidcds-05.json",
"base": "PlanDefinition-opioidcds-05.html"
},
"PlanDefinition/opioidcds-06": {
"source": "opioidcds-06.json",
"base": "PlanDefinition-opioidcds-06.html"
},
"PlanDefinition/opioidcds-07": {
"source": "opioidcds-07.json",
"base": "PlanDefinition-opioidcds-07.html"
},
"PlanDefinition/opioidcds-08": {
"source": "opioidcds-08.json",
"base": "PlanDefinition-opioidcds-08.html"
},
"PlanDefinition/opioidcds-08-order-sign": {
"source": "opioidcds-08-order-sign.json",
"base": "PlanDefinition-opioidcds-08-order-sign.html"
},
"PlanDefinition/opioidcds-09": {
"source": "opioidcds-09.json",
"base": "PlanDefinition-opioidcds-09.html"
},
"PlanDefinition/opioidcds-10": {
"source": "opioidcds-10.json",
"base": "PlanDefinition-opioidcds-10.html"
},
"PlanDefinition/opioidcds-10-order-sign": {
"source": "opioidcds-10-order-sign.json",
"base": "PlanDefinition-opioidcds-10-order-sign.html"
},
"PlanDefinition/opioidcds-10-patient-view": {
"source": "opioidcds-10-patient-view.json",
"base": "PlanDefinition-opioidcds-10-patient-view.html"
},
"PlanDefinition/opioidcds-11": {
"source": "opioidcds-11.json",
"base": "PlanDefinition-opioidcds-11.html"
},
"PlanDefinition/opioidcds-11-patient-view": {
"source": "opioidcds-11-patient-view.json",
"base": "PlanDefinition-opioidcds-11-patient-view.html"
},
"PlanDefinition/opioidcds-12-patient-view": {
"source": "opioidcds-12-patient-view.json",
"base": "PlanDefinition-opioidcds-12-patient-view.html"
},
"RequestGroup/example-opioidcds": {
"source": "requestgroup-example-opioidcds.xml",
"base": "RequestGroup-example-opioidcds.html"
},
"ValueSet/benzodiazepine-medications": {
"source": "valueset-benzodiazepine-medications.json",
"base": "ValueSet-benzodiazepine-medications.html"
},
"ValueSet/buprenorphine-and-methadone-medications": {
"source": "valueset-buprenorphine-and-methadone-medications.json",
"base": "ValueSet-buprenorphine-and-methadone-medications.html"
},
"ValueSet/cdc-malignant-cancer-conditions": {
"source": "valueset-cdc-malignant-cancer-conditions.json",
"base": "ValueSet-cdc-malignant-cancer-conditions.html"
},
"ValueSet/cocaine-urine-drug-screening-tests": {
"source": "valueset-cocaine-urine-drug-screening-tests.json",
"base": "ValueSet-cocaine-urine-drug-screening-tests.html"
},
"ValueSet/conditions-documenting-substance-misuse": {
"source": "valueset-conditions-documenting-substance-misuse.json",
"base": "ValueSet-conditions-documenting-substance-misuse.html"
},
"ValueSet/conditions-likely-terminal-for-opioid-prescribing": {
"source": "valueset-conditions-likely-terminal-for-opioid-prescribing.json",
"base": "ValueSet-conditions-likely-terminal-for-opioid-prescribing.html"
},
"ValueSet/condition-clinical-status-active": {
"source": "valueset-condition-clinical-status-active.json",
"base": "ValueSet-condition-clinical-status-active.html"
},
"ValueSet/condition-category-encounter-diagnosis": {
"source": "valueset-condition-category-encounter-diagnosis.json",
"base": "ValueSet-condition-category-encounter-diagnosis.html"
},
"ValueSet/condition-problem-list-category": {
"source": "valueset-condition-problem-list-category.json",
"base": "ValueSet-condition-problem-list-category.html"
},
"ValueSet/condition-us-core-health-concern-category": {
"source": "valueset-condition-us-core-health-concern-category.json",
"base": "ValueSet-condition-us-core-health-concern-category.html"
},
"ValueSet/extended-release-opioid-with-ambulatory-misuse-potential": {
"source": "valueset-extended-release-opioid-with-ambulatory-misuse-potential.json",
"base": "ValueSet-extended-release-opioid-with-ambulatory-misuse-potential.html"
},
"ValueSet/fentanyl-type-medications": {
"source": "valueset-fentanyl-type-medications.json",
"base": "ValueSet-fentanyl-type-medications.html"
},
"ValueSet/fentanyl-type-urine-drug-screening-tests": {
"source": "valueset-fentanyl-type-urine-drug-screening-tests.json",
"base": "ValueSet-fentanyl-type-urine-drug-screening-tests.html"
},
"ValueSet/hospice-disposition": {
"source": "valueset-hospice-disposition.json",
"base": "ValueSet-hospice-disposition.html"
},
"ValueSet/hospice-finding": {
"source": "valueset-hospice-finding.json",
"base": "ValueSet-hospice-finding.html"
},
"ValueSet/hospice-procedure": {
"source": "valueset-hospice-procedure.json",
"base": "ValueSet-hospice-procedure.html"
},
"ValueSet/limited-life-expectancy-conditions": {
"source": "valueset-limited-life-expectancy-conditions.json",
"base": "ValueSet-limited-life-expectancy-conditions.html"
},
"ValueSet/medicationrequest-category-community": {
"source": "valueset-medicationrequest-category-community.json",
"base": "ValueSet-medicationrequest-category-community.html"
},
"ValueSet/medicationrequest-status-active": {
"source": "valueset-medicationrequest-status-active.json",
"base": "ValueSet-medicationrequest-status-active.html"
},
"ValueSet/naloxone-medications": {
"source": "valueset-naloxone-medications.json",
"base": "ValueSet-naloxone-medications.html"
},
"ValueSet/non-opioid-drug-urine-screening": {
"source": "valueset-non-opioid-drug-urine-screening.json",
"base": "ValueSet-non-opioid-drug-urine-screening.html"
},
"ValueSet/non-synthetic-opioid-medications": {
"source": "valueset-non-synthetic-opioid-medications.json",
"base": "ValueSet-non-synthetic-opioid-medications.html"
},
"ValueSet/office-visit": {
"source": "valueset-office-visit.json",
"base": "ValueSet-office-visit.html"
},
"ValueSet/observation-category-laboratory": {
"source": "valueset-observation-category-laboratory.json",
"base": "ValueSet-observation-category-laboratory.html"
},
"ValueSet/observation-category-procedure": {
"source": "valueset-observation-category-procedure.json",
"base": "ValueSet-observation-category-procedure.html"
},
"ValueSet/oncology-specialty-designations": {
"source": "valueset-oncology-specialty-designations.json",
"base": "ValueSet-oncology-specialty-designations.html"
},
"ValueSet/opioid-analgesics-with-ambulatory-misuse-potential": {
"source": "valueset-opioid-analgesics-with-ambulatory-misuse-potential.json",
"base": "ValueSet-opioid-analgesics-with-ambulatory-misuse-potential.html"
},
"ValueSet/opioid-counseling-procedure": {
"source": "valueset-opioid-counseling-procedure.json",
"base": "ValueSet-opioid-counseling-procedure.html"
},
"ValueSet/opioid-drug-urine-screening": {
"source": "valueset-opioid-drug-urine-screening.json",
"base": "ValueSet-opioid-drug-urine-screening.html"
},
"ValueSet/opioid-misuse-assessment-procedure": {
"source": "valueset-opioid-misuse-assessment-procedure.json",
"base": "ValueSet-opioid-misuse-assessment-procedure.html"
},
"ValueSet/opioid-misuse-disorders": {
"source": "valueset-opioid-misuse-disorders.json",
"base": "ValueSet-opioid-misuse-disorders.html"
},
"ValueSet/pain-management-procedure": {
"source": "valueset-pain-management-procedure.json",
"base": "ValueSet-pain-management-procedure.html"
},
"ValueSet/pain-treatment-plan": {
"source": "valueset-pain-treatment-plan.json",
"base": "ValueSet-pain-treatment-plan.html"
},
"ValueSet/pdmp-data-reviewed-finding": {
"source": "valueset-pdmp-data-reviewed-finding.json",
"base": "ValueSet-pdmp-data-reviewed-finding.html"
},
"ValueSet/pdmp-review-procedure": {
"source": "valueset-pdmp-review-procedure.json",
"base": "ValueSet-pdmp-review-procedure.html"
},
"ValueSet/phencyclidine-urine-drug-screening-tests": {
"source": "valueset-phencyclidine-urine-drug-screening-tests.json",
"base": "ValueSet-phencyclidine-urine-drug-screening-tests.html"
},
"ValueSet/substance-misuse-behavioral-counseling": {
"source": "valueset-substance-misuse-behavioral-counseling.json",
"base": "ValueSet-substance-misuse-behavioral-counseling.html"
},
"ValueSet/therapies-indicating-end-of-life-care": {
"source": "valueset-therapies-indicating-end-of-life-care.json",
"base": "ValueSet-therapies-indicating-end-of-life-care.html"
},
"ValueSet/urine-drug-screening-tests": {
"source": "valueset-urine-drug-screening-tests.json",
"base": "ValueSet-urine-drug-screening-tests.html"
},
"StructureDefinition/cdc-careplan": {
"defns": "cdc-careplan-definitions.html",
"base": "cdc-careplan.html"
},
"StructureDefinition/cdc-medicationrequest": {
"defns": "cdc-medicationrequest-definitions.html",
"base": "cdc-medicationrequest.html"
},
"StructureDefinition/cdc-observation": {
"defns": "cdc-observation-definitions.html",
"base": "cdc-observation.html"
},
"StructureDefinition/cdc-plandefinition": {
"defns": "cdc-plandefinition-definitions.html",
"base": "cdc-plandefinition.html"
},
"StructureDefinition/cdc-requestgroup": {
"defns": "cdc-requestgroup-definitions.html",
"base": "cdc-requestgroup.html"
},
"StructureDefinition/cdc-valueset": {
"defns": "cdc-valueset-definitions.html",
"base": "cdc-valueset.html"
},
"StructureDefinition/cdc-requestgroup-action-indicator": {
"defns": "cdc-requestgroup-action-indicator-definitions.html",
"base": "cdc-requestgroup-action-indicator.html",
"source": "structuredefinition-cdc-requestgroup-action-indicator.json"
},
"StructureDefinition/cdc-valueset-query": {
"defns": "cdc-valueset-query-definitions.html",
"base": "cdc-valueset-query.html",
"source": "structuredefinition-cdc-valueset-query.json"
},
"StructureDefinition/cdc-valueset-inclusion": {
"defns": "cdc-valueset-inclusion-definitions.html",
"base": "cdc-valueset-inclusion.html",
"source": "structuredefinition-cdc-valueset-inclusion.json"
},
"StructureDefinition/cdc-valueset-exclusion": {
"defns": "cdc-valueset-exclusion-definitions.html",
"base": "cdc-valueset-exclusion.html",
"source": "structuredefinition-cdc-valueset-exclusion.json"
},
"StructureDefinition/dataDateRoller": {
"defns": "dataDateRoller-definitions.html",