fhir 1.2.0

Fast Healthcare Interoperability Resources (FHIR) data model for Rust: the complete FHIR R5, R4, and R3 resources, datatypes, and code systems as serde-serializable types, plus a spec-driven code generator.
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
//! Generated element-metadata table — DO NOT EDIT.
//!
//! Produced from the FHIR R3 specification JSON by `crate::codegen::meta_gen`.
//! Regenerate with `cargo run -- r3`.

use crate::meta::{BindingMeta, BindingStrength, ElementMeta, TypeRef};

pub(super) static ELEMENTS: &[ElementMeta] = &[
    ElementMeta { path: "Account.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Account.balance", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Account.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Account.coverage", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Account.coverage.coverage", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "Account.coverage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.coverage.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Account.coverage.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.coverage.priority", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Account.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Account.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor.onHold", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Account.guarantor.party", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Account.guarantor.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Account.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Account.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Account.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Account.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Account.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Account.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Account.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Account.owner", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Account.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Account.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/account-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Account.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Account.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Account.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/account-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.bodySite", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.contributor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Contributor", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dosage", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Dosage", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.language", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.dynamicValue.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.kind", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.library", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Library"] }] },
    ElementMeta { path: "ActivityDefinition.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "ActivityDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/action-participant-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.participant.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-participant-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.product[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.topic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/definition-topic") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.transform", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureMap"] }] },
    ElementMeta { path: "ActivityDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ActivityDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.city", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.country", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.district", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Address.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.line", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Address.postalCode", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.state", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.text", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Address.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/address-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Address.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/address-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-category") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.eventParticipant", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "AdverseEvent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.location", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "AdverseEvent.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.outcome", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.reaction", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "AdverseEvent.recorder", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "AdverseEvent.referenceDocument", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }] },
    ElementMeta { path: "AdverseEvent.seriousness", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-seriousness") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.study", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ResearchStudy"] }] },
    ElementMeta { path: "AdverseEvent.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ResearchSubject"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "AdverseEvent.subjectMedicalHistory", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Immunization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causality", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-causality") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causalityAssessment", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-causality-assess") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causalityAuthor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PractitionerRole"] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causalityMethod", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-causality-method") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causalityProductRelatedness", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.causalityResult", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-causality-result") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.instance", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationAdministration"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationStatement"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "AdverseEvent.suspectEntity.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "AdverseEvent.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adverse-event-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Age.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Age.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Age.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Age.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Age.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Age.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Age.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.assertedDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.asserter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "AllergyIntolerance.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/allergy-intolerance-category") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.clinicalStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/allergy-clinical-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/allergyintolerance-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.criticality", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/allergy-intolerance-criticality") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.lastOccurrence", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.onset[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "AllergyIntolerance.reaction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.exposureRoute", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/route-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.manifestation", min: 1, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.onset", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.severity", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/reaction-event-severity") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.reaction.substance", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/substance-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.recorder", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "AllergyIntolerance.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/allergy-intolerance-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AllergyIntolerance.verificationStatus", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/allergy-verification-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Annotation.author[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Annotation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Annotation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Annotation.text", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Annotation.time", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.appointmentType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0276") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.end", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.incomingReferral", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "Appointment.indication", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "Appointment.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.minutesDuration", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.actor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Appointment.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.required", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/participantrequired") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/participationstatus") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.participant.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-participant-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.priority", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.reason", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.requestedPeriod", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.serviceCategory", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.serviceType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.slot", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Slot"] }] },
    ElementMeta { path: "Appointment.specialty", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.start", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/appointmentstatus") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Appointment.supportingInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Appointment.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.actor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "AppointmentResponse.appointment", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Appointment"] }] },
    ElementMeta { path: "AppointmentResponse.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.end", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.participantStatus", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/participationstatus") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.participantType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-participant-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.start", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "AppointmentResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.contentType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.creation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.data", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.hash", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.language", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.size", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Attachment.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.action", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/audit-event-action") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.altId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "AuditEvent.agent.media", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/dicm-405-mediatype") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network.address", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.network.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/network-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.policy", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.purposeOfUse", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.reference", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "AuditEvent.agent.requestor", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.role", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-role-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.agent.userId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail.type", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.detail.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.lifecycle", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/object-lifecycle-events") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.query", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.reference", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "AuditEvent.entity.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/object-role") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.securityLabel", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.entity.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/audit-entity-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.outcome", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/audit-event-outcome") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.outcomeDesc", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.purposeOfEvent", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.recorded", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.identifier", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.site", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.source.type", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/audit-source-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.subtype", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/audit-event-sub-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "AuditEvent.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/audit-event-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "BackboneElement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "BackboneElement.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "BackboneElement.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Basic.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Basic.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/basic-resource-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Basic.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Basic.created", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Basic.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Basic.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Basic.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Basic.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Basic.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Basic.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Basic.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Basic.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Basic.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Binary.content", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "Binary.contentType", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Binary.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Binary.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Binary.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Binary.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Binary.securityContext", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "BodySite.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.image", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "BodySite.qualifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/bodysite-relative-location") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "BodySite.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.fullUrl", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.link", min: 0, max: "*", is_summary: true, binding: None, types: &[] },
    ElementMeta { path: "Bundle.entry.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.ifMatch", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.ifModifiedSince", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.ifNoneExist", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.ifNoneMatch", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.method", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/http-verb") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.request.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.resource", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.etag", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.lastModified", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.location", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.outcome", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.response.status", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search.mode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-entry-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.entry.search.score", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link.relation", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.link.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.signature", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Signature", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.total", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Bundle.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/bundle-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.acceptUnknown", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/unknown-content-code") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.date", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.mode", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/document-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.document.profile", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.fhirVersion", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.format", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation.description", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementation.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implementationGuide", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.instantiates", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.kind", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/capability-statement-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint.address", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.endpoint.protocol", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/message-transport") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/message-significance-category") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/message-events") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.focus", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.mode", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/event-capability-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.request", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.messaging.event.response", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.messaging.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.reliableCache", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage.definition", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MessageDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/event-capability-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.messaging.supportedMessage.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.patchFormat", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.profile", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.compartment", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/system-restful-interaction") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.interaction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/restful-capability-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation.definition", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/OperationDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.operation.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.conditionalCreate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.conditionalDelete", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/conditional-delete-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.conditionalRead", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/conditional-read-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.conditionalUpdate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/type-restful-interaction") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.interaction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.profile", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.readHistory", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.referencePolicy", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/reference-handling-policy") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchInclude", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchParam.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-param-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.searchRevInclude", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.updateCreate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.resource.versioning", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/versioning-policy") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.searchParam", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "CapabilityStatement.rest.security", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate.blob", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.certificate.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.cors", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.rest.security.service", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/restful-security-service") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.releaseDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.software.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "CapabilityStatement.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-activity-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-activity") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.dailyAmount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Questionnaire"] }] },
    ElementMeta { path: "CarePlan.activity.detail.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.goal", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Goal"] }] },
    ElementMeta { path: "CarePlan.activity.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "CarePlan.activity.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.performer", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "CarePlan.activity.detail.product[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "CarePlan.activity.detail.prohibited", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.reasonCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/activity-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.reasonReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "CarePlan.activity.detail.scheduled[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-activity-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.detail.statusReason", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.outcomeCodeableConcept", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-activity-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.outcomeReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CarePlan.activity.progress", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.activity.reference", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Appointment"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CommunicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/NutritionOrder"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Task"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/VisionPrescription"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RequestGroup"] }] },
    ElementMeta { path: "CarePlan.addresses", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "CarePlan.author", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "CarePlan.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }] },
    ElementMeta { path: "CarePlan.careTeam", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "CarePlan.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "CarePlan.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Questionnaire"] }] },
    ElementMeta { path: "CarePlan.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.goal", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Goal"] }] },
    ElementMeta { path: "CarePlan.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }] },
    ElementMeta { path: "CarePlan.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.replaces", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }] },
    ElementMeta { path: "CarePlan.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/care-plan-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "CarePlan.supportingInfo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CarePlan.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CarePlan.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/care-team-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "CareTeam.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.managingOrganization", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "CareTeam.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant.member", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "CareTeam.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "CareTeam.participant.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.participant.role", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/participant-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.reasonCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.reasonReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "CareTeam.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/care-team-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CareTeam.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "CareTeam.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.account", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Account"] }] },
    ElementMeta { path: "ChargeItem.bodysite", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/chargeitem-billingcodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "ChargeItem.definition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.enteredDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.enterer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "ChargeItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.factorOverride", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.overrideReason", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.partOf", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ChargeItem"] }] },
    ElementMeta { path: "ChargeItem.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.participant.actor", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "ChargeItem.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.participant.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/performer-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.performingOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ChargeItem.priceOverride", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.quantity", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.reason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/icd-10") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.requestingOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ChargeItem.service", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DiagnosticReport"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImagingStudy"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Immunization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationAdministration"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationDispense"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/SupplyDelivery"] }] },
    ElementMeta { path: "ChargeItem.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/chargeitem-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ChargeItem.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "ChargeItem.supportingInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ChargeItem.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident.date", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident.location[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Claim.accident.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.accident.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActIncidentCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.billablePeriod", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.provider", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Claim.careTeam.qualification", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/provider-qualification") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.responsible", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-careteamrole") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.careTeam.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Claim.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.diagnosis[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/icd-10") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "Claim.diagnosis.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.packageCode", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-diagnosisrelatedgroup") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.diagnosis.type", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-diagnosistype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.employmentImpacted", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Claim.enterer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Claim.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.facility", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Claim.fundsReserve", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/fundsreserve") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.hospitalization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Claim.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Claim.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Claim.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-informationcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-exception") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/missing-tooth-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Claim.information.value[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Claim.insurance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.businessArrangement", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.claimResponse", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ClaimResponse"] }] },
    ElementMeta { path: "Claim.insurance.coverage", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "Claim.insurance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.focal", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.preAuthRef", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurance.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Claim.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.bodySite", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/tooth") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.careTeamLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Claim.item.detail.subDetail.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.detail.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Claim.item.detail.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.diagnosisLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.encounter", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "Claim.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.informationLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.location[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-place") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Claim.item.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.procedureLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.serviced[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.subSite", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/surface") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.item.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Claim.item.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Claim.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Claim.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Claim.originalPrescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }] },
    ElementMeta { path: "Claim.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Claim.payee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.payee.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.payee.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.payee.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.payee.party", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Claim.payee.resourceType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-payee-resource-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Claim.payee.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payeetype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.prescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/VisionPrescription"] }] },
    ElementMeta { path: "Claim.priority", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/process-priority") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.procedure.procedure[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/icd-10-procedures") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "Claim.procedure.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Claim.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Claim.referral", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "Claim.related", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Claim.related.claim", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Claim"] }] },
    ElementMeta { path: "Claim.related.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.related.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Claim.related.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Claim.related.reference", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Claim.related.relationship", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/related-claim-relationship") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Claim.subType", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-subtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Claim.total", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Claim.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/claim-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Claim.use", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/claim-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ClaimResponse.addItem.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ClaimResponse.addItem.detail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.fee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.detail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.fee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.sequenceLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.addItem.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.communicationRequest", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CommunicationRequest"] }] },
    ElementMeta { path: "ClaimResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication-error") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.detailSequenceLinkId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.sequenceLinkId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.error.subdetailSequenceLinkId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/forms") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.businessArrangement", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.claimResponse", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ClaimResponse"] }] },
    ElementMeta { path: "ClaimResponse.insurance.coverage", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "ClaimResponse.insurance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.focal", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.preAuthRef", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurance.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ClaimResponse.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.adjudication.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ClaimResponse.item.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.sequenceLinkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.detail.subDetail.sequenceLinkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.item.sequenceLinkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/remittance-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ClaimResponse.payeeType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payeetype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.adjustment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.adjustmentReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payment-adjustment-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.payment.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-paymenttype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.number", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.processNote.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/note-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Claim"] }] },
    ElementMeta { path: "ClaimResponse.requestOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ClaimResponse.requestProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ClaimResponse.reserved", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/fundsreserve") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.totalBenefit", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.totalCost", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClaimResponse.unallocDeductable", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.action", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Appointment"] }] },
    ElementMeta { path: "ClinicalImpression.assessor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ClinicalImpression.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "ClinicalImpression.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.effective[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.finding", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.finding.basis", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.finding.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.finding.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.finding.item[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "ClinicalImpression.finding.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.investigation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.investigation.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/investigation-sets") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.investigation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.investigation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.investigation.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DiagnosticReport"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RiskAssessment"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImagingStudy"] }] },
    ElementMeta { path: "ClinicalImpression.investigation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.previous", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ClinicalImpression"] }] },
    ElementMeta { path: "ClinicalImpression.problem", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"] }] },
    ElementMeta { path: "ClinicalImpression.prognosisCodeableConcept", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinicalimpression-prognosis") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.prognosisReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RiskAssessment"] }] },
    ElementMeta { path: "ClinicalImpression.protocol", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-impression-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "ClinicalImpression.summary", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ClinicalImpression.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.caseSensitive", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.compositional", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.code", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.concept", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "CodeSystem.concept.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.use", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/designation-use") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.designation.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property.code", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.concept.property.value[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.content", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/codesystem-content-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.count", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.code", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.operator", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/filter-operator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.filter.value", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.hierarchyMeaning", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/codesystem-hierarchy-meaning") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.code", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/concept-property-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.property.uri", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.valueSet", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeSystem.versionNeeded", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CodeableConcept.coding", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "CodeableConcept.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CodeableConcept.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CodeableConcept.text", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coding.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Coding.display", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coding.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Coding.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coding.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Coding.userSelected", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Coding.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Communication.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Communication.category", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/communication-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Communication.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Communication.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Communication.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }] },
    ElementMeta { path: "Communication.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Communication.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Communication.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Communication.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Communication.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Communication.medium", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ParticipationMode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Communication.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Communication.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Communication.notDone", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Communication.notDoneReason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/communication-not-done-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Communication.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Communication.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Communication.payload", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Communication.payload.content[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Communication.payload.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Communication.payload.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Communication.payload.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Communication.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Communication.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "Communication.received", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Communication.recipient", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "Communication.sender", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Communication.sent", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Communication.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/event-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Communication.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "Communication.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Communication.topic", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CommunicationRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CommunicationRequest.category", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/communication-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "CommunicationRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.medium", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ParticipationMode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.payload", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.payload.content[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CommunicationRequest.payload.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.payload.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.payload.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActReason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "CommunicationRequest.recipient", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "CommunicationRequest.replaces", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CommunicationRequest"] }] },
    ElementMeta { path: "CommunicationRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "CommunicationRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "CommunicationRequest.sender", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "CommunicationRequest.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.subject", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "CommunicationRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CommunicationRequest.topic", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "CompartmentDefinition.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/compartment-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.resource.param", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.search", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "CompartmentDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester.mode", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/composition-attestation-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.attester.party", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Composition.attester.time", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Composition.author", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Composition.class", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/doc-classcodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Composition.confidentiality", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ConfidentialityClassification") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Composition.custodian", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Composition.date", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Composition.encounter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "Composition.event", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Composition.event.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Composition.event.detail", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Composition.event.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.event.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.event.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.event.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Composition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Composition.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Composition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Composition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Composition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/document-relationship-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.relatesTo.target[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Composition"] }] },
    ElementMeta { path: "Composition.section", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/doc-section-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.emptyReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/list-empty-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.entry", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Composition.section.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.mode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/list-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.orderedBy", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/list-order") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.section", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "Composition.section.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Composition.section.title", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/composition-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Composition.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Composition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Composition.title", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Composition.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/doc-typecodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.code", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.code", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.code", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.property", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.dependsOn.system", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.equivalence", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/concept-map-equivalence") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.element.target.product", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ConceptMap.group.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.source", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.sourceVersion", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.target", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.targetVersion", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.code", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.mode", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/conceptmap-unmapped-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.group.unmapped.url", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.source[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "ConceptMap.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.target[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "ConceptMap.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ConceptMap.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Condition.abatement[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Condition.assertedDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Condition.asserter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Condition.bodySite", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.category", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.clinicalStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/condition-clinical") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Condition.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Condition.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Condition.evidence", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Condition.evidence.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/manifestation-or-symptom") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.evidence.detail", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Condition.evidence.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.evidence.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Condition.evidence.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Condition.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Condition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Condition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Condition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Condition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Condition.onset[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Condition.severity", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/condition-severity") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.stage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Condition.stage.assessment", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ClinicalImpression"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DiagnosticReport"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "Condition.stage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.stage.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Condition.stage.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Condition.stage.summary", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-stage") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Condition.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "Condition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Condition.verificationStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/condition-ver-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.action", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/consent-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Consent.actor", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.actor.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.actor.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.actor.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.actor.reference", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Consent.actor.role", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-role-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Consent.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/consent-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Consent.consentingParty", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Consent.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data.meaning", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/consent-data-meaning") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.data.reference", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Consent.dataPeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Consent.dateTime", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.action", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/consent-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.actor", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.actor.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.actor.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.actor.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.actor.reference", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Consent.except.actor.role", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-role-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.class", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/consent-content-class") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/consent-content-code") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data.meaning", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/consent-data-meaning") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.data.reference", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Consent.except.dataPeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.purpose", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.securityLabel", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.except.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/consent-except-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Consent.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Consent.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Consent.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Consent.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.organization", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Consent.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Consent.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy.authority", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policy.uri", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Consent.policyRule", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Consent.purpose", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.securityLabel", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Consent.source[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Consent"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }] },
    ElementMeta { path: "Consent.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/consent-state-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Consent.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ContactDetail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ContactDetail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ContactDetail.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ContactDetail.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.rank", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.system", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/contact-point-system") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/contact-point-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ContactPoint.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.action", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.actionReason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.agent", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.agent.actor", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Contract.agent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.agent.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.agent.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.agent.role", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-actorrole") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.applies", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Contract.authority", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Contract.binding[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Composition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }] },
    ElementMeta { path: "Contract.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Contract.contentDerivative", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-content-derivative") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.decisionType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActConsentDirective") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.domain", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Contract.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.friendly", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.friendly.content[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Composition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }] },
    ElementMeta { path: "Contract.friendly.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.friendly.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.friendly.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Contract.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Contract.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Contract.issued", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Contract.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Contract.legal", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.legal.content[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Composition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }] },
    ElementMeta { path: "Contract.legal.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.legal.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.legal.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Contract.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.rule", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.rule.content[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }] },
    ElementMeta { path: "Contract.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.securityLabel", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer.party", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Contract.signer.signature", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Signature", target_profiles: &[] }] },
    ElementMeta { path: "Contract.signer.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/contract-signer-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Contract.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/contract-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Contract.subType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-subtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.subject", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Contract.term", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.action", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.actionReason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.agent", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.agent.actor", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Contract.term.agent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.agent.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.agent.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.agent.role", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-actorrole") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.applies", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.group", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "Contract.term.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.issued", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.securityLabel", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.subType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-term-subtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.topic", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Contract.term.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-term-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.effectiveTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.entity[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Contract.term.valuedItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.points", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Contract.term.valuedItem.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Contract.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Contract.topic", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Contract.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/contract-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.effectiveTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.entity[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Contract.valuedItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.points", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Contract.valuedItem.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Contributor.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "Contributor.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Contributor.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contributor.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Contributor.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/contributor-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Count.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Count.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Count.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Count.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Count.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Count.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Count.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.beneficiary", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Coverage.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.contract", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }] },
    ElementMeta { path: "Coverage.dependent", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.class", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.classDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.group", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.groupDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.plan", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.planDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subClass", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subClassDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subGroup", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subGroupDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subPlan", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.grouping.subPlanDisplay", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.network", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.order", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.payor", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Coverage.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.policyHolder", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Coverage.relationship", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/policyholder-relationship") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.sequence", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.subscriber", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Coverage.subscriberId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Coverage.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/coverage-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.element", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ElementDefinition", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.identity", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.mapping.uri", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.stringency", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/dataelement-stringency") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "DataElement.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.path", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.valueCode", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.valueCodeableConcept", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.valueCoding", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.codeFilter.valueSet[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "DataRequirement.dateFilter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.dateFilter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.dateFilter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.dateFilter.path", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.dateFilter.value[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.mustSupport", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.profile", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DataRequirement.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/all-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DetectedIssue.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/detectedissue-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.detail", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.implicated", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DetectedIssue.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation.action", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/detectedissue-mitigation-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation.author", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "DetectedIssue.mitigation.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.mitigation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.patient", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "DetectedIssue.reference", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.severity", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/detectedissue-severity") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/observation-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DetectedIssue.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Device.contact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Device.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Device.expirationDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Device.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Device.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Device.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Device.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Device.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Device.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Device.lotNumber", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.manufactureDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Device.manufacturer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Device.model", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Device.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Device.owner", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Device.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Device.safety", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/device-safety") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Device.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/device-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Device.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Device.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/device-kind") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.carrierAIDC", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.carrierHRF", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.deviceIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.entryType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/udi-entry-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.issuer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.jurisdiction", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Device.udi.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Device.url", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Device.version", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.identifier", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.languageCode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.lastSystemChange", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.measurementPrinciple", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/measurement-principle") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.operationalStatus", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/operational-status") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.parameterGroup", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/parameter-group") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.parent", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceComponent"] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.componentId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.productionSpec", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.productionSpecification.specType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/specification-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DeviceComponent.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DeviceComponent.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/device-kind") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.state", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/metric-calibration-state") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.time", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.calibration.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/metric-calibration-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.category", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/metric-category") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.color", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/metric-color") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.identifier", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.measurementPeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.operationalStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/metric-operational-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.parent", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceComponent"] }] },
    ElementMeta { path: "DeviceMetric.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DeviceMetric.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/devicemetric-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceMetric.unit", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/devicemetric-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DeviceRequest.code[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/device-kind") }), types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "DeviceRequest.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "DeviceRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-intent") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.performer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }] },
    ElementMeta { path: "DeviceRequest.performerType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/participant-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.priorRequest", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DeviceRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DeviceRequest.relevantHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "DeviceRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DeviceRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DeviceRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceRequest.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DeviceRequest.supportingInfo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DeviceRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.bodySite", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.device", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DeviceUseStatement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.indication", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.recordedOn", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.source", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "DeviceUseStatement.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/device-statement-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.subject", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "DeviceUseStatement.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DeviceUseStatement.whenUsed", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.basedOn", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/NutritionOrder"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "DiagnosticReport.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/diagnostic-service-sections") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/report-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.codedDiagnosis", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.conclusion", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "DiagnosticReport.effective[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.image", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.image.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.image.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.image.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.image.link", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Media"] }] },
    ElementMeta { path: "DiagnosticReport.image.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.imagingStudy", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImagingStudy"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImagingManifest"] }] },
    ElementMeta { path: "DiagnosticReport.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.issued", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.performer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.performer.actor", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DiagnosticReport.performer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.performer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.performer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.performer.role", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/performer-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.presentedForm", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.result", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "DiagnosticReport.specimen", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "DiagnosticReport.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/diagnostic-report-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DiagnosticReport.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "DiagnosticReport.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Distance.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Distance.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Distance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Distance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Distance.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Distance.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Distance.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.author", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "DocumentManifest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.content", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.content.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.content.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.content.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.content.p[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DocumentManifest.created", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.masterIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.recipient", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DocumentManifest.related", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.related.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.related.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.related.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.related.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.related.ref", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DocumentManifest.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/document-reference-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DocumentManifest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DocumentManifest.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-doc-typecodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.authenticator", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DocumentReference.author", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "DocumentReference.class", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/c80-doc-classcodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content.attachment", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content.format", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/formatcodes") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.content.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.encounter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "DocumentReference.context.event", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.facilityType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/c80-facilitycodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.practiceSetting", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.context.related.ref", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "DocumentReference.context.sourcePatientInfo", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "DocumentReference.created", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.custodian", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "DocumentReference.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.docStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/composition-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.indexed", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.masterIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/document-relationship-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.relatesTo.target", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DocumentReference"] }] },
    ElementMeta { path: "DocumentReference.securityLabel", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/document-reference-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "DocumentReference.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "DocumentReference.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-doc-typecodes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "DomainResource.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.additionalInstruction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/additional-instruction-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.asNeeded[x]", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-as-needed-reason") }), types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.dose[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.maxDosePerAdministration", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.maxDosePerLifetime", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.maxDosePerPeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Ratio", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.method", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/administration-method-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.patientInstruction", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.rate[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.route", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/route-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.sequence", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.site", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/approach-site-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.text", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Dosage.timing", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "Duration.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Duration.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Duration.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Duration.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Duration.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Duration.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Duration.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Element.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Element.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.alias", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base.max", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base.min", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.base.path", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding.strength", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/binding-strength") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.binding.valueSet[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "ElementDefinition.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-codes") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.comment", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.condition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.expression", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.human", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.key", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.requirements", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.severity", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/constraint-severity") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.constraint.xpath", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.contentReference", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.defaultValue[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.definition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.example", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.example.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.example.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.example.label", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.example.value[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.fixed[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.isModifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.isSummary", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.label", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.comment", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.identity", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.language", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mapping.map", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.max", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.maxLength", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.maxValue[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.meaningWhenMissing", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.min", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.minValue[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.mustSupport", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.orderMeaning", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.path", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.pattern[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.representation", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/property-representation") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.requirements", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.short", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.sliceName", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.discriminator", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.discriminator.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.discriminator.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.discriminator.path", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.discriminator.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/discriminator-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.ordered", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.slicing.rules", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-slicing-rules") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.aggregation", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-aggregation-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/defined-types") }), types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.profile", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.targetProfile", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ElementDefinition.type.versioning", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/reference-version-rules") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.benefitCategory", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.benefitSubCategory", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.businessArrangement", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.coverage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "EligibilityRequest.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.enterer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EligibilityRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.facility", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "EligibilityRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EligibilityRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EligibilityRequest.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "EligibilityRequest.priority", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/process-priority") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EligibilityRequest.serviced[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.error", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.error.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication-error") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.error.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.error.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.error.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/forms") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.inforce", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.excluded", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.allowed[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.financial.used[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.network", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-network") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.subCategory", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.term", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-term") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.benefitBalance.unit", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-unit") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.contract", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }] },
    ElementMeta { path: "EligibilityResponse.insurance.coverage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "EligibilityResponse.insurance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EligibilityResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/remittance-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EligibilityRequest"] }] },
    ElementMeta { path: "EligibilityResponse.requestOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EligibilityResponse.requestProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EligibilityResponse.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EligibilityResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.account", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Account"] }] },
    ElementMeta { path: "Encounter.appointment", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Appointment"] }] },
    ElementMeta { path: "Encounter.class", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActEncounterCode") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory.class", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActEncounterCode") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.classHistory.period", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis.condition", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "Encounter.diagnosis.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis.rank", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.diagnosis.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/diagnosis-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.episodeOfCare", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Encounter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.admitSource", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-admit-source") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.destination", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Encounter.hospitalization.dietPreference", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-diet") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.dischargeDisposition", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-discharge-disposition") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.origin", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Encounter.hospitalization.preAdmissionIdentifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.reAdmission", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0092") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.specialArrangement", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-special-arrangements") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.hospitalization.specialCourtesy", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-special-courtesy") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.incomingReferral", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "Encounter.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.length", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location.location", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Encounter.location.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.location.status", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-location-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.partOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "Encounter.participant", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.participant.individual", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Encounter.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.participant.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.participant.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-participant-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.priority", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActPriority") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.reason", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.serviceProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Encounter.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory.period", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.statusHistory.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "Encounter.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Encounter.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.address", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.connectionType", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/endpoint-connection-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.contact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.header", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.managingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Endpoint.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.payloadMimeType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.payloadType", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/endpoint-payload-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/endpoint-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Endpoint.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.coverage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "EnrollmentRequest.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EnrollmentRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EnrollmentRequest.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EnrollmentRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentRequest.subject", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "EnrollmentRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EnrollmentResponse.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/remittance-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EnrollmentRequest"] }] },
    ElementMeta { path: "EnrollmentResponse.requestOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EnrollmentResponse.requestProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EnrollmentResponse.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EnrollmentResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.account", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Account"] }] },
    ElementMeta { path: "EpisodeOfCare.careManager", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "EpisodeOfCare.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.condition", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.rank", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.diagnosis.role", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/diagnosis-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.managingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "EpisodeOfCare.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "EpisodeOfCare.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.referralRequest", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "EpisodeOfCare.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/episode-of-care-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory.period", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.statusHistory.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/episode-of-care-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.team", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CareTeam"] }] },
    ElementMeta { path: "EpisodeOfCare.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "EpisodeOfCare.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/episodeofcare-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.activeOnly", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation.language", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.designation.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/designation-use") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.exclude.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation.language", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.designation.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/designation-use") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.include.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.designation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.displayLanguage", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludeNested", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludeNotForUI", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludePostCoordinated", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem.system", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.excludedSystem.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/system-version-processing-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.system", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.fixedVersion.version", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.includeDefinition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.includeDesignations", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.limitedExpansion", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ExpansionProfile.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.location[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.accident.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActIncidentCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.fee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.detail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.fee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.sequenceLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.addItem.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.excluded", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.allowed[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.financial.used[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.network", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-network") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.subCategory", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.term", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-term") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.benefitBalance.unit", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-unit") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.billablePeriod", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.provider", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.qualification", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/provider-qualification") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.responsible", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-careteamrole") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.careTeam.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.claim", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Claim"] }] },
    ElementMeta { path: "ExplanationOfBenefit.claimResponse", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ClaimResponse"] }] },
    ElementMeta { path: "ExplanationOfBenefit.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.diagnosis[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/icd-10") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.packageCode", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-diagnosisrelatedgroup") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.diagnosis.type", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-diagnosistype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.employmentImpacted", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.enterer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ExplanationOfBenefit.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.facility", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "ExplanationOfBenefit.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/forms") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.hospitalization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-informationcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-exception") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/missing-tooth-reason") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.information.value[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance.coverage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Coverage"] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurance.preAuthRef", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.insurer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.category", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.adjudication.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.bodySite", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/tooth") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.careTeamLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.adjudication", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/benefit-subcategory") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActInvoiceGroupCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.subDetail.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActInvoiceGroupCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.detail.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.diagnosisLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.encounter", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.factor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.informationLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.location[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-place") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-modifiers") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.net", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.noteNumber", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.procedureLinkId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.programCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-program-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.revenue", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-revenue-center") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.service", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-uscls") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.serviced[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.subSite", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/surface") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.udi", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "ExplanationOfBenefit.item.unitPrice", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ExplanationOfBenefit.originalPrescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }] },
    ElementMeta { path: "ExplanationOfBenefit.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/remittance-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.party", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.resourceType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-type-link") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payee.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payeetype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.adjustment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.adjustmentReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payment-adjustment-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.payment.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/ex-paymenttype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.precedence", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.prescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/VisionPrescription"] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.procedure[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/icd-10-procedures") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "ExplanationOfBenefit.procedure.sequence", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.number", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.processNote.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/note-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ExplanationOfBenefit.referral", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "ExplanationOfBenefit.related", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.claim", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Claim"] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.reference", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.related.relationship", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/related-claim-relationship") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/explanationofbenefit-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.subType", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/claim-subtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.totalBenefit", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.totalCost", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/claim-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ExplanationOfBenefit.unallocDeductable", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Extension.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Extension.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Extension.url", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Extension.value[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.age[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.born[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.onset[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.condition.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.deceased[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Questionnaire"] }] },
    ElementMeta { path: "FamilyMemberHistory.estimatedAge", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.gender", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.notDone", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.notDoneReason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/history-not-done-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "FamilyMemberHistory.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }] },
    ElementMeta { path: "FamilyMemberHistory.relationship", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-FamilyMember") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/history-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "FamilyMemberHistory.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Flag.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Flag.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/flag-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Flag.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/flag-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Flag.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Flag.encounter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "Flag.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Flag.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Flag.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Flag.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Flag.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Flag.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Flag.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Flag.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Flag.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/flag-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Flag.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "Flag.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Goal.addresses", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationStatement"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/NutritionOrder"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RiskAssessment"] }] },
    ElementMeta { path: "Goal.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/goal-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Goal.description", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.expressedBy", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Goal.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Goal.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Goal.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Goal.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Goal.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Goal.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Goal.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Goal.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Goal.outcomeCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.outcomeReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "Goal.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/goal-priority") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.start[x]", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/goal-start-event") }), types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/goal-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Goal.statusDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Goal.statusReason", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Goal.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Goal.target", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.detail[x]", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.due[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.measure", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Goal.target.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Goal.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.max", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.min", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.path", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.sliceName", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/compartment-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.compartment.rule", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/graph-compartment-rule") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.link", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "GraphDefinition.link.target.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.profile", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.link.target.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.profile", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.start", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "GraphDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Group.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Group.actual", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.exclude", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Group.characteristic.value[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "Group.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Group.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Group.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Group.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Group.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Group.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Group.member", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Group.member.entity", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Group.member.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.member.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Group.member.inactive", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Group.member.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.member.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Group.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Group.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Group.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Group.quantity", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Group.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Group.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/group-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "GuidanceResponse.dataRequirement", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.evaluationMessage", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/OperationOutcome"] }] },
    ElementMeta { path: "GuidanceResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.module", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ServiceDefinition"] }] },
    ElementMeta { path: "GuidanceResponse.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.occurrenceDateTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.outputParameters", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Parameters"] }] },
    ElementMeta { path: "GuidanceResponse.performer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "GuidanceResponse.reason[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "GuidanceResponse.requestId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.result", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RequestGroup"] }] },
    ElementMeta { path: "GuidanceResponse.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/guidance-response-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "GuidanceResponse.subject", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "GuidanceResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.appointmentRequired", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availabilityExceptions", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.allDay", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.availableEndTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "time", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.availableStartTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "time", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.daysOfWeek", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/days-of-week") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.availableTime.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.characteristic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.comment", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.coverageArea", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "HealthcareService.eligibility", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.eligibilityNote", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.endpoint", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "HealthcareService.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.extraDetails", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.location", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "HealthcareService.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable.description", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable.during", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.notAvailable.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.photo", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.programName", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.providedBy", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "HealthcareService.referralMethod", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-referral-method") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.serviceProvisionCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-provision-conditions") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.specialty", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.telecom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "HealthcareService.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.family", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.given", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.prefix", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.suffix", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.text", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "HumanName.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/name-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.assigner", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Identifier.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/identifier-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.use", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/identifier-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Identifier.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "ImagingManifest.authoringTime", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ImagingManifest.study", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.endpoint", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "ImagingManifest.study.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.imagingStudy", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImagingStudy"] }] },
    ElementMeta { path: "ImagingManifest.study.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.endpoint", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "ImagingManifest.study.series.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance.sopClass", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.instance.uid", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.series.uid", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.study.uid", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingManifest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.accession", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.availability", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/instance-availability") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }] },
    ElementMeta { path: "ImagingStudy.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "ImagingStudy.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.endpoint", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "ImagingStudy.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.interpreter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ImagingStudy.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.modalityList", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/dicom-cid29") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.numberOfInstances", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.numberOfSeries", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ImagingStudy.procedureCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.procedureReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "ImagingStudy.reason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.referrer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ImagingStudy.series", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.availability", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/instance-availability") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.bodySite", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.endpoint", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "ImagingStudy.series.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.number", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.sopClass", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.title", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.instance.uid", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.laterality", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/bodysite-laterality") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.modality", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/dicom-cid29") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.number", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.numberOfInstances", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.performer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ImagingStudy.series.started", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.series.uid", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.started", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ImagingStudy.uid", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "oid", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.doseQuantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.encounter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "Immunization.expirationDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation.reason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.explanation.reasonNotGiven", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/no-immunization-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Immunization.lotNumber", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.manufacturer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Immunization.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.notGiven", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.note", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.patient", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Immunization.practitioner", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.practitioner.actor", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Immunization.practitioner.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.practitioner.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.practitioner.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.practitioner.role", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.primarySource", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction.detail", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "Immunization.reaction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reaction.reported", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.reportOrigin", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-origin") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.route", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-route") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.site", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.authority", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.doseSequence", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.doseStatus", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vaccination-protocol-dose-status") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.doseStatusReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vaccination-protocol-dose-status-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.series", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.seriesDoses", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccinationProtocol.targetDisease", min: 1, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vaccination-protocol-dose-target") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Immunization.vaccineCode", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vaccine-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.date", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-recommendation-date-criterion") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.dateCriterion.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.doseNumber", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.forecastStatus", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-recommendation-status") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.authority", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.doseSequence", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.protocol.series", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.supportingImmunization", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Immunization"] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.supportingPatientInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.targetDisease", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/immunization-recommendation-target-disease") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.recommendation.vaccineCode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vaccine-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImmunizationRecommendation.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.binary", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/guide-dependency-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.dependency.uri", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.fhirVersion", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.global", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.global.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.global.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.global.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.global.profile", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "ImplementationGuide.global.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.acronym", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.example", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.exampleFor", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.package.resource.source[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ImplementationGuide.page", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.format", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.kind", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/guide-page-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.package", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.page", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ImplementationGuide.page.source", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.title", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.page.type", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ImplementationGuide.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Library.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Library.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "Library.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Library.content", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Library.contributor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Contributor", target_profiles: &[] }] },
    ElementMeta { path: "Library.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Library.dataRequirement", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "Library.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Library.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Library.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Library.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Library.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Library.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Library.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Library.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Library.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Library.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Library.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Library.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Library.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Library.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Library.parameter", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ParameterDefinition", target_profiles: &[] }] },
    ElementMeta { path: "Library.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Library.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Library.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "Library.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Library.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Library.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Library.topic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/definition-topic") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Library.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/library-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Library.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Library.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Library.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "Library.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Linkage.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item.resource", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.item.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/linkage-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Linkage.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "List.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/list-example-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "List.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "List.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "List.emptyReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/list-empty-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "List.encounter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "List.entry", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.deleted", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.flag", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/list-item-flag") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "List.entry.item", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "List.entry.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "List.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "List.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "List.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "List.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "List.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "List.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "List.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/list-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "List.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "List.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "List.orderedBy", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/list-order") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "List.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "List.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/list-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "List.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "List.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "List.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Location.address", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Location.alias", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Location.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Location.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Location.endpoint", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "Location.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Location.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Location.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Location.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Location.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Location.managingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Location.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Location.mode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/location-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Location.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Location.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Location.operationalStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0116") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Location.partOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Location.physicalType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/location-physical-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Location.position", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.altitude", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.latitude", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.longitude", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Location.position.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Location.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/location-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Location.telecom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Location.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Location.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ServiceDeliveryLocationRoleType") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Measure.clinicalRecommendationStatement", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.compositeScoring", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/composite-measure-scoring") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "Measure.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Measure.contributor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Contributor", target_profiles: &[] }] },
    ElementMeta { path: "Measure.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Measure.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.disclaimer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Measure.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Measure.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.identifier", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.code", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-population") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.criteria", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.population.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.criteria", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.group.stratifier.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.guidance", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Measure.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Measure.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Measure.improvementNotation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Measure.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Measure.library", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Library"] }] },
    ElementMeta { path: "Measure.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Measure.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.rateAggregation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.rationale", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Measure.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "Measure.riskAdjustment", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.scoring", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-scoring") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.set", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.criteria", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.supplementalData.usage", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-data-usage") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Measure.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.topic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/definition-topic") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Measure.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Measure.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Measure.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "Measure.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.evaluatedResources", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Bundle"] }] },
    ElementMeta { path: "MeasureReport.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.identifier", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.measureScore", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-population") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.count", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.population.patients", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/List"] }] },
    ElementMeta { path: "MeasureReport.group.stratifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.measureScore", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/measure-population") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.count", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.population.patients", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/List"] }] },
    ElementMeta { path: "MeasureReport.group.stratifier.stratum.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.measure", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Measure"] }] },
    ElementMeta { path: "MeasureReport.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.patient", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "MeasureReport.period", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.reportingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MeasureReport.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/measure-report-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MeasureReport.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/measure-report-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Media.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }] },
    ElementMeta { path: "Media.bodySite", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Media.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Media.content", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Media.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Media.device", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceMetric"] }] },
    ElementMeta { path: "Media.duration", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Media.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Media.frames", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Media.height", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Media.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Media.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Media.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Media.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Media.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Media.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Media.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Media.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Media.operator", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Media.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Media.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "Media.subtype", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/digital-media-subtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Media.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Media.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/digital-media-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Media.view", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/media-view") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Media.width", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Medication.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Medication.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Medication.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-form-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Medication.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Medication.image", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Medication.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Ratio", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient.isActive", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Medication.ingredient.item[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "Medication.ingredient.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.isBrand", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Medication.isOverTheCounter", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Medication.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Medication.manufacturer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Medication.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Medication.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch.expirationDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch.lotNumber", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.batch.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.container", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-package-form") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.content", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.content.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.content.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.content.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.content.item[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "Medication.package.content.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Medication.package.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Medication.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Medication.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/medication-admin-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "MedicationAdministration.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }] },
    ElementMeta { path: "MedicationAdministration.device", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "MedicationAdministration.dosage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.dose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.method", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/administration-method-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.rate[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.route", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/route-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.site", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/approach-site-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.dosage.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.effective[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.eventHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "MedicationAdministration.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.medication[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "MedicationAdministration.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.notGiven", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationAdministration"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "MedicationAdministration.performer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.performer.actor", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "MedicationAdministration.performer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.performer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.performer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.performer.onBehalfOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MedicationAdministration.prescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }] },
    ElementMeta { path: "MedicationAdministration.reasonCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/reason-medication-given-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.reasonNotGiven", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/reason-medication-not-given-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.reasonReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "MedicationAdministration.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-admin-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationAdministration.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "MedicationAdministration.supportingInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "MedicationAdministration.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.authorizingPrescription", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }] },
    ElementMeta { path: "MedicationDispense.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/medication-dispense-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "MedicationDispense.daysSupply", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.destination", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "MedicationDispense.detectedIssue", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DetectedIssue"] }] },
    ElementMeta { path: "MedicationDispense.dosageInstruction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Dosage", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.eventHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "MedicationDispense.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.medication[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "MedicationDispense.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.notDone", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.notDoneReason[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DetectedIssue"] }] },
    ElementMeta { path: "MedicationDispense.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.partOf", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "MedicationDispense.performer", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.performer.actor", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "MedicationDispense.performer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.performer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.performer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.performer.onBehalfOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MedicationDispense.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.receiver", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "MedicationDispense.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-dispense-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "MedicationDispense.substitution", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.reason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-SubstanceAdminSubstitutionReason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.responsibleParty", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "MedicationDispense.substitution.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActSubstanceAdminSubstitutionCode") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.substitution.wasSubstituted", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.supportingInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "MedicationDispense.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-ActPharmacySupplyType") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.whenHandedOver", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MedicationDispense.whenPrepared", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "MedicationRequest.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/medication-request-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "MedicationRequest.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "MedicationRequest.detectedIssue", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DetectedIssue"] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.expectedSupplyDuration", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.numberOfRepeatsAllowed", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.performer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dispenseRequest.validityPeriod", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.dosageInstruction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Dosage", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.eventHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "MedicationRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-request-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.medication[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "MedicationRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.priorPrescription", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }] },
    ElementMeta { path: "MedicationRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.reasonCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.reasonReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "MedicationRequest.recorder", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "MedicationRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "MedicationRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MedicationRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "MedicationRequest.substitution", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.substitution.allowed", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.substitution.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.substitution.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.substitution.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.substitution.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-SubstanceAdminSubstitutionReason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationRequest.supportingInformation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "MedicationRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "MedicationStatement.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/medication-statement-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "MedicationStatement.dateAsserted", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.derivedFrom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "MedicationStatement.dosage", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Dosage", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.effective[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.informationSource", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MedicationStatement.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.medication[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }] },
    ElementMeta { path: "MedicationStatement.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationAdministration"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationDispense"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationStatement"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "MedicationStatement.reasonCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.reasonNotTaken", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/reason-medication-not-taken-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.reasonReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "MedicationStatement.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-statement-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "MedicationStatement.taken", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/medication-statement-taken") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MedicationStatement.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse.message", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MessageDefinition"] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.allowedResponse.situation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.base", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MessageDefinition"] }] },
    ElementMeta { path: "MessageDefinition.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/message-significance-category") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.date", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.event", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/message-events") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.max", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.min", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.focus.profile", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "MessageDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.parent", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "MessageDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.purpose", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.replaces", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MessageDefinition"] }] },
    ElementMeta { path: "MessageDefinition.responseRequired", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "MessageDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "MessageHeader.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.endpoint", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.destination.target", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "MessageHeader.enterer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "MessageHeader.event", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/message-events") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.focus", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "MessageHeader.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.reason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/message-reason-encounter") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.receiver", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MessageHeader.response", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.response.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/response-code") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.response.details", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/OperationOutcome"] }] },
    ElementMeta { path: "MessageHeader.response.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.response.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.response.identifier", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.response.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.responsible", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MessageHeader.sender", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "MessageHeader.source", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.contact", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.endpoint", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.software", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.source.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MessageHeader.timestamp", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Meta.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Meta.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Meta.lastUpdated", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Meta.profile", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Meta.security", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-labels") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Meta.tag", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/common-tags") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Meta.versionId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "MetadataResource.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Money.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Money.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Money.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Money.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Money.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Money.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Money.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.date", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.kind", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/namingsystem-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.replacedBy", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/NamingSystem"] }] },
    ElementMeta { path: "NamingSystem.responsible", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/identifier-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.preferred", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/namingsystem-identifier-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.uniqueId.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NamingSystem.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "Narrative.div", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "xhtml", target_profiles: &[] }] },
    ElementMeta { path: "Narrative.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Narrative.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Narrative.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/narrative-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.allergyIntolerance", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"] }] },
    ElementMeta { path: "NutritionOrder.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.dateTime", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.encounter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.additiveProductName", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.additiveType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/entformula-additive") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.rate[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administration.schedule", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.administrationInstruction", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.baseFormulaProductName", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.baseFormulaType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/entformula-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.caloricDensity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.maxVolumeToDeliver", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.enteralFormula.routeofAdministration", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/enteral-route") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.excludeFoodModifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/food-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.foodPreferenceModifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/encounter-diet") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.fluidConsistencyType", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/consistency-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.instruction", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient.modifier", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/nutrient-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.nutrient.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.schedule", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture.foodType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/modified-foodtype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture.modifier", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/texture-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.texture.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.oralDiet.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/diet-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.orderer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "NutritionOrder.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "NutritionOrder.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/nutrition-request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.instruction", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.productName", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.schedule", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.supplement.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/supplement-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "NutritionOrder.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Observation.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/NutritionOrder"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "Observation.bodySite", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.category", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/observation-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.dataAbsentReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/observation-valueabsentreason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.interpretation", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/observation-interpretation") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.component.referenceRange", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "Observation.component.value[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Observation.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Observation.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Observation.dataAbsentReason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/observation-valueabsentreason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.device", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DeviceMetric"] }] },
    ElementMeta { path: "Observation.effective[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Observation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Observation.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Observation.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Observation.interpretation", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/observation-interpretation") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.issued", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Observation.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Observation.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Observation.method", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-methods") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.performer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Observation.referenceRange", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.age", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.appliesTo", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/referencerange-appliesto") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.high", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.low", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Observation.referenceRange.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/referencerange-meaning") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Observation.related", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Observation.related.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.related.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Observation.related.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Observation.related.target", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/QuestionnaireResponse"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Sequence"] }] },
    ElementMeta { path: "Observation.related.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/observation-relationshiptypes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Observation.specimen", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "Observation.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/observation-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Observation.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Observation.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Observation.value[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.base", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/OperationDefinition"] }] },
    ElementMeta { path: "OperationDefinition.code", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.idempotent", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.instance", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.kind", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/operation-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.overload.parameterName", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding.strength", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/binding-strength") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.binding.valueSet[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "OperationDefinition.parameter.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.max", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.min", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.part", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "OperationDefinition.parameter.profile", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "OperationDefinition.parameter.searchType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-param-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/all-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.parameter.use", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/operation-parameter-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.resource", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.system", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.type", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "OperationDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/issue-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.details", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/operation-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.diagnostics", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.expression", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.location", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.issue.severity", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/issue-severity") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "OperationOutcome.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Organization.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Organization.address", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Organization.alias", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.address", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.purpose", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/contactentity-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contact.telecom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Organization.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Organization.endpoint", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "Organization.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Organization.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Organization.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Organization.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Organization.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Organization.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Organization.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Organization.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Organization.partOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Organization.telecom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Organization.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Organization.type", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/organization-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.documentation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.max", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.min", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.profile", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureDefinition"] }] },
    ElementMeta { path: "ParameterDefinition.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/all-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ParameterDefinition.use", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/operation-parameter-use") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.part", min: 0, max: "*", is_summary: true, binding: None, types: &[] },
    ElementMeta { path: "Parameters.parameter.resource", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Parameters.parameter.value[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Patient.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Patient.address", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.breed", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/animal-breeds") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.genderStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/animal-genderstatus") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.animal.species", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/animal-species") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.birthDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication.language", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.communication.preferred", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.address", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.gender", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Patient.contact.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.relationship", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0131") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contact.telecom", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Patient.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Patient.deceased[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Patient.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.gender", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Patient.generalPractitioner", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Patient.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Patient.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Patient.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Patient.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Patient.link", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Patient.link.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.link.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Patient.link.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.link.other", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Patient.link.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/link-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Patient.managingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Patient.maritalStatus", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/marital-status") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Patient.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Patient.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Patient.multipleBirth[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Patient.name", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "Patient.photo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Patient.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Patient.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentNotice.paymentStatus", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payment-status") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "PaymentNotice.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "PaymentNotice.response", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "PaymentNotice.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.statusDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "PaymentNotice.target", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentNotice.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.amount", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.date", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.detail.payee", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentReconciliation.detail.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "PaymentReconciliation.detail.response", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "PaymentReconciliation.detail.submitter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentReconciliation.detail.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/payment-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/forms") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentReconciliation.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/remittance-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.processNote.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/note-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcessRequest"] }] },
    ElementMeta { path: "PaymentReconciliation.requestOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PaymentReconciliation.requestProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "PaymentReconciliation.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PaymentReconciliation.total", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Money", target_profiles: &[] }] },
    ElementMeta { path: "Period.end", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Period.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Period.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Period.start", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Person.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Person.address", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Person.birthDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Person.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Person.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Person.gender", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Person.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Person.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Person.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Person.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Person.link", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Person.link.assurance", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/identity-assuranceLevel") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Person.link.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Person.link.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Person.link.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Person.link.target", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Person"] }] },
    ElementMeta { path: "Person.managingOrganization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Person.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Person.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Person.name", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "Person.photo", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Person.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Person.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.action", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "PlanDefinition.action.cardinalityBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-cardinality-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.code", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.kind", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-condition-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.language", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.condition.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "PlanDefinition.action.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.documentation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.language", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.dynamicValue.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.goalId", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.groupingBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-grouping-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.input", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.label", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.output", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant.role", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/action-participant-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.participant.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-participant-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.precheckBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-precheck-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.reason", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.actionId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.offset[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.relatedAction.relationship", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-relationship-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.requiredBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-required-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.selectionBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-selection-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.textEquivalent", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.title", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.transform", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/StructureMap"] }] },
    ElementMeta { path: "PlanDefinition.action.triggerDefinition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "TriggerDefinition", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.action.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.contributor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Contributor", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.addresses", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.category", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/goal-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.description", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.documentation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.priority", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/goal-priority") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.start", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/goal-start-event") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.detail[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.due", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.measure", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/observation-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.goal.target.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.library", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Library"] }] },
    ElementMeta { path: "PlanDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.topic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/definition-topic") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/plan-definition-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "PlanDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.address", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.birthDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.communication", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.gender", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.name", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.photo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.code", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v2-2.7-0360") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.issuer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Practitioner.qualification.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.qualification.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Practitioner.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availabilityExceptions", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.allDay", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.availableEndTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "time", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.availableStartTime", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "time", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.daysOfWeek", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/days-of-week") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.availableTime.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/practitioner-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.endpoint", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Endpoint"] }] },
    ElementMeta { path: "PractitionerRole.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.healthcareService", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }] },
    ElementMeta { path: "PractitionerRole.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.location", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "PractitionerRole.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable.description", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable.during", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.notAvailable.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.organization", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "PractitionerRole.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.practitioner", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "PractitionerRole.specialty", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "PractitionerRole.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "Procedure.bodySite", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.complication", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/condition-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.complicationDetail", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "Procedure.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Procedure.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }] },
    ElementMeta { path: "Procedure.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.focalDevice", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.focalDevice.action", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/device-action") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.focalDevice.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.focalDevice.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.focalDevice.manipulated", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Procedure.focalDevice.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.followUp", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-followup") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.location", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Procedure.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.notDone", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.notDoneReason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-not-performed-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.outcome", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/MedicationAdministration"] }] },
    ElementMeta { path: "Procedure.performed[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.performer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.performer.actor", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Procedure.performer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.performer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.performer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.performer.onBehalfOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Procedure.performer.role", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/performer-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "Procedure.report", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/DiagnosticReport"] }] },
    ElementMeta { path: "Procedure.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/event-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "Procedure.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.usedCode", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/device-kind") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Procedure.usedReference", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "ProcedureRequest.asNeeded[x]", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/medication-as-needed-reason") }), types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcedureRequest.bodySite", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "ProcedureRequest.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "ProcedureRequest.doNotPerform", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.performer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }] },
    ElementMeta { path: "ProcedureRequest.performerType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/participant-role") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/procedure-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "ProcedureRequest.relevantHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "ProcedureRequest.replaces", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcedureRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcedureRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcedureRequest.requisition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.specimen", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "ProcedureRequest.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcedureRequest.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "ProcedureRequest.supportingInfo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcedureRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.action", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/actionlist") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.exclude", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.include", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.item.sequenceLinkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.nullify", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcessRequest.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.provider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ProcessRequest.reference", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcessRequest.response", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcessRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcessRequest.target", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcessRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.communicationRequest", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CommunicationRequest"] }] },
    ElementMeta { path: "ProcessResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.created", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.disposition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.error", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/adjudication-error") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.form", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/forms") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.organization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcessResponse.outcome", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/process-outcome") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.processNote.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/note-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.request", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ProcessResponse.requestOrganization", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ProcessResponse.requestProvider", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ProcessResponse.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ProcessResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.activity", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/provenance-activity-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.onBehalfOf[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Provenance.agent.relatedAgentType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v3-RoleLinkType") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.role", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/security-role-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.agent.who[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Provenance.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity.agent", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "Provenance.entity.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity.role", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/provenance-entity-role") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.entity.what[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }, TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.location", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Provenance.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.policy", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.reason", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/v3-PurposeOfUse") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.recorded", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.signature", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Signature", target_profiles: &[] }] },
    ElementMeta { path: "Provenance.target", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Provenance.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.comparator", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quantity-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.unit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Quantity.value", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-questions") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.code", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-questions") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.answer[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-answers") }), types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.hasAnswer", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.enableWhen.question", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.initial[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-answers") }), types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Questionnaire.item.item", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "Questionnaire.item.linkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.maxLength", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.option", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.option.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.option.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.option.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.option.value[x]", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-answers") }), types: &[TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.options", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ValueSet"] }] },
    ElementMeta { path: "Questionnaire.item.prefix", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.readOnly", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.repeats", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.required", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.text", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.item.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/item-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.subjectType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "Questionnaire.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.author", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "QuestionnaireResponse.authored", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }] },
    ElementMeta { path: "QuestionnaireResponse.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "QuestionnaireResponse.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.answer", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.answer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.answer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.answer.item", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "QuestionnaireResponse.item.answer.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.answer.value[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-answers") }), types: &[TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "QuestionnaireResponse.item.definition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.item", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "QuestionnaireResponse.item.linkId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.item.subject", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "QuestionnaireResponse.item.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.parent", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Procedure"] }] },
    ElementMeta { path: "QuestionnaireResponse.questionnaire", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Questionnaire"] }] },
    ElementMeta { path: "QuestionnaireResponse.source", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "QuestionnaireResponse.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/questionnaire-answers-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "QuestionnaireResponse.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "QuestionnaireResponse.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Range.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Range.high", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Range.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Range.low", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Ratio.denominator", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Ratio.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Ratio.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Ratio.numerator", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Reference.display", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Reference.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Reference.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Reference.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Reference.reference", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CarePlan"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }] },
    ElementMeta { path: "ReferralRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "ReferralRequest.definition", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "ReferralRequest.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.reasonCode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/clinical-findings") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.reasonReference", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "ReferralRequest.recipient", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }] },
    ElementMeta { path: "ReferralRequest.relevantHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "ReferralRequest.replaces", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ReferralRequest"] }] },
    ElementMeta { path: "ReferralRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "ReferralRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ReferralRequest.serviceRequested", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.specialty", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/practitioner-specialty") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "ReferralRequest.supportingInfo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "ReferralRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ReferralRequest.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/referral-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.citation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.display", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.document", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.resource", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RelatedArtifact.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/related-artifact-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RelatedArtifact.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.address", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Address", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.birthDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.gender", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/administrative-gender") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.name", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "HumanName", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.patient", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "RelatedPerson.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.photo", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Attachment", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.relationship", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/relatedperson-relationshiptype") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.telecom", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "RelatedPerson.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.action", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "RequestGroup.action.cardinalityBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-cardinality-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.code", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.kind", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-condition-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.language", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.condition.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.documentation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.groupingBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-grouping-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.label", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Person"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "RequestGroup.action.precheckBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-precheck-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.actionId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.offset[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.relatedAction.relationship", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-relationship-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.requiredBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-required-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.resource", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RequestGroup.action.selectionBehavior", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/action-selection-behavior") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.textEquivalent", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.timing[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.title", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.action.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/action-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.author", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "RequestGroup.authoredOn", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.basedOn", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RequestGroup.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.context", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "RequestGroup.definition", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RequestGroup.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.reason[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RequestGroup.replaces", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RequestGroup.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RequestGroup.subject", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "RequestGroup.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.code", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.arm.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.enrollment", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "ResearchStudy.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.focus", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.keyword", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ResearchStudy"] }] },
    ElementMeta { path: "ResearchStudy.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.principalInvestigator", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "ResearchStudy.protocol", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PlanDefinition"] }] },
    ElementMeta { path: "ResearchStudy.reasonStopped", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.site", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "ResearchStudy.sponsor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "ResearchStudy.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/research-study-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ResearchStudy.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.actualArm", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.assignedArm", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.consent", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Consent"] }] },
    ElementMeta { path: "ResearchSubject.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.individual", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "ResearchSubject.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/research-subject-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ResearchSubject.study", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ResearchStudy"] }] },
    ElementMeta { path: "ResearchSubject.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Resource.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Resource.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Resource.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Resource.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.basedOn", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RiskAssessment.basis", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RiskAssessment.code", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.condition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "RiskAssessment.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "RiskAssessment.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.method", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.mitigation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.parent", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RiskAssessment.performer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "RiskAssessment.prediction", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.outcome", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.probability[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.qualitativeRisk", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/risk-probability") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.rationale", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.relativeRisk", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.prediction.when[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.reason[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "RiskAssessment.status", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/observation-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "RiskAssessment.subject", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }] },
    ElementMeta { path: "RiskAssessment.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.data", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.dimensions", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.factor", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.lowerLimit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.origin", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.period", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "SampledData.upperLimit", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.active", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.actor", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/PractitionerRole"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/HealthcareService"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "Schedule.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.planningHorizon", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.serviceCategory", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.serviceType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.specialty", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Schedule.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.base", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.chain", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.code", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.comparator", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-comparator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.component", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.component.definition", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/SearchParameter"] }] },
    ElementMeta { path: "SearchParameter.component.expression", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.component.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.component.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.component.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.derivedFrom", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.description", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.modifier", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-modifier-code") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.target", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/resource-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-param-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.xpath", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SearchParameter.xpathUsage", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/search-xpath-usage") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.coordinateSystem", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.device", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "Sequence.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.observedSeq", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.patient", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "Sequence.performer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Sequence.pointer", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Sequence"] }] },
    ElementMeta { path: "Sequence.quality", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.end", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.fScore", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.gtFP", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.method", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/sequence-quality-method") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.precision", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.queryFP", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.queryTP", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.recall", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.score", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.standardSequence", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/sequence-quality-standardSequence") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.start", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.truthFN", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.truthTP", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quality.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/quality-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.quantity", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.readCoverage", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.chromosome", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/chromosome-human") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.genomeBuild", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.referenceSeqId", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/sequence-referenceSeq") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.referenceSeqPointer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Sequence"] }] },
    ElementMeta { path: "Sequence.referenceSeq.referenceSeqString", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.strand", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.windowEnd", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.referenceSeq.windowStart", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.datasetId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.readsetId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/repository-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.repository.variantsetId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.specimen", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "Sequence.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/sequence-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.cigar", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.end", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.observedAllele", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.referenceAllele", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.start", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Sequence.variant.variantPointer", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Observation"] }] },
    ElementMeta { path: "ServiceDefinition.approvalDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.contributor", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Contributor", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.dataRequirement", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.effectivePeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.lastReviewDate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.operationDefinition", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/OperationDefinition"] }] },
    ElementMeta { path: "ServiceDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.relatedArtifact", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "RelatedArtifact", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.topic", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/definition-topic") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.trigger", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "TriggerDefinition", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.usage", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ServiceDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Signature.blob", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }] },
    ElementMeta { path: "Signature.contentType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://www.rfc-editor.org/bcp/bcp13.txt") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Signature.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Signature.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Signature.onBehalfOf[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Signature.type", min: 1, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/signature-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Signature.when", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Signature.who[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Slot.appointmentType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0276") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Slot.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Slot.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Slot.end", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Slot.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Slot.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Slot.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Slot.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Slot.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Slot.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Slot.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Slot.overbooked", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "Slot.schedule", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Schedule"] }] },
    ElementMeta { path: "Slot.serviceCategory", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Slot.serviceType", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/service-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Slot.specialty", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/c80-practice-codes") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Slot.start", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Slot.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/slotstatus") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Slot.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.accessionIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.bodySite", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/body-site") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.collected[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.collector", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "Specimen.collection.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.method", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/specimen-collection-method") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.collection.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.additive[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0371") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Specimen.container.capacity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.specimenQuantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.container.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/specimen-container-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.parent", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Specimen"] }] },
    ElementMeta { path: "Specimen.processing", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.additive", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Specimen.processing.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.procedure", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/specimen-processing-procedure") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.processing.time[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.receivedTime", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.request", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ProcedureRequest"] }] },
    ElementMeta { path: "Specimen.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/specimen-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.subject", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Specimen.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Specimen.type", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/v2-0487") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.abstract", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.baseDefinition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.context", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.contextInvariant", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.contextType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/extension-context") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.derivation", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/type-derivation-rule") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.differential", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.differential.element", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ElementDefinition", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.differential.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.differential.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.differential.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.fhirVersion", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.keyword", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/profile-code") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.kind", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/structure-definition-kind") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.comment", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.identity", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.mapping.uri", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.snapshot", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.snapshot.element", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "ElementDefinition", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.snapshot.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.snapshot.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.snapshot.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/defined-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "StructureDefinition.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.documentation", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.extends", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-input-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.input.type", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.dependent.variable", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.rule", min: 0, max: "*", is_summary: true, binding: None, types: &[] },
    ElementMeta { path: "StructureMap.group.rule.source", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.check", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.condition", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.context", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.defaultValue[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.element", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.listMode", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-source-list-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.max", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.min", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.type", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.source.variable", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.contextType", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-context-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.element", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.listMode", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-target-list-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.listRuleId", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.parameter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.parameter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.parameter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.parameter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.parameter.value[x]", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.transform", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-transform") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.rule.target.variable", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.group.typeMode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-group-type-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.import", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.alias", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.documentation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.mode", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/map-model-mode") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.structure.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "StructureMap.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.endpoint", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.header", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.payload", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.channel.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/subscription-channel-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactPoint", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.criteria", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.end", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "instant", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.error", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.reason", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/subscription-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.tag", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/subscription-tag") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "Subscription.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Substance.category", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/substance-category") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Substance.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/substance-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Substance.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Substance.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Substance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Substance.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Substance.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient.quantity", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Ratio", target_profiles: &[] }] },
    ElementMeta { path: "Substance.ingredient.substance[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/substance-code") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }] },
    ElementMeta { path: "Substance.instance", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.expiry", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.instance.quantity", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "Substance.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Substance.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Substance.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Substance.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/substance-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Substance.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/SupplyRequest"] }] },
    ElementMeta { path: "SupplyDelivery.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.destination", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "SupplyDelivery.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.identifier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/SupplyDelivery"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Contract"] }] },
    ElementMeta { path: "SupplyDelivery.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "SupplyDelivery.receiver", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "SupplyDelivery.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/supplydelivery-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem.item[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/supply-item") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.suppliedItem.quantity", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.supplier", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "SupplyDelivery.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "SupplyDelivery.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/supplydelivery-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.authoredOn", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.category", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/supplyrequest-kind") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.deliverFrom", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }] },
    ElementMeta { path: "SupplyRequest.deliverTo", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Location"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "SupplyRequest.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.occurrence[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.orderedItem", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.orderedItem.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.orderedItem.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.orderedItem.item[x]", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/supply-item") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Medication"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Substance"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "SupplyRequest.orderedItem.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.orderedItem.quantity", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.priority", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.reason[x]", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/supplyrequest-reason") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "SupplyRequest.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }] },
    ElementMeta { path: "SupplyRequest.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.requester.onBehalfOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "SupplyRequest.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/supplyrequest-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "SupplyRequest.supplier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "SupplyRequest.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "Task.authoredOn", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Task.basedOn", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Task.businessStatus", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "Task.context", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"] }] },
    ElementMeta { path: "Task.definition[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/ActivityDefinition"] }] },
    ElementMeta { path: "Task.description", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Task.executionPeriod", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Task.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.focus", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Task.for", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "Task.groupIdentifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Task.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "Task.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "Task.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "Task.input", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Task.input.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.input.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Task.input.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.input.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.input.value[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Task.intent", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-intent") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Task.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Task.lastModified", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Task.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Task.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "Task.output", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Task.output.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.output.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Task.output.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.output.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.output.value[x]", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "base64Binary", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "id", target_profiles: &[] }, TypeRef { code: "instant", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "markdown", target_profiles: &[] }, TypeRef { code: "oid", target_profiles: &[] }, TypeRef { code: "positiveInt", target_profiles: &[] }, TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "time", target_profiles: &[] }, TypeRef { code: "unsignedInt", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "Address", target_profiles: &[] }, TypeRef { code: "Age", target_profiles: &[] }, TypeRef { code: "Annotation", target_profiles: &[] }, TypeRef { code: "Attachment", target_profiles: &[] }, TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Coding", target_profiles: &[] }, TypeRef { code: "ContactPoint", target_profiles: &[] }, TypeRef { code: "Count", target_profiles: &[] }, TypeRef { code: "Distance", target_profiles: &[] }, TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "HumanName", target_profiles: &[] }, TypeRef { code: "Identifier", target_profiles: &[] }, TypeRef { code: "Money", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Ratio", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &[] }, TypeRef { code: "SampledData", target_profiles: &[] }, TypeRef { code: "Signature", target_profiles: &[] }, TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "Task.owner", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Task.partOf", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Task"] }] },
    ElementMeta { path: "Task.performerType", min: 0, max: "*", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/task-performer-type") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.priority", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/request-priority") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Task.reason", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.relevantHistory", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Provenance"] }] },
    ElementMeta { path: "Task.requester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Task.requester.agent", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Device"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }] },
    ElementMeta { path: "Task.requester.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.requester.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Task.requester.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.requester.onBehalfOf", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Task.restriction", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "Task.restriction.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.restriction.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Task.restriction.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Task.restriction.period", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Task.restriction.recipient", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/RelatedPerson"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Group"] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Organization"] }] },
    ElementMeta { path: "Task.restriction.repetitions", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "positiveInt", target_profiles: &[] }] },
    ElementMeta { path: "Task.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/task-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Task.statusReason", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: None }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Task.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.issued", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.type", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/report-participant-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.participant.uri", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.result", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/report-result-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.score", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.detail", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.message", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.assert.result", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/report-action-result-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.detail", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.message", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.action.operation.result", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/report-action-result-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.setup.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/report-status-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.action.operation", min: 1, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestReport.teardown.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.teardown.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.action.assert", min: 0, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestReport.test.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.action.operation", min: 0, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestReport.test.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.test.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.testScript", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/TestScript"] }] },
    ElementMeta { path: "TestReport.tester", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestReport.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination.index", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.destination.profile", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/testscript-profile-destination-types") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.autocreate", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.autodelete", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.fixture.resource", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "TestScript.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.identifier", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.capabilities", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/CapabilityStatement"] }] },
    ElementMeta { path: "TestScript.metadata.capability.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.destination", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.link", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.origin", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.required", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.capability.validated", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.link.url", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.metadata.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.name", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin.index", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.origin.profile", min: 1, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/testscript-profile-origin-types") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.profile", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "TestScript.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.param.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.rule.resource", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "TestScript.ruleset", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.resource", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Resource"] }] },
    ElementMeta { path: "TestScript.ruleset.rule", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.param.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.ruleset.rule.ruleId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.compareToSourceExpression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.compareToSourceId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.compareToSourcePath", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.contentType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/content-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.direction", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/assert-direction-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.headerField", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.label", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.minimumId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.navigationLinks", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.operator", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/assert-operator-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.requestMethod", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/http-operations") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.requestURL", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.resource", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/defined-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.response", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/assert-response-code-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.responseCode", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.param.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.rule.ruleId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.param.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rule.ruleId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.ruleset.rulesetId", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.sourceId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.validateProfileId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.assert.warningOnly", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.accept", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/content-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.contentType", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/content-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.destination", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.encodeRequestUrl", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.label", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.origin", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.params", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader.field", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestHeader.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.requestId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.resource", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/defined-types") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.responseId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.sourceId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.targetId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.type", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/testscript-operation-codes") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.action.operation.url", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.setup.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.action.operation", min: 1, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestScript.teardown.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.teardown.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.action", min: 1, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.action.assert", min: 0, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestScript.test.action.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.action.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.action.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.action.operation", min: 0, max: "1", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "TestScript.test.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.test.name", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.url", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.defaultValue", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.expression", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.headerField", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.hint", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.path", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.variable.sourceId", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "TestScript.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Timing.code", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Preferred, value_set: Some("http://hl7.org/fhir/ValueSet/timing-abbreviation") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "Timing.event", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "Timing.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Timing.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Element", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.bounds[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Duration", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }, TypeRef { code: "Period", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.count", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.countMax", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.dayOfWeek", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/days-of-week") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.duration", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.durationMax", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.durationUnit", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/units-of-time") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.frequency", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.frequencyMax", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.offset", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "unsignedInt", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.period", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.periodMax", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.periodUnit", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/units-of-time") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.timeOfDay", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "time", target_profiles: &[] }] },
    ElementMeta { path: "Timing.repeat.when", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/event-timing") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.eventData", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "DataRequirement", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.eventName", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.eventTiming[x]", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Timing", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Schedule"] }, TypeRef { code: "date", target_profiles: &[] }, TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "TriggerDefinition.type", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/trigger-type") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "UsageContext.code", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/usage-context-type") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "UsageContext.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "UsageContext.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "UsageContext.value[x]", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/use-context") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Quantity", target_profiles: &[] }, TypeRef { code: "Range", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.exclude", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ValueSet.compose.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.inactive", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include", min: 1, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.code", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.use", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/designation-use") }), types: &[TypeRef { code: "Coding", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.designation.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.concept.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.op", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/filter-operator") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.property", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.filter.value", min: 1, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.system", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.valueSet", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.include.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.lockedDate", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "date", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.compose.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.contact", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "ContactDetail", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.copyright", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.date", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.description", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.abstract", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.code", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.contains", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ValueSet.expansion.contains.designation", min: 0, max: "*", is_summary: false, binding: None, types: &[] },
    ElementMeta { path: "ValueSet.expansion.contains.display", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.inactive", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.system", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.contains.version", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.identifier", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.offset", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter.name", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.parameter.value[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }, TypeRef { code: "boolean", target_profiles: &[] }, TypeRef { code: "integer", target_profiles: &[] }, TypeRef { code: "decimal", target_profiles: &[] }, TypeRef { code: "uri", target_profiles: &[] }, TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.timestamp", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.expansion.total", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.experimental", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.extensible", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.identifier", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.immutable", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "boolean", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.jurisdiction", min: 0, max: "*", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/jurisdiction") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.name", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.publisher", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.purpose", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "markdown", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.status", min: 1, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/publication-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.title", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.url", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.useContext", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "UsageContext", target_profiles: &[] }] },
    ElementMeta { path: "ValueSet.version", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.contained", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Resource", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dateWritten", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "dateTime", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "BackboneElement", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.add", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.axis", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "integer", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.backCurve", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.base", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/vision-base-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.brand", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.color", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.cylinder", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.diameter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.duration", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Quantity", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.eye", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/vision-eye-codes") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.modifierExtension", min: 0, max: "*", is_summary: true, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.note", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Annotation", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.power", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.prism", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.product", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Example, value_set: Some("http://hl7.org/fhir/ValueSet/vision-product") }), types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.dispense.sphere", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "decimal", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.encounter", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Encounter"] }] },
    ElementMeta { path: "VisionPrescription.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.id", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "id", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.identifier", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Identifier", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.implicitRules", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "uri", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.language", min: 0, max: "1", is_summary: false, binding: Some(BindingMeta { strength: BindingStrength::Extensible, value_set: Some("http://hl7.org/fhir/ValueSet/languages") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.meta", min: 0, max: "1", is_summary: true, binding: None, types: &[TypeRef { code: "Meta", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.modifierExtension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.patient", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Patient"] }] },
    ElementMeta { path: "VisionPrescription.prescriber", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Practitioner"] }] },
    ElementMeta { path: "VisionPrescription.reason[x]", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "CodeableConcept", target_profiles: &[] }, TypeRef { code: "Reference", target_profiles: &["http://hl7.org/fhir/StructureDefinition/Condition"] }] },
    ElementMeta { path: "VisionPrescription.status", min: 0, max: "1", is_summary: true, binding: Some(BindingMeta { strength: BindingStrength::Required, value_set: Some("http://hl7.org/fhir/ValueSet/fm-status") }), types: &[TypeRef { code: "code", target_profiles: &[] }] },
    ElementMeta { path: "VisionPrescription.text", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "Narrative", target_profiles: &[] }] },
    ElementMeta { path: "base64Binary.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "base64Binary.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "base64Binary.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "boolean.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "boolean.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "boolean.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "code.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "code.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "code.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "date.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "date.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "date.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "dateTime.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "dateTime.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "dateTime.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "decimal.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "decimal.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "decimal.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "id.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "id.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "id.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "instant.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "instant.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "instant.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "integer.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "integer.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "integer.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "markdown.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "markdown.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "markdown.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "oid.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "oid.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "oid.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "positiveInt.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "positiveInt.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "positiveInt.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "string.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "string.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "string.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "time.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "time.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "time.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "unsignedInt.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "unsignedInt.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "unsignedInt.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "uri.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "uri.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "uri.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "uuid.extension", min: 0, max: "*", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "uuid.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "uuid.value", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
    ElementMeta { path: "xhtml.extension", min: 0, max: "0", is_summary: false, binding: None, types: &[TypeRef { code: "Extension", target_profiles: &[] }] },
    ElementMeta { path: "xhtml.id", min: 0, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "string", target_profiles: &[] }] },
    ElementMeta { path: "xhtml.value", min: 1, max: "1", is_summary: false, binding: None, types: &[TypeRef { code: "", target_profiles: &[] }] },
];