forked from HL7/cqf-recommendations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ig.json
2560 lines (2560 loc) · 108 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://hl7.org/fhir/uv/cpg",
"version" : "4.0.1",
"fixed-business-version": "1.0.0",
"sct-edition" : "http://snomed.info/sct/731000124108",
"source": "cpg.xml",
"jurisdiction": "001",
"npm-name": "hl7.fhir.uv.cpg",
"license": "CC0-1.0",
"tool" : "jekyll",
"paths": {
"resources": [
"resources",
"pages/examples/anc/resources",
"pages/examples/opg/resources",
"pages/examples/hep-b/resources",
"pages/examples/ckd/resources/careplan-orderset",
"pages/examples/ckd/resources/risk-recommendations",
"pages/examples/ckd/resources/va-cpg",
"pages/examples/activities/input/resources",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario1",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario2",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario3",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario4",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario5",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario6",
"pages/examples/activities/input/tests/AdministerMedication/am-scenario7",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario1",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario2",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario3",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario4",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario5",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario6",
"pages/examples/activities/input/tests/CollectInformation/ci-scenario7",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario1",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario2",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario3",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario4",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario5",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario6",
"pages/examples/activities/input/tests/DispenseMedication/dm-scenario7",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario1",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario2",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario3",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario4",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario5",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario6",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario7",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario8",
"pages/examples/activities/input/tests/DoNotCollectInformation/dnci-scenario9",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario1",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario2",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario3",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario4",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario5",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario6",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario7",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario8",
"pages/examples/activities/input/tests/DoNotSendMessage/dnsm-scenario9",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario1",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario2",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario3",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario4",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario5",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario6",
"pages/examples/activities/input/tests/DocumentMedication/dcm-scenario7",
"pages/examples/activities/input/tests/EnrollPatient/ep-scenario1",
"pages/examples/activities/input/tests/EnrollPatient/ep-scenario2",
"pages/examples/activities/input/tests/EnrollPatient/ep-scenario4",
"pages/examples/activities/input/tests/GenerateReport/gr-scenario1",
"pages/examples/activities/input/tests/GenerateReport/gr-scenario2",
"pages/examples/activities/input/tests/GenerateReport/gr-scenario4",
"pages/examples/activities/input/tests/OrderMedication/om-scenario1",
"pages/examples/activities/input/tests/OrderMedication/om-scenario2",
"pages/examples/activities/input/tests/OrderMedication/om-scenario3",
"pages/examples/activities/input/tests/OrderMedication/om-scenario4",
"pages/examples/activities/input/tests/OrderMedication/om-scenario5",
"pages/examples/activities/input/tests/OrderMedication/om-scenario6",
"pages/examples/activities/input/tests/OrderMedication/om-scenario7",
"pages/examples/activities/input/tests/OrderService/os-scenario1",
"pages/examples/activities/input/tests/OrderService/os-scenario2",
"pages/examples/activities/input/tests/OrderService/os-scenario4",
"pages/examples/activities/input/tests/ProposeDiagnosis/pd-scenario1",
"pages/examples/activities/input/tests/ProposeDiagnosis/pd-scenario2",
"pages/examples/activities/input/tests/ProposeDiagnosis/pd-scenario4",
"pages/examples/activities/input/tests/RecommendImmunization/ri-scenario1",
"pages/examples/activities/input/tests/RecommendImmunization/ri-scenario2",
"pages/examples/activities/input/tests/RecommendImmunization/ri-scenario4",
"pages/examples/activities/input/tests/RecordDetectedIssue/di-scenario1",
"pages/examples/activities/input/tests/RecordDetectedIssue/di-scenario2",
"pages/examples/activities/input/tests/RecordDetectedIssue/di-scenario4",
"pages/examples/activities/input/tests/RecordInference/inf-scenario1",
"pages/examples/activities/input/tests/RecordInference/inf-scenario2",
"pages/examples/activities/input/tests/RecordInference/inf-scenario4",
"pages/examples/activities/input/tests/ReportFlag/rf-scenario1",
"pages/examples/activities/input/tests/ReportFlag/rf-scenario2",
"pages/examples/activities/input/tests/ReportFlag/rf-scenario4",
"pages/examples/activities/input/tests/SendMessage/sm-scenario1",
"pages/examples/activities/input/tests/SendMessage/sm-scenario2",
"pages/examples/activities/input/tests/SendMessage/sm-scenario3",
"pages/examples/activities/input/tests/SendMessage/sm-scenario4",
"pages/examples/activities/input/tests/SendMessage/sm-scenario5",
"pages/examples/activities/input/tests/SendMessage/sm-scenario6",
"pages/examples/activities/input/tests/SendMessage/sm-scenario7",
"pages/examples/chf/input/resources",
"pages/examples/chf/input/vocabulary",
"pages/examples/chf/input/tests/CHFTests/chf-scenario1"
],
"pages": "pages",
"temp": "temp",
"output": "output",
"qa": "qa",
"specification": "http://hl7.org/fhir/R4/",
"history": "http://hl7.org/fhir/uv/cpg/history.html"
},
"defaults": {
"Any": {
"template-format": "instance-template-format.html",
"template-base": "instance-template-base.html"
},
"CodeSystem": {
"template-base": "instance-template-codesystem.html"
},
"StructureDefinition" : {
"template-base": "instance-template-sd.html",
"template-mappings": "instance-template-sd-mappings.html",
"template-defns": "instance-template-sd-definitions.html"
},
"ValueSet": {
"template-base": "instance-template-valueset.html"
}
},
"logging": [ "init", "progress", "context", "html", "tx" ],
"suppressedWarningFile": "suppressed-messages.txt",
"extraTemplates": [
"mappings"
],
"spreadsheets": [
"activitydefinition-cpg-collectinformation-profile-spreadsheet.xml",
"activitydefinition-cpg-enrollment-profile-spreadsheet.xml",
"activitydefinition-cpg-generatereport-profile-spreadsheet.xml",
"activitydefinition-cpg-computable-profile-spreadsheet.xml",
"activitydefinition-cpg-publishable-profile-spreadsheet.xml",
"activitydefinition-cpg-shareable-profile-spreadsheet.xml",
"activitydefinition-cpg-communication-profile-spreadsheet.xml",
"activitydefinition-cpg-immunization-profile-spreadsheet.xml",
"activitydefinition-cpg-servicerequest-profile-spreadsheet.xml",
"activitydefinition-cpg-medicationrequest-profile-spreadsheet.xml",
"activitydefinition-cpg-dispensemedication-profile-spreadsheet.xml",
"activitydefinition-cpg-administermedication-profile-spreadsheet.xml",
"activitydefinition-cpg-documentmedication-profile-spreadsheet.xml",
"activitydefinition-cpg-proposediagnosis-profile-spreadsheet.xml",
"activitydefinition-cpg-recordinference-profile-spreadsheet.xml",
"activitydefinition-cpg-recorddetectedissue-profile-spreadsheet.xml",
"activitydefinition-cpg-reportflag-profile-spreadsheet.xml",
"bundle-cpg-artifact-profile-spreadsheet.xml",
"bundle-cpg-testcase-profile-spreadsheet.xml",
"careplan-cpg-profile-spreadsheet.xml",
"careteam-cpg-profile-spreadsheet.xml",
"careteam-cpg-definition-profile-spreadsheet.xml",
"clinicalimpression-cpg-profile-spreadsheet.xml",
"codesystem-cpg-publishable-profile-spreadsheet.xml",
"codesystem-cpg-shareable-profile-spreadsheet.xml",
"communication-cpg-profile-spreadsheet.xml",
"communicationrequest-cpg-profile-spreadsheet.xml",
"composition-cpg-casesummary-profile-spreadsheet.xml",
"composition-cpg-caseplansummary-profile-spreadsheet.xml",
"composition-cpg-caseplanprogressingnote-profile-spreadsheet.xml",
"condition-cpg-profile-spreadsheet.xml",
"detectedissue-cpg-profile-spreadsheet.xml",
"episodeofcare-cpg-case-profile-spreadsheet.xml",
"encounter-cpg-profile-spreadsheet.xml",
"flag-cpg-profile-spreadsheet.xml",
"goal-cpg-profile-spreadsheet.xml",
"graphdefinition-cpg-shareable-profile-spreadsheet.xml",
"graphdefinition-cpg-computable-profile-spreadsheet.xml",
"graphdefinition-cpg-publishable-profile-spreadsheet.xml",
"graphdefinition-cpg-casesummarydefinition-profile-spreadsheet.xml",
"graphdefinition-cpg-caseplansummarydefinition-profile-spreadsheet.xml",
"group-cpg-definition-profile-spreadsheet.xml",
"group-cpg-profile-spreadsheet.xml",
"immunization-cpg-profile-spreadsheet.xml",
"immunizationrecommendation-cpg-profile-spreadsheet.xml",
"implementationguide-cpg-shareable-profile-spreadsheet.xml",
"implementationguide-cpg-computableguideline-profile-spreadsheet.xml",
"implementationguide-cpg-publishableguideline-profile-spreadsheet.xml",
"library-cpg-assetcollection-profile-spreadsheet.xml",
"library-cpg-computable-profile-spreadsheet.xml",
"library-cpg-publishable-profile-spreadsheet.xml",
"library-cpg-shareable-profile-spreadsheet.xml",
"library-cpg-executable-profile-spreadsheet.xml",
"location-cpg-profile-spreadsheet.xml",
"location-cpg-definition-profile-spreadsheet.xml",
"measure-cpg-shareablemetric-profile-spreadsheet.xml",
"measure-cpg-computablemetric-profile-spreadsheet.xml",
"measure-cpg-publishablemetric-profile-spreadsheet.xml",
"measurereport-cpg-metricreport-profile-spreadsheet.xml",
"medicationadministration-cpg-profile-spreadsheet.xml",
"medicationdispense-cpg-profile-spreadsheet.xml",
"medicationrequest-cpg-profile-spreadsheet.xml",
"medicationstatement-cpg-profile-spreadsheet.xml",
"observation-cpg-profile-spreadsheet.xml",
"organization-cpg-profile-spreadsheet.xml",
"patient-cpg-profile-spreadsheet.xml",
"practitioner-cpg-profile-spreadsheet.xml",
"practitionerrole-cpg-profile-spreadsheet.xml",
"practitionerrole-cpg-definition-profile-spreadsheet.xml",
"plandefinition-cpg-orderset-profile-spreadsheet.xml",
"plandefinition-cpg-pathway-profile-spreadsheet.xml",
"plandefinition-cpg-shareable-profile-spreadsheet.xml",
"plandefinition-cpg-computable-profile-spreadsheet.xml",
"plandefinition-cpg-publishable-profile-spreadsheet.xml",
"plandefinition-cpg-recommendation-profile-spreadsheet.xml",
"plandefinition-cpg-strategy-profile-spreadsheet.xml",
"plandefinition-cpg-workflow-profile-spreadsheet.xml",
"procedure-cpg-profile-spreadsheet.xml",
"questionnaire-cpg-publishable-profile-spreadsheet.xml",
"questionnaire-cpg-shareable-profile-spreadsheet.xml",
"questionnaireresponse-cpg-profile-spreadsheet.xml",
"relatedperson-cpg-profile-spreadsheet.xml",
"requestgroup-cpg-strategy-profile-spreadsheet.xml",
"servicerequest-cpg-profile-spreadsheet.xml",
"structuredefinition-cpg-shareable-profile-spreadsheet.xml",
"structuredefinition-cpg-casefeature-profile-spreadsheet.xml",
"structuredefinition-cpg-publishablecasefeature-profile-spreadsheet.xml",
"task-cpg-profile-spreadsheet.xml",
"task-cpg-enrollment-profile-spreadsheet.xml",
"task-cpg-generatereport-profile-spreadsheet.xml",
"task-cpg-dispensemedication-profile-spreadsheet.xml",
"task-cpg-administermedication-profile-spreadsheet.xml",
"task-cpg-documentmedication-profile-spreadsheet.xml",
"task-cpg-questionnaire-profile-spreadsheet.xml",
"task-cpg-proposediagnosis-profile-spreadsheet.xml",
"task-cpg-recordinference-profile-spreadsheet.xml",
"task-cpg-recorddetectedissue-profile-spreadsheet.xml",
"task-cpg-reportflag-profile-spreadsheet.xml",
"valueset-cpg-publishable-profile-spreadsheet.xml",
"valueset-cpg-shareable-profile-spreadsheet.xml",
"valueset-cpg-computable-profile-spreadsheet.xml",
"valueset-cpg-executable-profile-spreadsheet.xml"
],
"resources": {
"ActivityDefinition/opioidcds-riskassessment-request": {
"base": "ActivityDefinition-opioidcds-riskassessment-request.html"
},
"ActivityDefinition/cpg-communicationrequest-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-communicationrequest-activitydefinition.xml",
"base": "ActivityDefinition-cpg-communicationrequest-activitydefinition.html"
},
"ActivityDefinition/cpg-immunizationrecommendation-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-immunizationrecommendation-activitydefinition.xml",
"base": "ActivityDefinition-cpg-immunizationrecommendation-activitydefinition.html"
},
"ActivityDefinition/cpg-medicationrequest-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-medicationrequest-activitydefinition.xml",
"base": "ActivityDefinition-cpg-medicationrequest-activitydefinition.html"
},
"ActivityDefinition/cpg-administermedication-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-administermedication-activitydefinition.xml",
"base": "ActivityDefinition-cpg-administermedication-activitydefinition.html"
},
"ActivityDefinition/cpg-dispensemedication-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-dispensemedication-activitydefinition.xml",
"base": "ActivityDefinition-cpg-dispensemedication-activitydefinition.html"
},
"ActivityDefinition/cpg-documentmedication-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-documentmedication-activitydefinition.xml",
"base": "ActivityDefinition-cpg-documentmedication-activitydefinition.html"
},
"ActivityDefinition/cpg-proposediagnosistask-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-proposediagnosistask-activitydefinition.xml",
"base": "ActivityDefinition-cpg-proposediagnosistask-activitydefinition.html"
},
"ActivityDefinition/cpg-collectinformation-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-collectinformation-activitydefinition.xml",
"base": "ActivityDefinition-cpg-collectinformation-activitydefinition.html"
},
"ActivityDefinition/cpg-enrollment-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-enrollment-activitydefinition.xml",
"base": "ActivityDefinition-cpg-enrollment-activitydefinition.html"
},
"ActivityDefinition/cpg-generatereport-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-generatereport-activitydefinition.xml",
"base": "ActivityDefinition-cpg-generatereport-activitydefinition.html"
},
"ActivityDefinition/cpg-recorddetectedissuetask-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-recorddetectedissuetask-activitydefinition.xml",
"base": "ActivityDefinition-cpg-recorddetectedissuetask-activitydefinition.html"
},
"ActivityDefinition/cpg-recordinferencetask-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-recordinferencetask-activitydefinition.xml",
"base": "ActivityDefinition-cpg-recordinferencetask-activitydefinition.html"
},
"ActivityDefinition/cpg-reportflagtask-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-reportflagtask-activitydefinition.xml",
"base": "ActivityDefinition-cpg-reportflagtask-activitydefinition.html"
},
"ActivityDefinition/cpg-servicerequest-activitydefinition": {
"source": "activitydefinition/activitydefinition-cpg-servicerequest-activitydefinition.xml",
"base": "ActivityDefinition-cpg-servicerequest-activitydefinition.html"
},
"ActivityDefinition/activity-example-administermedication": {
"source": "activitydefinition-activity-example-administermedication.json",
"base": "ActivityDefinition-activity-example-administermedication.html"
},
"ActivityDefinition/activity-example-collectinformation": {
"source": "activitydefinition-activity-example-collectinformation.json",
"base": "ActivityDefinition-activity-example-collectinformation.html"
},
"ActivityDefinition/activity-example-dispensemedication": {
"source": "activitydefinition-activity-example-dispensemedication.json",
"base": "ActivityDefinition-activity-example-dispensemedication.html"
},
"ActivityDefinition/activity-example-documentmedication": {
"source": "activitydefinition-activity-example-documentmedication.json",
"base": "ActivityDefinition-activity-example-documentmedication.html"
},
"ActivityDefinition/activity-example-donotcollectinformation": {
"source": "activitydefinition-activity-example-donotcollectinformation.json",
"base": "ActivityDefinition-activity-example-donotcollectinformation.html"
},
"ActivityDefinition/activity-example-donotsendmessage": {
"source": "activitydefinition-activity-example-donotsendmessage.json",
"base": "ActivityDefinition-activity-example-donotsendmessage.html"
},
"ActivityDefinition/activity-example-enrollment": {
"source": "activitydefinition-activity-example-enrollment.json",
"base": "ActivityDefinition-activity-example-enrollment.html"
},
"ActivityDefinition/activity-example-generatereport": {
"source": "activitydefinition-activity-example-generatereport.json",
"base": "ActivityDefinition-activity-example-generatereport.html"
},
"ActivityDefinition/activity-example-ordermedication": {
"source": "activitydefinition-activity-example-ordermedication.json",
"base": "ActivityDefinition-activity-example-ordermedication.html"
},
"ActivityDefinition/activity-example-orderservice": {
"source": "activitydefinition-activity-example-orderservice.json",
"base": "ActivityDefinition-activity-example-orderservice.html"
},
"ActivityDefinition/activity-example-proposediagnosis": {
"source": "activitydefinition-activity-example-proposediagnosis.json",
"base": "ActivityDefinition-activity-example-proposediagnosis.html"
},
"ActivityDefinition/activity-example-recommendimmunization": {
"source": "activitydefinition-activity-example-recommendimmunization.json",
"base": "ActivityDefinition-activity-example-recommendimmunization.html"
},
"ActivityDefinition/activity-example-recorddetectedissue": {
"source": "activitydefinition-activity-example-recorddetectedissue.json",
"base": "ActivityDefinition-activity-example-recorddetectedissue.html"
},
"ActivityDefinition/activity-example-recordinference": {
"source": "activitydefinition-activity-example-recordinference.json",
"base": "ActivityDefinition-activity-example-recordinference.html"
},
"ActivityDefinition/activity-example-reportflag": {
"source": "activitydefinition-activity-example-reportflag.json",
"base": "ActivityDefinition-activity-example-reportflag.html"
},
"ActivityDefinition/activity-example-sendmessage": {
"source": "activitydefinition-activity-example-sendmessage.json",
"base": "ActivityDefinition-activity-example-sendmessage.html"
},
"Bundle/activity-example-administermedication": {
"source": "bundle-activity-example-administermedication.json",
"base": "Bundle-activity-example-administermedication.html"
},
"Bundle/am-scenario7": {
"source": "bundle-am-scenario7.json",
"base": "Bundle-am-scenario7.html"
},
"CapabilityStatement/cpg-common-patient-registry": {
"source": "capabilitystatement/cpg-common-patient-registry.xml",
"base": "CapabilityStatement-cpg-common-patient-registry.html"
},
"CodeSystem/cpg-activity-type": {
"source": "codesystem-cpg-activity-type.xml",
"base": "CodeSystem-cpg-activity-type.html"
},
"CodeSystem/cpg-casefeature-type": {
"source": "codesystem-cpg-casefeature-type.xml",
"base": "CodeSystem-cpg-casefeature-type.html"
},
"CodeSystem/cpg-casefeature-pertinence": {
"source": "codesystem-cpg-casefeature-pertinence.xml",
"base": "CodeSystem-cpg-casefeature-pertinence.html"
},
"CodeSystem/cpg-indicator": {
"source": "codesystem-cpg-indicator.xml",
"base": "CodeSystem-cpg-indicator.html"
},
"CodeSystem/cpg-common-persona": {
"source": "codesystem-cpg-common-persona.xml",
"base": "CodeSystem-cpg-common-persona.html"
},
"CodeSystem/cpg-common-process": {
"source": "codesystem-cpg-common-process.xml",
"base": "CodeSystem-cpg-common-process.html"
},
"CodeSystem/cpg-recommendation-direction": {
"source": "codesystem-cpg-recommendation-direction.xml",
"base": "CodeSystem-cpg-recommendation-direction.html"
},
"CodeSystem/cpg-knowledge-capability": {
"source": "codesystem-cpg-knowledge-capability.xml",
"base": "CodeSystem-cpg-knowledge-capability.html"
},
"CodeSystem/cpg-knowledge-representation-level": {
"source": "codesystem-cpg-knowledge-representation-level.xml",
"base": "CodeSystem-cpg-knowledge-representation-level.html"
},
"CodeSystem/anc-reason-for-visit": {
"source": "codesystem-anc-reason-for-visit.xml",
"base": "CodeSystem-anc-reason-for-visit.html"
},
"GraphDefinition/anc-summary": {
"base": "GraphDefinition-anc-summary.html"
},
"GuidanceResponse/am-scenario7": {
"base": "GuidanceResponse-am-scenario7.html"
},
"Library/ANCCommon": {
"base": "Library-ANCCommon.html"
},
"Library/ANCRecommendationA2": {
"base": "Library-ANCRecommendationA2.html"
},
"Library/HepBAdultForecasting": {
"base": "Library-HepBAdultForecasting.html"
},
"Library/omtklogic": {
"base": "Library-omtklogic.html"
},
"Library/OpioidCDSR4Common": {
"base": "Library-OpioidCDSR4Common.html"
},
"Library/OpioidCDSR4Recommendation05": {
"base": "Library-OpioidCDSR4Recommendation05.html"
},
"Library/activity-example-administermedication": {
"source": "library-activity-example-administermedication.json",
"base": "Library-activity-example-administermedication.html"
},
"Library/AdministerMedication": {
"source": "library-AdministerMedication.json",
"base": "Library-AdministerMedication.html"
},
"Library/CollectInformation": {
"source": "library-CollectInformation.json",
"base": "Library-CollectInformation.html"
},
"Library/DispenseMedication": {
"source": "library-DispenseMedication.json",
"base": "Library-DispenseMedication.html"
},
"Library/DocumentMedication": {
"source": "library-DocumentMedication.json",
"base": "Library-DocumentMedication.html"
},
"Library/library-DoNotCollectInformation": {
"source": "library-DoNotCollectInformation.json",
"base": "Library-DoNotCollectInformation.html"
},
"Library/library-DoNotSendMessage": {
"source": "library-DoNotSendMessage.json",
"base": "Library-DoNotSendMessage.html"
},
"Library/library-EnrollPatient": {
"source": "library-EnrollPatient.json",
"base": "Library-EnrollPatient.html"
},
"Library/library-GenerateReport": {
"source": "library-GenerateReport.json",
"base": "Library-GenerateReport.html"
},
"Library/library-OrderMedication": {
"source": "library-OrderMedication.json",
"base": "Library-OrderMedication.html"
},
"Library/library-OrderService": {
"source": "library-OrderService.json",
"base": "Library-OrderService.html"
},
"Library/library-ProposeDiagnosis": {
"source": "library-ProposeDiagnosis.json",
"base": "Library-ProposeDiagnosis.html"
},
"Library/library-RecommendImmunization": {
"source": "library-RecommendImmunization.json",
"base": "Library-RecommendImmunization.html"
},
"Library/library-RecordDetectedIssue": {
"source": "library-RecordDetectedIssue.json",
"base": "Library-RecordDetectedIssue.html"
},
"Library/library-RecordInference": {
"source": "library-RecordInference.json",
"base": "Library-RecordInference.html"
},
"Library/library-ReportFlag": {
"source": "library-ReportFlag.json",
"base": "Library-ReportFlag.html"
},
"Library/SendMessage": {
"source": "library-SendMessage.json",
"base": "Library-SendMessage.html"
},
"Measure/activity-example-generatereport": {
"base": "Measure-activity-example-generatereport.html"
},
"OperationDefinition/cpg-careplan-apply": {
"base": "OperationDefinition-cpg-careplan-apply.html"
},
"OperationDefinition/cpg-plandefinition-apply": {
"base": "OperationDefinition-cpg-plandefinition-apply.html"
},
"OperationDefinition/cpg-library-evaluate": {
"base": "OperationDefinition-cpg-library-evaluate.html"
},
"OperationDefinition/cpg-cql": {
"base": "OperationDefinition-cpg-cql.html"
},
"OperationDefinition/cpg-common-patient-summary": {
"base": "OperationDefinition-cpg-common-patient-summary.html"
},
"PlanDefinition/anc-contact": {
"base": "PlanDefinition-anc-contact.html"
},
"PlanDefinition/anc-contact-schedule": {
"base": "PlanDefinition-anc-contact-schedule.html"
},
"PlanDefinition/anc-recommendation-a2": {
"base": "PlanDefinition-anc-recommendation-a2.html"
},
"PlanDefinition/cpg-common-pathway": {
"source": "plandefinition/plandefinition-cpg-common-pathway.xml",
"base": "PlanDefinition-cpg-common-pathway.html"
},
"PlanDefinition/cpg-common-registration": {
"source": "plandefinition/plandefinition-cpg-common-registration.xml",
"base": "PlanDefinition-cpg-common-registration.html"
},
"PlanDefinition/opioidcds-r4-recommendation-05": {
"base": "PlanDefinition-opioidcds-r4-recommendation-05.html"
},
"PlanDefinition/HepBAdultForecasting": {
"base": "PlanDefinition-HepBAdultForecasting.html"
},
"PlanDefinition/activity-example-administermedication": {
"source": "plandefinition-activity-example-administermedication.json",
"base": "PlanDefinition-activity-example-administermedication.html"
},
"PlanDefinition/activity-example-collectinformation": {
"source": "plandefinition-activity-example-collectinformation.json",
"base": "PlanDefinition-activity-example-collectinformation.html"
},
"PlanDefinition/activity-example-dispensemedication": {
"source": "plandefinition-activity-example-dispensemedication.json",
"base": "PlanDefinition-activity-example-dispensemedication.html"
},
"PlanDefinition/activity-example-documentmedication": {
"source": "plandefinition-activity-example-documentmedication.json",
"base": "PlanDefinition-activity-example-documentmedication.html"
},
"PlanDefinition/activity-example-donotcollectinformation": {
"source": "plandefinition-activity-example-donotcollectinformation.json",
"base": "PlanDefinition-activity-example-donotcollectinformation.html"
},
"PlanDefinition/activity-example-donotsendmessage": {
"source": "plandefinition-activity-example-donotsendmessage.json",
"base": "PlanDefinition-activity-example-donotsendmessage.html"
},
"PlanDefinition/activity-example-enrollment": {
"source": "plandefinition-activity-example-enrollment.json",
"base": "PlanDefinition-activity-example-enrollment.html"
},
"PlanDefinition/activity-example-generatereport": {
"source": "plandefinition-activity-example-generatereport.json",
"base": "PlanDefinition-activity-example-generatereport.html"
},
"PlanDefinition/activity-example-ordermedication": {
"source": "plandefinition-activity-example-ordermedication.json",
"base": "PlanDefinition-activity-example-ordermedication.html"
},
"PlanDefinition/activity-example-orderservice": {
"source": "plandefinition-activity-example-orderservice.json",
"base": "PlanDefinition-activity-example-orderservice.html"
},
"PlanDefinition/activity-example-pathway": {
"source": "plandefinition-activity-example-pathway.json",
"base": "PlanDefinition-activity-example-pathway.html"
},
"PlanDefinition/activity-example-proposediagnosis": {
"source": "plandefinition-activity-example-proposediagnosis.json",
"base": "PlanDefinition-activity-example-proposediagnosis.html"
},
"PlanDefinition/activity-example-recommendimmunization": {
"source": "plandefinition-activity-example-recommendimmunization.json",
"base": "PlanDefinition-activity-example-recommendimmunization.html"
},
"PlanDefinition/activity-example-recorddetectedissue": {
"source": "plandefinition-activity-example-recorddetectedissue.json",
"base": "PlanDefinition-activity-example-recorddetectedissue.html"
},
"PlanDefinition/activity-example-recordinference": {
"source": "plandefinition-activity-example-recordinference.json",
"base": "PlanDefinition-activity-example-recordinference.html"
},
"PlanDefinition/activity-example-reportflag": {
"source": "plandefinition-activity-example-reportflag.json",
"base": "PlanDefinition-activity-example-reportflag.html"
},
"PlanDefinition/activity-example-sendmessage": {
"source": "plandefinition-activity-example-sendmessage.json",
"base": "PlanDefinition-activity-example-sendmessage.html"
},
"Questionnaire/anc-every-contact": {
"base": "Questionnaire-anc-every-contact.html"
},
"Questionnaire/anc-first-contact": {
"base": "Questionnaire-anc-first-contact.html"
},
"Questionnaire/anc-quick-check": {
"base": "Questionnaire-anc-quick-check.html"
},
"Questionnaire/cpg-common-identity": {
"base": "Questionnaire-cpg-common-identity.html"
},
"Questionnaire/cpg-common-patient-profile": {
"base": "Questionnaire-cpg-common-patient-profile.html"
},
"Questionnaire/cpg-common-resolve-patient-match": {
"base": "Questionnaire-cpg-common-resolve-patient-match.html"
},
"Questionnaire/activity-example-collectinformation": {
"base": "Questionnaire-activity-example-collectinformation.html"
},
"ValueSet/anc-reason-for-visit": {
"source": "valueset-anc-reason-for-visit.xml",
"base": "ValueSet-anc-reason-for-visit.html"
},
"ValueSet/cpg-activity-type": {
"source": "valueset-cpg-activity-type.xml",
"base": "ValueSet-cpg-activity-type.html"
},
"ValueSet/cpg-casefeature-type": {
"source": "valueset-cpg-casefeature-type.xml",
"base": "ValueSet-cpg-casefeature-type.html"
},
"ValueSet/cpg-casefeature-pertinence": {
"source": "valueset-cpg-casefeature-pertinence.xml",
"base": "ValueSet-cpg-casefeature-pertinence.html"
},
"ValueSet/cpg-indicator": {
"source": "valueset-cpg-indicator.xml",
"base": "ValueSet-cpg-indicator.html"
},
"ValueSet/cpg-common-persona": {
"source": "valueset-cpg-common-persona.xml",
"base": "ValueSet-cpg-common-persona.html"
},
"ValueSet/cpg-common-process": {
"source": "valueset-cpg-common-process.xml",
"base": "ValueSet-cpg-common-process.html"
},
"ValueSet/cpg-recommendation-direction": {
"source": "valueset-cpg-recommendation-direction.xml",
"base": "ValueSet-cpg-recommendation-direction.html"
},
"ValueSet/cpg-knowledge-capability": {
"source": "valueset-cpg-knowledge-capability.xml",
"base": "ValueSet-cpg-knowledge-capability.html"
},
"ValueSet/cpg-knowledge-representation-level": {
"source": "valueset-cpg-knowledge-representation-level.xml",
"base": "ValueSet-cpg-knowledge-representation-level.html"
},
"ValueSet/opioids-with-ambulatory-abuse-potential": {
"base": "ValueSet-opioids-with-ambulatory-abuse-potential.html"
},
"StructureDefinition/cpg-administermedication": {
"defns": "StructureDefinition-cpg-administermedication-definitions.html",
"base": "StructureDefinition-cpg-administermedication.html"
},
"StructureDefinition/cpg-administermedicationtask": {
"defns": "StructureDefinition-cpg-administermedicationtask-definitions.html",
"base": "StructureDefinition-cpg-administermedicationtask.html"
},
"StructureDefinition/cpg-answerValueSetSource": {
"defns": "StructureDefinition-cpg-answerValueSetSource-definitions.html",
"base": "StructureDefinition-cpg-answerValueSetSource.html"
},
"StructureDefinition/cpg-artifactbundle": {
"defns": "StructureDefinition-cpg-artifactbundle-definitions.html",
"base": "StructureDefinition-cpg-artifactbundle.html"
},
"StructureDefinition/cpg-assertionExpression": {
"defns": "StructureDefinition-cpg-assertionExpression-definitions.html",
"base": "StructureDefinition-cpg-assertionExpression.html"
},
"StructureDefinition/cpg-assetcollection": {
"defns": "StructureDefinition-cpg-assetcollection-definitions.html",
"base": "StructureDefinition-cpg-assetcollection.html"
},
"StructureDefinition/cpg-author": {
"defns": "StructureDefinition-cpg-author-definitions.html",
"base": "StructureDefinition-cpg-author.html"
},
"StructureDefinition/cpg-careplan": {
"defns": "StructureDefinition-cpg-careplan-definitions.html",
"base": "StructureDefinition-cpg-careplan.html"
},
"StructureDefinition/cpg-careteam": {
"defns": "StructureDefinition-cpg-careteam-definitions.html",
"base": "StructureDefinition-cpg-careteam.html"
},
"StructureDefinition/cpg-careteamdefinition": {
"defns": "StructureDefinition-cpg-careteamdefinition-definitions.html",
"base": "StructureDefinition-cpg-careteamdefinition.html"
},
"StructureDefinition/cpg-case": {
"defns": "StructureDefinition-cpg-case-definitions.html",
"base": "StructureDefinition-cpg-case.html"
},
"StructureDefinition/cpg-casefeaturedefinition": {
"defns": "StructureDefinition-cpg-casefeaturedefinition-definitions.html",
"base": "StructureDefinition-cpg-casefeaturedefinition.html"
},
"StructureDefinition/cpg-caseFeatureOf": {
"defns": "StructureDefinition-cpg-caseFeatureOf-definitions.html",
"base": "StructureDefinition-cpg-caseFeatureOf.html"
},
"StructureDefinition/cpg-caseFeaturePertinence": {
"defns": "StructureDefinition-cpg-caseFeaturePertinence-definitions.html",
"base": "StructureDefinition-cpg-caseFeaturePertinence.html"
},
"StructureDefinition/cpg-caseFeatureType": {
"defns": "StructureDefinition-cpg-caseFeatureType-definitions.html",
"base": "StructureDefinition-cpg-caseFeatureType.html"
},
"StructureDefinition/cpg-caseplanprogressingnote": {
"defns": "StructureDefinition-cpg-caseplanprogressingnote-definitions.html",
"base": "StructureDefinition-cpg-caseplanprogressingnote.html"
},
"StructureDefinition/cpg-caseplansummary": {
"defns": "StructureDefinition-cpg-caseplansummary-definitions.html",
"base": "StructureDefinition-cpg-caseplansummary.html"
},
"StructureDefinition/cpg-caseplansummarydefinition": {
"defns": "StructureDefinition-cpg-caseplansummarydefinition-definitions.html",
"base": "StructureDefinition-cpg-caseplansummarydefinition.html"
},
"StructureDefinition/cpg-casesummary": {
"defns": "StructureDefinition-cpg-casesummary-definitions.html",
"base": "StructureDefinition-cpg-casesummary.html"
},
"StructureDefinition/cpg-casesummarydefinition": {
"defns": "StructureDefinition-cpg-casesummarydefinition-definitions.html",
"base": "StructureDefinition-cpg-casesummarydefinition.html"
},
"StructureDefinition/cpg-clinicalimpression": {
"defns": "StructureDefinition-cpg-clinicalimpression-definitions.html",
"base": "StructureDefinition-cpg-clinicalimpression.html"
},
"StructureDefinition/cpg-collectinformationactivity": {
"defns": "StructureDefinition-cpg-collectinformationactivity-definitions.html",
"base": "StructureDefinition-cpg-collectinformationactivity.html"
},
"StructureDefinition/cpg-collectWith": {
"defns": "StructureDefinition-cpg-collectWith-definitions.html",
"base": "StructureDefinition-cpg-collectWith.html"
},
"StructureDefinition/cpg-communication": {
"defns": "StructureDefinition-cpg-communication-definitions.html",
"base": "StructureDefinition-cpg-communication.html"
},
"StructureDefinition/cpg-communicationactivity": {
"defns": "StructureDefinition-cpg-communicationactivity-definitions.html",
"base": "StructureDefinition-cpg-communicationactivity.html"
},
"StructureDefinition/cpg-communicationrequest": {
"defns": "StructureDefinition-cpg-communicationrequest-definitions.html",
"base": "StructureDefinition-cpg-communicationrequest.html"
},
"StructureDefinition/cpg-computableactivity": {
"defns": "StructureDefinition-cpg-computableactivity-definitions.html",
"base": "StructureDefinition-cpg-computableactivity.html"
},
"StructureDefinition/cpg-computablegraphdefinition": {
"defns": "StructureDefinition-cpg-computablegraphdefinition-definitions.html",
"base": "StructureDefinition-cpg-computablegraphdefinition.html"
},
"StructureDefinition/cpg-computableguideline": {
"defns": "StructureDefinition-cpg-computableguideline-definitions.html",
"base": "StructureDefinition-cpg-computableguideline.html"
},
"StructureDefinition/cpg-computablelibrary": {
"defns": "StructureDefinition-cpg-computablelibrary-definitions.html",
"base": "StructureDefinition-cpg-computablelibrary.html"
},
"StructureDefinition/cpg-computablemetric": {
"defns": "StructureDefinition-cpg-computablemetric-definitions.html",
"base": "StructureDefinition-cpg-computablemetric.html"
},
"StructureDefinition/cpg-computableplandefinition": {
"defns": "StructureDefinition-cpg-computableplandefinition-definitions.html",
"base": "StructureDefinition-cpg-computableplandefinition.html"
},
"StructureDefinition/cpg-computablevalueset": {
"defns": "StructureDefinition-cpg-computablevalueset-definitions.html",
"base": "StructureDefinition-cpg-computablevalueset.html"
},
"StructureDefinition/cpg-condition": {
"defns": "StructureDefinition-cpg-condition-definitions.html",
"base": "StructureDefinition-cpg-condition.html"
},
"StructureDefinition/cpg-copyright": {
"defns": "StructureDefinition-cpg-copyright-definitions.html",
"base": "StructureDefinition-cpg-copyright.html"
},
"StructureDefinition/cpg-detectedissue": {
"defns": "StructureDefinition-cpg-detectedissue-definitions.html",
"base": "StructureDefinition-cpg-detectedissue.html"
},
"StructureDefinition/cpg-directionOfRecommendation": {
"defns": "StructureDefinition-cpg-directionOfRecommendation-definitions.html",
"base": "StructureDefinition-cpg-directionOfRecommendation.html"
},
"StructureDefinition/cpg-dispensemedicationactivity": {
"defns": "StructureDefinition-cpg-dispensemedicationactivity-definitions.html",
"base": "StructureDefinition-cpg-dispensemedicationactivity.html"
},
"StructureDefinition/cpg-dispensemedicationtask": {
"defns": "StructureDefinition-cpg-dispensemedicationtask-definitions.html",
"base": "StructureDefinition-cpg-dispensemedicationtask.html"
},
"StructureDefinition/cpg-documentmedicationactivity": {
"defns": "StructureDefinition-cpg-documentmedicationactivity-definitions.html",
"base": "StructureDefinition-cpg-documentmedicationactivity.html"
},
"StructureDefinition/cpg-documentmedicationtask": {
"defns": "StructureDefinition-cpg-documentmedicationtask-definitions.html",
"base": "StructureDefinition-cpg-documentmedicationtask.html"
},
"StructureDefinition/cpg-editor": {
"defns": "StructureDefinition-cpg-editor-definitions.html",
"base": "StructureDefinition-cpg-editor.html"
},
"StructureDefinition/cpg-enabled": {
"defns": "StructureDefinition-cpg-enabled-definitions.html",
"base": "StructureDefinition-cpg-enabled.html"
},
"StructureDefinition/cpg-encounter": {
"defns": "StructureDefinition-cpg-encounter-definitions.html",
"base": "StructureDefinition-cpg-encounter.html"
},
"StructureDefinition/cpg-endorser": {
"defns": "StructureDefinition-cpg-endorser-definitions.html",
"base": "StructureDefinition-cpg-endorser.html"
},
"StructureDefinition/cpg-enrolledIn": {
"defns": "StructureDefinition-cpg-enrolledIn-definitions.html",
"base": "StructureDefinition-cpg-enrolledIn.html"
},
"StructureDefinition/cpg-enrollIn": {
"defns": "StructureDefinition-cpg-enrollIn-definitions.html",
"base": "StructureDefinition-cpg-enrollIn.html"
},
"StructureDefinition/cpg-enrollmentactivity": {
"defns": "StructureDefinition-cpg-enrollmentactivity-definitions.html",
"base": "StructureDefinition-cpg-enrollmentactivity.html"
},
"StructureDefinition/cpg-enrollmenttask": {
"defns": "StructureDefinition-cpg-enrollmenttask-definitions.html",
"base": "StructureDefinition-cpg-enrollmenttask.html"
},
"StructureDefinition/cpg-executablelibrary": {
"defns": "StructureDefinition-cpg-executablelibrary-definitions.html",
"base": "StructureDefinition-cpg-executablelibrary.html"
},
"StructureDefinition/cpg-executablevalueset": {
"defns": "StructureDefinition-cpg-executablevalueset-definitions.html",
"base": "StructureDefinition-cpg-executablevalueset.html"
},
"StructureDefinition/cpg-featureExpression": {
"defns": "StructureDefinition-cpg-featureExpression-definitions.html",
"base": "StructureDefinition-cpg-featureExpression.html"
},
"StructureDefinition/cpg-flag": {
"defns": "StructureDefinition-cpg-flag-definitions.html",
"base": "StructureDefinition-cpg-flag.html"
},
"StructureDefinition/cpg-goal": {
"defns": "StructureDefinition-cpg-goal-definitions.html",
"base": "StructureDefinition-cpg-goal.html"
},
"StructureDefinition/cpg-goalFor": {
"defns": "StructureDefinition-cpg-goalFor-definitions.html",
"base": "StructureDefinition-cpg-goalFor.html"
},
"StructureDefinition/cpg-generatereportactivity": {
"defns": "StructureDefinition-cpg-generatereportactivity-definitions.html",
"base": "StructureDefinition-cpg-generatereportactivity.html"
},
"StructureDefinition/cpg-generatereporttask": {
"defns": "StructureDefinition-cpg-generatereporttask-definitions.html",
"base": "StructureDefinition-cpg-generatereporttask.html"
},
"StructureDefinition/cpg-group": {
"defns": "StructureDefinition-cpg-group-definitions.html",
"base": "StructureDefinition-cpg-group.html"
},
"StructureDefinition/cpg-groupdefinition": {
"defns": "StructureDefinition-cpg-groupdefinition-definitions.html",
"base": "StructureDefinition-cpg-groupdefinition.html"
},
"StructureDefinition/cpg-identifier": {
"defns": "StructureDefinition-cpg-identifier-definitions.html",
"base": "StructureDefinition-cpg-identifier.html"
},
"StructureDefinition/cpg-immunization": {
"defns": "StructureDefinition-cpg-immunization-definitions.html",
"base": "StructureDefinition-cpg-immunization.html"
},
"StructureDefinition/cpg-immunizationactivity": {
"defns": "StructureDefinition-cpg-immunizationactivity-definitions.html",
"base": "StructureDefinition-cpg-immunizationactivity.html"
},
"StructureDefinition/cpg-immunizationrecommendation": {
"defns": "StructureDefinition-cpg-immunizationrecommendation-definitions.html",
"base": "StructureDefinition-cpg-immunizationrecommendation.html"
},
"StructureDefinition/cpg-impressionFor": {
"defns": "StructureDefinition-cpg-impressionFor-definitions.html",
"base": "StructureDefinition-cpg-impressionFor.html"
},
"StructureDefinition/cpg-inferenceExpression": {
"defns": "StructureDefinition-cpg-inferenceExpression-definitions.html",
"base": "StructureDefinition-cpg-inferenceExpression.html"
},
"StructureDefinition/cpg-instantiatesCaseFeature": {
"defns": "StructureDefinition-cpg-instantiatesCaseFeature-definitions.html",
"base": "StructureDefinition-cpg-instantiatesCaseFeature.html"
},
"StructureDefinition/cpg-isUnenrollment": {
"defns": "StructureDefinition-cpg-isUnenrollment-definitions.html",
"base": "StructureDefinition-cpg-isUnenrollment.html"
},
"StructureDefinition/cpg-itemImage": {
"defns": "StructureDefinition-cpg-itemImage-definitions.html",
"base": "StructureDefinition-cpg-itemImage.html"
},
"StructureDefinition/cpg-knowledgeCapability": {
"defns": "StructureDefinition-cpg-knowledgeCapability-definitions.html",
"base": "StructureDefinition-cpg-knowledgeCapability.html"
},
"StructureDefinition/cpg-knowledgeRepresentationLevel": {
"defns": "StructureDefinition-cpg-knowledgeRepresentationLevel-definitions.html",
"base": "StructureDefinition-cpg-knowledgeRepresentationLevel.html"
},
"StructureDefinition/cpg-location": {
"defns": "StructureDefinition-cpg-location-definitions.html",
"base": "StructureDefinition-cpg-location.html"
},
"StructureDefinition/cpg-locationdefinition": {
"defns": "StructureDefinition-cpg-locationdefinition-definitions.html",
"base": "StructureDefinition-cpg-locationdefinition.html"
},
"StructureDefinition/cpg-medicationadministration": {
"defns": "StructureDefinition-cpg-medicationadministration-definitions.html",
"base": "StructureDefinition-cpg-medicationadministration.html"
},
"StructureDefinition/cpg-medicationdispense": {
"defns": "StructureDefinition-cpg-medicationdispense-definitions.html",
"base": "StructureDefinition-cpg-medicationdispense.html"
},
"StructureDefinition/cpg-medicationrequest": {
"defns": "StructureDefinition-cpg-medicationrequest-definitions.html",
"base": "StructureDefinition-cpg-medicationrequest.html"
},
"StructureDefinition/cpg-medicationrequestactivity": {
"defns": "StructureDefinition-cpg-medicationrequestactivity-definitions.html",
"base": "StructureDefinition-cpg-medicationrequestactivity.html"
},
"StructureDefinition/cpg-medicationstatement": {
"defns": "StructureDefinition-cpg-medicationstatement-definitions.html",
"base": "StructureDefinition-cpg-medicationstatement.html"
},
"StructureDefinition/cpg-metricreport": {
"defns": "StructureDefinition-cpg-metricreport-definitions.html",
"base": "StructureDefinition-cpg-metricreport.html"
},
"StructureDefinition/cpg-observation": {
"defns": "StructureDefinition-cpg-observation-definitions.html",
"base": "StructureDefinition-cpg-observation.html"
},
"StructureDefinition/cpg-ordersetdefinition": {
"defns": "StructureDefinition-cpg-ordersetdefinition-definitions.html",