schemas 0.4.0

A Rust library for working with Schema.org data
Documentation
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
/// This enum contains all the types that can be used in a pattern.
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub enum Types {
    #[cfg(feature = "PublicToilet")] PublicToilet(PublicToilet),
    #[cfg(feature = "MedicalAudienceType")] MedicalAudienceType(MedicalAudienceType),
    #[cfg(feature = "GeoShape")] GeoShape(GeoShape),
    #[cfg(feature = "Diet")] Diet(Diet),
    #[cfg(feature = "Permit")] Permit(Permit),
    #[cfg(feature = "FlightReservation")] FlightReservation(FlightReservation),
    #[cfg(feature = "OpeningHoursSpecification")] OpeningHoursSpecification(OpeningHoursSpecification),
    #[cfg(feature = "MedicalWebPage")] MedicalWebPage(MedicalWebPage),
    #[cfg(feature = "ReviewNewsArticle")] ReviewNewsArticle(ReviewNewsArticle),
    #[cfg(feature = "Quantity")] Quantity(Quantity),
    #[cfg(feature = "PhysicalActivity")] PhysicalActivity(PhysicalActivity),
    #[cfg(feature = "ParentAudience")] ParentAudience(ParentAudience),
    #[cfg(feature = "DatedMoneySpecification")] DatedMoneySpecification(DatedMoneySpecification),
    #[cfg(feature = "BefriendAction")] BefriendAction(BefriendAction),
    #[cfg(feature = "Physician")] Physician(Physician),
    #[cfg(feature = "SendAction")] SendAction(SendAction),
    #[cfg(feature = "HyperToc")] HyperToc(HyperToc),
    #[cfg(feature = "MenuSection")] MenuSection(MenuSection),
    #[cfg(feature = "Substance")] Substance(Substance),
    #[cfg(feature = "Ticket")] Ticket(Ticket),
    #[cfg(feature = "PostOffice")] PostOffice(PostOffice),
    #[cfg(feature = "Cemetery")] Cemetery(Cemetery),
    #[cfg(feature = "Waterfall")] Waterfall(Waterfall),
    #[cfg(feature = "Resort")] Resort(Resort),
    #[cfg(feature = "ArtGallery")] ArtGallery(ArtGallery),
    #[cfg(feature = "Muscle")] Muscle(Muscle),
    #[cfg(feature = "PhotographAction")] PhotographAction(PhotographAction),
    #[cfg(feature = "Map")] Map(Map),
    #[cfg(feature = "Order")] Order(Order),
    #[cfg(feature = "PaintAction")] PaintAction(PaintAction),
    #[cfg(feature = "Code")] Code(Code),
    #[cfg(feature = "ResearchProject")] ResearchProject(ResearchProject),
    #[cfg(feature = "EndorsementRating")] EndorsementRating(EndorsementRating),
    #[cfg(feature = "ExerciseGym")] ExerciseGym(ExerciseGym),
    #[cfg(feature = "TouristTrip")] TouristTrip(TouristTrip),
    #[cfg(feature = "NGO")] NGO(NGO),
    #[cfg(feature = "Bacteria")] Bacteria(Bacteria),
    #[cfg(feature = "AcceptAction")] AcceptAction(AcceptAction),
    #[cfg(feature = "ShoeStore")] ShoeStore(ShoeStore),
    #[cfg(feature = "MusicAlbumReleaseType")] MusicAlbumReleaseType(MusicAlbumReleaseType),
    #[cfg(feature = "DrugPregnancyCategory")] DrugPregnancyCategory(DrugPregnancyCategory),
    #[cfg(feature = "SizeSpecification")] SizeSpecification(SizeSpecification),
    #[cfg(feature = "Vessel")] Vessel(Vessel),
    #[cfg(feature = "Drug")] Drug(Drug),
    #[cfg(feature = "Atlas")] Atlas(Atlas),
    #[cfg(feature = "ScreeningEvent")] ScreeningEvent(ScreeningEvent),
    #[cfg(feature = "OrderItem")] OrderItem(OrderItem),
    #[cfg(feature = "Car")] Car(Car),
    #[cfg(feature = "SuspendAction")] SuspendAction(SuspendAction),
    #[cfg(feature = "ListenAction")] ListenAction(ListenAction),
    #[cfg(feature = "Barcode")] Barcode(Barcode),
    #[cfg(feature = "Mass")] Mass(Mass),
    #[cfg(feature = "NonprofitType")] NonprofitType(NonprofitType),
    #[cfg(feature = "SoftwareApplication")] SoftwareApplication(SoftwareApplication),
    #[cfg(feature = "AutoWash")] AutoWash(AutoWash),
    #[cfg(feature = "MathSolver")] MathSolver(MathSolver),
    #[cfg(feature = "DigitalDocument")] DigitalDocument(DigitalDocument),
    #[cfg(feature = "PublicationEvent")] PublicationEvent(PublicationEvent),
    #[cfg(feature = "Country")] Country(Country),
    #[cfg(feature = "TaxiStand")] TaxiStand(TaxiStand),
    #[cfg(feature = "AboutPage")] AboutPage(AboutPage),
    #[cfg(feature = "SeaBodyOfWater")] SeaBodyOfWater(SeaBodyOfWater),
    #[cfg(feature = "MedicalStudyStatus")] MedicalStudyStatus(MedicalStudyStatus),
    #[cfg(feature = "CreativeWorkSeries")] CreativeWorkSeries(CreativeWorkSeries),
    #[cfg(feature = "Researcher")] Researcher(Researcher),
    #[cfg(feature = "ReturnAction")] ReturnAction(ReturnAction),
    #[cfg(feature = "CommunicateAction")] CommunicateAction(CommunicateAction),
    #[cfg(feature = "IceCreamShop")] IceCreamShop(IceCreamShop),
    #[cfg(feature = "FundingAgency")] FundingAgency(FundingAgency),
    #[cfg(feature = "EmployeeRole")] EmployeeRole(EmployeeRole),
    #[cfg(feature = "BankOrCreditUnion")] BankOrCreditUnion(BankOrCreditUnion),
    #[cfg(feature = "TravelAction")] TravelAction(TravelAction),
    #[cfg(feature = "DataType")] DataType(DataType),
    #[cfg(feature = "MedicalConditionStage")] MedicalConditionStage(MedicalConditionStage),
    #[cfg(feature = "ComicSeries")] ComicSeries(ComicSeries),
    #[cfg(feature = "BuddhistTemple")] BuddhistTemple(BuddhistTemple),
    #[cfg(feature = "BookFormatType")] BookFormatType(BookFormatType),
    #[cfg(feature = "Chapter")] Chapter(Chapter),
    #[cfg(feature = "TelevisionStation")] TelevisionStation(TelevisionStation),
    #[cfg(feature = "BoatTrip")] BoatTrip(BoatTrip),
    #[cfg(feature = "HyperTocEntry")] HyperTocEntry(HyperTocEntry),
    #[cfg(feature = "Festival")] Festival(Festival),
    #[cfg(feature = "Intangible")] Intangible(Intangible),
    #[cfg(feature = "RadioEpisode")] RadioEpisode(RadioEpisode),
    #[cfg(feature = "ReactAction")] ReactAction(ReactAction),
    #[cfg(feature = "OrderAction")] OrderAction(OrderAction),
    #[cfg(feature = "PaymentMethod")] PaymentMethod(PaymentMethod),
    #[cfg(feature = "ProductGroup")] ProductGroup(ProductGroup),
    #[cfg(feature = "MediaObject")] MediaObject(MediaObject),
    #[cfg(feature = "AlignmentObject")] AlignmentObject(AlignmentObject),
    #[cfg(feature = "TelevisionChannel")] TelevisionChannel(TelevisionChannel),
    #[cfg(feature = "MedicalRiskScore")] MedicalRiskScore(MedicalRiskScore),
    #[cfg(feature = "ListItem")] ListItem(ListItem),
    #[cfg(feature = "ApplyAction")] ApplyAction(ApplyAction),
    #[cfg(feature = "AdultEntertainment")] AdultEntertainment(AdultEntertainment),
    #[cfg(feature = "OfferForPurchase")] OfferForPurchase(OfferForPurchase),
    #[cfg(feature = "MusicAlbum")] MusicAlbum(MusicAlbum),
    #[cfg(feature = "MedicalEnumeration")] MedicalEnumeration(MedicalEnumeration),
    #[cfg(feature = "MediaGallery")] MediaGallery(MediaGallery),
    #[cfg(feature = "CriticReview")] CriticReview(CriticReview),
    #[cfg(feature = "ContactPoint")] ContactPoint(ContactPoint),
    #[cfg(feature = "PlayAction")] PlayAction(PlayAction),
    #[cfg(feature = "CollegeOrUniversity")] CollegeOrUniversity(CollegeOrUniversity),
    #[cfg(feature = "RadioClip")] RadioClip(RadioClip),
    #[cfg(feature = "MedicalCause")] MedicalCause(MedicalCause),
    #[cfg(feature = "GameServer")] GameServer(GameServer),
    #[cfg(feature = "PlayGameAction")] PlayGameAction(PlayGameAction),
    #[cfg(feature = "PostalCodeRangeSpecification")] PostalCodeRangeSpecification(PostalCodeRangeSpecification),
    #[cfg(feature = "ReservationStatusType")] ReservationStatusType(ReservationStatusType),
    #[cfg(feature = "ReportedDoseSchedule")] ReportedDoseSchedule(ReportedDoseSchedule),
    #[cfg(feature = "RepaymentSpecification")] RepaymentSpecification(RepaymentSpecification),
    #[cfg(feature = "StadiumOrArena")] StadiumOrArena(StadiumOrArena),
    #[cfg(feature = "Artery")] Artery(Artery),
    #[cfg(feature = "PlanAction")] PlanAction(PlanAction),
    #[cfg(feature = "CatholicChurch")] CatholicChurch(CatholicChurch),
    #[cfg(feature = "Newspaper")] Newspaper(Newspaper),
    #[cfg(feature = "EducationalOccupationalCredential")] EducationalOccupationalCredential(EducationalOccupationalCredential),
    #[cfg(feature = "JobPosting")] JobPosting(JobPosting),
    #[cfg(feature = "MedicalOrganization")] MedicalOrganization(MedicalOrganization),
    #[cfg(feature = "PrependAction")] PrependAction(PrependAction),
    #[cfg(feature = "BedDetails")] BedDetails(BedDetails),
    #[cfg(feature = "RentalCarReservation")] RentalCarReservation(RentalCarReservation),
    #[cfg(feature = "UserDownloads")] UserDownloads(UserDownloads),
    #[cfg(feature = "AutoRepair")] AutoRepair(AutoRepair),
    #[cfg(feature = "LegislationObject")] LegislationObject(LegislationObject),
    #[cfg(feature = "BodyMeasurementTypeEnumeration")] BodyMeasurementTypeEnumeration(BodyMeasurementTypeEnumeration),
    #[cfg(feature = "DeliveryTimeSettings")] DeliveryTimeSettings(DeliveryTimeSettings),
    #[cfg(feature = "ApartmentComplex")] ApartmentComplex(ApartmentComplex),
    #[cfg(feature = "ImageObjectSnapshot")] ImageObjectSnapshot(ImageObjectSnapshot),
    #[cfg(feature = "SuperficialAnatomy")] SuperficialAnatomy(SuperficialAnatomy),
    #[cfg(feature = "MedicalSign")] MedicalSign(MedicalSign),
    #[cfg(feature = "WPFooter")] WPFooter(WPFooter),
    #[cfg(feature = "BusReservation")] BusReservation(BusReservation),
    #[cfg(feature = "EnergyStarEnergyEfficiencyEnumeration")] EnergyStarEnergyEfficiencyEnumeration(EnergyStarEnergyEfficiencyEnumeration),
    #[cfg(feature = "Audiobook")] Audiobook(Audiobook),
    #[cfg(feature = "Mountain")] Mountain(Mountain),
    #[cfg(feature = "Winery")] Winery(Winery),
    #[cfg(feature = "LiquorStore")] LiquorStore(LiquorStore),
    #[cfg(feature = "ReserveAction")] ReserveAction(ReserveAction),
    #[cfg(feature = "AggregateOffer")] AggregateOffer(AggregateOffer),
    #[cfg(feature = "OpinionNewsArticle")] OpinionNewsArticle(OpinionNewsArticle),
    #[cfg(feature = "UpdateAction")] UpdateAction(UpdateAction),
    #[cfg(feature = "Blog")] Blog(Blog),
    #[cfg(feature = "AudioObject")] AudioObject(AudioObject),
    #[cfg(feature = "Statement")] Statement(Statement),
    #[cfg(feature = "UseAction")] UseAction(UseAction),
    #[cfg(feature = "LoanOrCredit")] LoanOrCredit(LoanOrCredit),
    #[cfg(feature = "MedicalSpecialty")] MedicalSpecialty(MedicalSpecialty),
    #[cfg(feature = "ProfessionalService")] ProfessionalService(ProfessionalService),
    #[cfg(feature = "LikeAction")] LikeAction(LikeAction),
    #[cfg(feature = "RealEstateListing")] RealEstateListing(RealEstateListing),
    #[cfg(feature = "EntertainmentBusiness")] EntertainmentBusiness(EntertainmentBusiness),
    #[cfg(feature = "ShareAction")] ShareAction(ShareAction),
    #[cfg(feature = "School")] School(School),
    #[cfg(feature = "BackgroundNewsArticle")] BackgroundNewsArticle(BackgroundNewsArticle),
    #[cfg(feature = "Bakery")] Bakery(Bakery),
    #[cfg(feature = "MobileApplication")] MobileApplication(MobileApplication),
    #[cfg(feature = "MedicalDevice")] MedicalDevice(MedicalDevice),
    #[cfg(feature = "BusTrip")] BusTrip(BusTrip),
    #[cfg(feature = "Collection")] Collection(Collection),
    #[cfg(feature = "MonetaryGrant")] MonetaryGrant(MonetaryGrant),
    #[cfg(feature = "SizeSystemEnumeration")] SizeSystemEnumeration(SizeSystemEnumeration),
    #[cfg(feature = "UserReview")] UserReview(UserReview),
    #[cfg(feature = "PayAction")] PayAction(PayAction),
    #[cfg(feature = "NewsArticle")] NewsArticle(NewsArticle),
    #[cfg(feature = "DigitalPlatformEnumeration")] DigitalPlatformEnumeration(DigitalPlatformEnumeration),
    #[cfg(feature = "Motel")] Motel(Motel),
    #[cfg(feature = "InsuranceAgency")] InsuranceAgency(InsuranceAgency),
    #[cfg(feature = "BedType")] BedType(BedType),
    #[cfg(feature = "PaymentCard")] PaymentCard(PaymentCard),
    #[cfg(feature = "Patient")] Patient(Patient),
    #[cfg(feature = "MortgageLoan")] MortgageLoan(MortgageLoan),
    #[cfg(feature = "MulticellularParasite")] MulticellularParasite(MulticellularParasite),
    #[cfg(feature = "RadioStation")] RadioStation(RadioStation),
    #[cfg(feature = "FAQPage")] FAQPage(FAQPage),
    #[cfg(feature = "Place")] Place(Place),
    #[cfg(feature = "DanceEvent")] DanceEvent(DanceEvent),
    #[cfg(feature = "NightClub")] NightClub(NightClub),
    #[cfg(feature = "HowToSection")] HowToSection(HowToSection),
    #[cfg(feature = "FinancialProduct")] FinancialProduct(FinancialProduct),
    #[cfg(feature = "MerchantReturnEnumeration")] MerchantReturnEnumeration(MerchantReturnEnumeration),
    #[cfg(feature = "EmergencyService")] EmergencyService(EmergencyService),
    #[cfg(feature = "LoseAction")] LoseAction(LoseAction),
    #[cfg(feature = "ConstraintNode")] ConstraintNode(ConstraintNode),
    #[cfg(feature = "Notary")] Notary(Notary),
    #[cfg(feature = "Audience")] Audience(Audience),
    #[cfg(feature = "RiverBodyOfWater")] RiverBodyOfWater(RiverBodyOfWater),
    #[cfg(feature = "QuantitativeValueDistribution")] QuantitativeValueDistribution(QuantitativeValueDistribution),
    #[cfg(feature = "DepartAction")] DepartAction(DepartAction),
    #[cfg(feature = "MobilePhoneStore")] MobilePhoneStore(MobilePhoneStore),
    #[cfg(feature = "AutoPartsStore")] AutoPartsStore(AutoPartsStore),
    #[cfg(feature = "UserPageVisits")] UserPageVisits(UserPageVisits),
    #[cfg(feature = "Sculpture")] Sculpture(Sculpture),
    #[cfg(feature = "Recommendation")] Recommendation(Recommendation),
    #[cfg(feature = "FastFoodRestaurant")] FastFoodRestaurant(FastFoodRestaurant),
    #[cfg(feature = "MiddleSchool")] MiddleSchool(MiddleSchool),
    #[cfg(feature = "GamePlayMode")] GamePlayMode(GamePlayMode),
    #[cfg(feature = "DataFeedItem")] DataFeedItem(DataFeedItem),
    #[cfg(feature = "RecyclingCenter")] RecyclingCenter(RecyclingCenter),
    #[cfg(feature = "Claim")] Claim(Claim),
    #[cfg(feature = "BusinessEvent")] BusinessEvent(BusinessEvent),
    #[cfg(feature = "AskPublicNewsArticle")] AskPublicNewsArticle(AskPublicNewsArticle),
    #[cfg(feature = "HealthTopicContent")] HealthTopicContent(HealthTopicContent),
    #[cfg(feature = "Accommodation")] Accommodation(Accommodation),
    #[cfg(feature = "PetStore")] PetStore(PetStore),
    #[cfg(feature = "InstallAction")] InstallAction(InstallAction),
    #[cfg(feature = "BlogPosting")] BlogPosting(BlogPosting),
    #[cfg(feature = "Manuscript")] Manuscript(Manuscript),
    #[cfg(feature = "TherapeuticProcedure")] TherapeuticProcedure(TherapeuticProcedure),
    #[cfg(feature = "Virus")] Virus(Virus),
    #[cfg(feature = "Protozoa")] Protozoa(Protozoa),
    #[cfg(feature = "HousePainter")] HousePainter(HousePainter),
    #[cfg(feature = "WebPage")] WebPage(WebPage),
    #[cfg(feature = "InteractAction")] InteractAction(InteractAction),
    #[cfg(feature = "LeaveAction")] LeaveAction(LeaveAction),
    #[cfg(feature = "BreadcrumbList")] BreadcrumbList(BreadcrumbList),
    #[cfg(feature = "CheckInAction")] CheckInAction(CheckInAction),
    #[cfg(feature = "BroadcastChannel")] BroadcastChannel(BroadcastChannel),
    #[cfg(feature = "CreativeWork")] CreativeWork(CreativeWork),
    #[cfg(feature = "Grant")] Grant(Grant),
    #[cfg(feature = "ProfilePage")] ProfilePage(ProfilePage),
    #[cfg(feature = "LodgingBusiness")] LodgingBusiness(LodgingBusiness),
    #[cfg(feature = "DrugCost")] DrugCost(DrugCost),
    #[cfg(feature = "FloorPlan")] FloorPlan(FloorPlan),
    #[cfg(feature = "TattooParlor")] TattooParlor(TattooParlor),
    #[cfg(feature = "CancelAction")] CancelAction(CancelAction),
    #[cfg(feature = "EmployerReview")] EmployerReview(EmployerReview),
    #[cfg(feature = "MoneyTransfer")] MoneyTransfer(MoneyTransfer),
    #[cfg(feature = "Flight")] Flight(Flight),
    #[cfg(feature = "DeliveryMethod")] DeliveryMethod(DeliveryMethod),
    #[cfg(feature = "BusinessFunction")] BusinessFunction(BusinessFunction),
    #[cfg(feature = "Duration")] Duration(Duration),
    #[cfg(feature = "MedicalGuidelineContraindication")] MedicalGuidelineContraindication(MedicalGuidelineContraindication),
    #[cfg(feature = "SurgicalProcedure")] SurgicalProcedure(SurgicalProcedure),
    #[cfg(feature = "WebApplication")] WebApplication(WebApplication),
    #[cfg(feature = "ReceiveAction")] ReceiveAction(ReceiveAction),
    #[cfg(feature = "Landform")] Landform(Landform),
    #[cfg(feature = "Restaurant")] Restaurant(Restaurant),
    #[cfg(feature = "OfferItemCondition")] OfferItemCondition(OfferItemCondition),
    #[cfg(feature = "PhysicalTherapy")] PhysicalTherapy(PhysicalTherapy),
    #[cfg(feature = "DiagnosticProcedure")] DiagnosticProcedure(DiagnosticProcedure),
    #[cfg(feature = "BroadcastFrequencySpecification")] BroadcastFrequencySpecification(BroadcastFrequencySpecification),
    #[cfg(feature = "HealthPlanFormulary")] HealthPlanFormulary(HealthPlanFormulary),
    #[cfg(feature = "MovieSeries")] MovieSeries(MovieSeries),
    #[cfg(feature = "LibrarySystem")] LibrarySystem(LibrarySystem),
    #[cfg(feature = "WearableSizeSystemEnumeration")] WearableSizeSystemEnumeration(WearableSizeSystemEnumeration),
    #[cfg(feature = "Joint")] Joint(Joint),
    #[cfg(feature = "OccupationalExperienceRequirements")] OccupationalExperienceRequirements(OccupationalExperienceRequirements),
    #[cfg(feature = "DefinedRegion")] DefinedRegion(DefinedRegion),
    #[cfg(feature = "AutoRental")] AutoRental(AutoRental),
    #[cfg(feature = "ShippingDeliveryTime")] ShippingDeliveryTime(ShippingDeliveryTime),
    #[cfg(feature = "MerchantReturnPolicy")] MerchantReturnPolicy(MerchantReturnPolicy),
    #[cfg(feature = "ResumeAction")] ResumeAction(ResumeAction),
    #[cfg(feature = "LakeBodyOfWater")] LakeBodyOfWater(LakeBodyOfWater),
    #[cfg(feature = "BrainStructure")] BrainStructure(BrainStructure),
    #[cfg(feature = "LifestyleModification")] LifestyleModification(LifestyleModification),
    #[cfg(feature = "ExchangeRateSpecification")] ExchangeRateSpecification(ExchangeRateSpecification),
    #[cfg(feature = "Drawing")] Drawing(Drawing),
    #[cfg(feature = "ResearchOrganization")] ResearchOrganization(ResearchOrganization),
    #[cfg(feature = "DataCatalog")] DataCatalog(DataCatalog),
    #[cfg(feature = "Clip")] Clip(Clip),
    #[cfg(feature = "StatisticalVariable")] StatisticalVariable(StatisticalVariable),
    #[cfg(feature = "Taxon")] Taxon(Taxon),
    #[cfg(feature = "ClaimReview")] ClaimReview(ClaimReview),
    #[cfg(feature = "WholesaleStore")] WholesaleStore(WholesaleStore),
    #[cfg(feature = "PeopleAudience")] PeopleAudience(PeopleAudience),
    #[cfg(feature = "FundingScheme")] FundingScheme(FundingScheme),
    #[cfg(feature = "LendAction")] LendAction(LendAction),
    #[cfg(feature = "UserLikes")] UserLikes(UserLikes),
    #[cfg(feature = "MusicReleaseFormatType")] MusicReleaseFormatType(MusicReleaseFormatType),
    #[cfg(feature = "Vein")] Vein(Vein),
    #[cfg(feature = "AggregateRating")] AggregateRating(AggregateRating),
    #[cfg(feature = "CompleteDataFeed")] CompleteDataFeed(CompleteDataFeed),
    #[cfg(feature = "LegalValueLevel")] LegalValueLevel(LegalValueLevel),
    #[cfg(feature = "SteeringPositionValue")] SteeringPositionValue(SteeringPositionValue),
    #[cfg(feature = "ItemListOrderType")] ItemListOrderType(ItemListOrderType),
    #[cfg(feature = "ComedyClub")] ComedyClub(ComedyClub),
    #[cfg(feature = "DepartmentStore")] DepartmentStore(DepartmentStore),
    #[cfg(feature = "AnimalShelter")] AnimalShelter(AnimalShelter),
    #[cfg(feature = "WearableMeasurementTypeEnumeration")] WearableMeasurementTypeEnumeration(WearableMeasurementTypeEnumeration),
    #[cfg(feature = "BroadcastEvent")] BroadcastEvent(BroadcastEvent),
    #[cfg(feature = "Distance")] Distance(Distance),
    #[cfg(feature = "StructuredValue")] StructuredValue(StructuredValue),
    #[cfg(feature = "NLNonprofitType")] NLNonprofitType(NLNonprofitType),
    #[cfg(feature = "Thing")] Thing(Thing),
    #[cfg(feature = "MedicalTherapy")] MedicalTherapy(MedicalTherapy),
    #[cfg(feature = "ConsumeAction")] ConsumeAction(ConsumeAction),
    #[cfg(feature = "UserComments")] UserComments(UserComments),
    #[cfg(feature = "MedicalClinic")] MedicalClinic(MedicalClinic),
    #[cfg(feature = "Pond")] Pond(Pond),
    #[cfg(feature = "Fungus")] Fungus(Fungus),
    #[cfg(feature = "OnlineBusiness")] OnlineBusiness(OnlineBusiness),
    #[cfg(feature = "OnlineStore")] OnlineStore(OnlineStore),
    #[cfg(feature = "DiagnosticLab")] DiagnosticLab(DiagnosticLab),
    #[cfg(feature = "DriveWheelConfigurationValue")] DriveWheelConfigurationValue(DriveWheelConfigurationValue),
    #[cfg(feature = "BusStation")] BusStation(BusStation),
    #[cfg(feature = "AssessAction")] AssessAction(AssessAction),
    #[cfg(feature = "MusicGroup")] MusicGroup(MusicGroup),
    #[cfg(feature = "MedicalScholarlyArticle")] MedicalScholarlyArticle(MedicalScholarlyArticle),
    #[cfg(feature = "SubscribeAction")] SubscribeAction(SubscribeAction),
    #[cfg(feature = "PaymentStatusType")] PaymentStatusType(PaymentStatusType),
    #[cfg(feature = "FoodEstablishmentReservation")] FoodEstablishmentReservation(FoodEstablishmentReservation),
    #[cfg(feature = "BodyOfWater")] BodyOfWater(BodyOfWater),
    #[cfg(feature = "MusicRelease")] MusicRelease(MusicRelease),
    #[cfg(feature = "MediaSubscription")] MediaSubscription(MediaSubscription),
    #[cfg(feature = "DislikeAction")] DislikeAction(DislikeAction),
    #[cfg(feature = "ReturnLabelSourceEnumeration")] ReturnLabelSourceEnumeration(ReturnLabelSourceEnumeration),
    #[cfg(feature = "CheckOutAction")] CheckOutAction(CheckOutAction),
    #[cfg(feature = "SocialEvent")] SocialEvent(SocialEvent),
    #[cfg(feature = "FindAction")] FindAction(FindAction),
    #[cfg(feature = "Season")] Season(Season),
    #[cfg(feature = "DepositAccount")] DepositAccount(DepositAccount),
    #[cfg(feature = "ReadAction")] ReadAction(ReadAction),
    #[cfg(feature = "Dentist")] Dentist(Dentist),
    #[cfg(feature = "CorrectionComment")] CorrectionComment(CorrectionComment),
    #[cfg(feature = "GameServerStatus")] GameServerStatus(GameServerStatus),
    #[cfg(feature = "BorrowAction")] BorrowAction(BorrowAction),
    #[cfg(feature = "TrainStation")] TrainStation(TrainStation),
    #[cfg(feature = "MedicalDevicePurpose")] MedicalDevicePurpose(MedicalDevicePurpose),
    #[cfg(feature = "CheckAction")] CheckAction(CheckAction),
    #[cfg(feature = "SportsTeam")] SportsTeam(SportsTeam),
    #[cfg(feature = "HairSalon")] HairSalon(HairSalon),
    #[cfg(feature = "GroceryStore")] GroceryStore(GroceryStore),
    #[cfg(feature = "PodcastEpisode")] PodcastEpisode(PodcastEpisode),
    #[cfg(feature = "SpreadsheetDigitalDocument")] SpreadsheetDigitalDocument(SpreadsheetDigitalDocument),
    #[cfg(feature = "ReportageNewsArticle")] ReportageNewsArticle(ReportageNewsArticle),
    #[cfg(feature = "SelfStorage")] SelfStorage(SelfStorage),
    #[cfg(feature = "CreativeWorkSeason")] CreativeWorkSeason(CreativeWorkSeason),
    #[cfg(feature = "MedicalObservationalStudyDesign")] MedicalObservationalStudyDesign(MedicalObservationalStudyDesign),
    #[cfg(feature = "HinduTemple")] HinduTemple(HinduTemple),
    #[cfg(feature = "MonetaryAmount")] MonetaryAmount(MonetaryAmount),
    #[cfg(feature = "MedicalRiskEstimator")] MedicalRiskEstimator(MedicalRiskEstimator),
    #[cfg(feature = "Message")] Message(Message),
    #[cfg(feature = "SportsEvent")] SportsEvent(SportsEvent),
    #[cfg(feature = "PerformanceRole")] PerformanceRole(PerformanceRole),
    #[cfg(feature = "APIReference")] APIReference(APIReference),
    #[cfg(feature = "Electrician")] Electrician(Electrician),
    #[cfg(feature = "LinkRole")] LinkRole(LinkRole),
    #[cfg(feature = "DataFeed")] DataFeed(DataFeed),
    #[cfg(feature = "WorkBasedProgram")] WorkBasedProgram(WorkBasedProgram),
    #[cfg(feature = "SchoolDistrict")] SchoolDistrict(SchoolDistrict),
    #[cfg(feature = "ImageGallery")] ImageGallery(ImageGallery),
    #[cfg(feature = "DeliveryChargeSpecification")] DeliveryChargeSpecification(DeliveryChargeSpecification),
    #[cfg(feature = "SpeakableSpecification")] SpeakableSpecification(SpeakableSpecification),
    #[cfg(feature = "GardenStore")] GardenStore(GardenStore),
    #[cfg(feature = "Service")] Service(Service),
    #[cfg(feature = "CookAction")] CookAction(CookAction),
    #[cfg(feature = "SearchAction")] SearchAction(SearchAction),
    #[cfg(feature = "ShoppingCenter")] ShoppingCenter(ShoppingCenter),
    #[cfg(feature = "CampingPitch")] CampingPitch(CampingPitch),
    #[cfg(feature = "FurnitureStore")] FurnitureStore(FurnitureStore),
    #[cfg(feature = "UserTweets")] UserTweets(UserTweets),
    #[cfg(feature = "Project")] Project(Project),
    #[cfg(feature = "WorkersUnion")] WorkersUnion(WorkersUnion),
    #[cfg(feature = "SaleEvent")] SaleEvent(SaleEvent),
    #[cfg(feature = "Energy")] Energy(Energy),
    #[cfg(feature = "Preschool")] Preschool(Preschool),
    #[cfg(feature = "Continent")] Continent(Continent),
    #[cfg(feature = "ArchiveOrganization")] ArchiveOrganization(ArchiveOrganization),
    #[cfg(feature = "DrugStrength")] DrugStrength(DrugStrength),
    #[cfg(feature = "PerformAction")] PerformAction(PerformAction),
    #[cfg(feature = "ReservationPackage")] ReservationPackage(ReservationPackage),
    #[cfg(feature = "AppendAction")] AppendAction(AppendAction),
    #[cfg(feature = "VideoGameSeries")] VideoGameSeries(VideoGameSeries),
    #[cfg(feature = "QuantitativeValue")] QuantitativeValue(QuantitativeValue),
    #[cfg(feature = "EducationEvent")] EducationEvent(EducationEvent),
    #[cfg(feature = "Observation")] Observation(Observation),
    #[cfg(feature = "MedicalRiskCalculator")] MedicalRiskCalculator(MedicalRiskCalculator),
    #[cfg(feature = "RadioBroadcastService")] RadioBroadcastService(RadioBroadcastService),
    #[cfg(feature = "GovernmentBenefitsType")] GovernmentBenefitsType(GovernmentBenefitsType),
    #[cfg(feature = "MotorizedBicycle")] MotorizedBicycle(MotorizedBicycle),
    #[cfg(feature = "PhysicalActivityCategory")] PhysicalActivityCategory(PhysicalActivityCategory),
    #[cfg(feature = "MedicalTest")] MedicalTest(MedicalTest),
    #[cfg(feature = "ScholarlyArticle")] ScholarlyArticle(ScholarlyArticle),
    #[cfg(feature = "EmailMessage")] EmailMessage(EmailMessage),
    #[cfg(feature = "WearAction")] WearAction(WearAction),
    #[cfg(feature = "BoardingPolicyType")] BoardingPolicyType(BoardingPolicyType),
    #[cfg(feature = "RsvpAction")] RsvpAction(RsvpAction),
    #[cfg(feature = "MeasurementMethodEnum")] MeasurementMethodEnum(MeasurementMethodEnum),
    #[cfg(feature = "FoodEvent")] FoodEvent(FoodEvent),
    #[cfg(feature = "CDCPMDRecord")] CDCPMDRecord(CDCPMDRecord),
    #[cfg(feature = "Residence")] Residence(Residence),
    #[cfg(feature = "WantAction")] WantAction(WantAction),
    #[cfg(feature = "EntryPoint")] EntryPoint(EntryPoint),
    #[cfg(feature = "MedicalIndication")] MedicalIndication(MedicalIndication),
    #[cfg(feature = "GameAvailabilityEnumeration")] GameAvailabilityEnumeration(GameAvailabilityEnumeration),
    #[cfg(feature = "IgnoreAction")] IgnoreAction(IgnoreAction),
    #[cfg(feature = "MedicalAudience")] MedicalAudience(MedicalAudience),
    #[cfg(feature = "LodgingReservation")] LodgingReservation(LodgingReservation),
    #[cfg(feature = "MedicalTrial")] MedicalTrial(MedicalTrial),
    #[cfg(feature = "AutomotiveBusiness")] AutomotiveBusiness(AutomotiveBusiness),
    #[cfg(feature = "TVEpisode")] TVEpisode(TVEpisode),
    #[cfg(feature = "BusinessEntityType")] BusinessEntityType(BusinessEntityType),
    #[cfg(feature = "MovieTheater")] MovieTheater(MovieTheater),
    #[cfg(feature = "GolfCourse")] GolfCourse(GolfCourse),
    #[cfg(feature = "WebSite")] WebSite(WebSite),
    #[cfg(feature = "QuoteAction")] QuoteAction(QuoteAction),
    #[cfg(feature = "HealthPlanCostSharingSpecification")] HealthPlanCostSharingSpecification(HealthPlanCostSharingSpecification),
    #[cfg(feature = "HobbyShop")] HobbyShop(HobbyShop),
    #[cfg(feature = "CurrencyConversionService")] CurrencyConversionService(CurrencyConversionService),
    #[cfg(feature = "Rating")] Rating(Rating),
    #[cfg(feature = "OfficeEquipmentStore")] OfficeEquipmentStore(OfficeEquipmentStore),
    #[cfg(feature = "EnergyConsumptionDetails")] EnergyConsumptionDetails(EnergyConsumptionDetails),
    #[cfg(feature = "WarrantyScope")] WarrantyScope(WarrantyScope),
    #[cfg(feature = "MusicPlaylist")] MusicPlaylist(MusicPlaylist),
    #[cfg(feature = "Florist")] Florist(Florist),
    #[cfg(feature = "ImageObject")] ImageObject(ImageObject),
    #[cfg(feature = "MusicEvent")] MusicEvent(MusicEvent),
    #[cfg(feature = "PreventionIndication")] PreventionIndication(PreventionIndication),
    #[cfg(feature = "DisagreeAction")] DisagreeAction(DisagreeAction),
    #[cfg(feature = "GovernmentService")] GovernmentService(GovernmentService),
    #[cfg(feature = "FireStation")] FireStation(FireStation),
    #[cfg(feature = "Role")] Role(Role),
    #[cfg(feature = "LearningResource")] LearningResource(LearningResource),
    #[cfg(feature = "PropertyValue")] PropertyValue(PropertyValue),
    #[cfg(feature = "TouristAttraction")] TouristAttraction(TouristAttraction),
    #[cfg(feature = "DoseSchedule")] DoseSchedule(DoseSchedule),
    #[cfg(feature = "FoodService")] FoodService(FoodService),
    #[cfg(feature = "ThreeDModel")] ThreeDModel(ThreeDModel),
    #[cfg(feature = "Canal")] Canal(Canal),
    #[cfg(feature = "MovingCompany")] MovingCompany(MovingCompany),
    #[cfg(feature = "SellAction")] SellAction(SellAction),
    #[cfg(feature = "TipAction")] TipAction(TipAction),
    #[cfg(feature = "TVSeries")] TVSeries(TVSeries),
    #[cfg(feature = "BrokerageAccount")] BrokerageAccount(BrokerageAccount),
    #[cfg(feature = "Episode")] Episode(Episode),
    #[cfg(feature = "ToyStore")] ToyStore(ToyStore),
    #[cfg(feature = "DefinedTerm")] DefinedTerm(DefinedTerm),
    #[cfg(feature = "BikeStore")] BikeStore(BikeStore),
    #[cfg(feature = "ChooseAction")] ChooseAction(ChooseAction),
    #[cfg(feature = "Property")] Property(Property),
    #[cfg(feature = "HowToTool")] HowToTool(HowToTool),
    #[cfg(feature = "AutomatedTeller")] AutomatedTeller(AutomatedTeller),
    #[cfg(feature = "Zoo")] Zoo(Zoo),
    #[cfg(feature = "ChemicalSubstance")] ChemicalSubstance(ChemicalSubstance),
    #[cfg(feature = "InteractionCounter")] InteractionCounter(InteractionCounter),
    #[cfg(feature = "CableOrSatelliteService")] CableOrSatelliteService(CableOrSatelliteService),
    #[cfg(feature = "NailSalon")] NailSalon(NailSalon),
    #[cfg(feature = "EventVenue")] EventVenue(EventVenue),
    #[cfg(feature = "ProductCollection")] ProductCollection(ProductCollection),
    #[cfg(feature = "VeterinaryCare")] VeterinaryCare(VeterinaryCare),
    #[cfg(feature = "TaxiService")] TaxiService(TaxiService),
    #[cfg(feature = "ViewAction")] ViewAction(ViewAction),
    #[cfg(feature = "TireShop")] TireShop(TireShop),
    #[cfg(feature = "WebAPI")] WebAPI(WebAPI),
    #[cfg(feature = "RVPark")] RVPark(RVPark),
    #[cfg(feature = "MusicRecording")] MusicRecording(MusicRecording),
    #[cfg(feature = "BookStore")] BookStore(BookStore),
    #[cfg(feature = "OfferCatalog")] OfferCatalog(OfferCatalog),
    #[cfg(feature = "TextObject")] TextObject(TextObject),
    #[cfg(feature = "DigitalDocumentPermissionType")] DigitalDocumentPermissionType(DigitalDocumentPermissionType),
    #[cfg(feature = "BowlingAlley")] BowlingAlley(BowlingAlley),
    #[cfg(feature = "BoatTerminal")] BoatTerminal(BoatTerminal),
    #[cfg(feature = "TVSeason")] TVSeason(TVSeason),
    #[cfg(feature = "AgreeAction")] AgreeAction(AgreeAction),
    #[cfg(feature = "MotorcycleRepair")] MotorcycleRepair(MotorcycleRepair),
    #[cfg(feature = "House")] House(House),
    #[cfg(feature = "BoatReservation")] BoatReservation(BoatReservation),
    #[cfg(feature = "CreateAction")] CreateAction(CreateAction),
    #[cfg(feature = "StatusEnumeration")] StatusEnumeration(StatusEnumeration),
    #[cfg(feature = "SeekToAction")] SeekToAction(SeekToAction),
    #[cfg(feature = "Playground")] Playground(Playground),
    #[cfg(feature = "ParkingFacility")] ParkingFacility(ParkingFacility),
    #[cfg(feature = "LocationFeatureSpecification")] LocationFeatureSpecification(LocationFeatureSpecification),
    #[cfg(feature = "VoteAction")] VoteAction(VoteAction),
    #[cfg(feature = "InformAction")] InformAction(InformAction),
    #[cfg(feature = "Enumeration")] Enumeration(Enumeration),
    #[cfg(feature = "ProductModel")] ProductModel(ProductModel),
    #[cfg(feature = "DeleteAction")] DeleteAction(DeleteAction),
    #[cfg(feature = "WarrantyPromise")] WarrantyPromise(WarrantyPromise),
    #[cfg(feature = "DeactivateAction")] DeactivateAction(DeactivateAction),
    #[cfg(feature = "Menu")] Menu(Menu),
    #[cfg(feature = "MusicAlbumProductionType")] MusicAlbumProductionType(MusicAlbumProductionType),
    #[cfg(feature = "TouristDestination")] TouristDestination(TouristDestination),
    #[cfg(feature = "Thesis")] Thesis(Thesis),
    #[cfg(feature = "MoveAction")] MoveAction(MoveAction),
    #[cfg(feature = "MedicalSignOrSymptom")] MedicalSignOrSymptom(MedicalSignOrSymptom),
    #[cfg(feature = "MonetaryAmountDistribution")] MonetaryAmountDistribution(MonetaryAmountDistribution),
    #[cfg(feature = "EventStatusType")] EventStatusType(EventStatusType),
    #[cfg(feature = "TennisComplex")] TennisComplex(TennisComplex),
    #[cfg(feature = "ArriveAction")] ArriveAction(ArriveAction),
    #[cfg(feature = "ReturnFeesEnumeration")] ReturnFeesEnumeration(ReturnFeesEnumeration),
    #[cfg(feature = "TaxiReservation")] TaxiReservation(TaxiReservation),
    #[cfg(feature = "GovernmentOffice")] GovernmentOffice(GovernmentOffice),
    #[cfg(feature = "WebPageElement")] WebPageElement(WebPageElement),
    #[cfg(feature = "ProgramMembership")] ProgramMembership(ProgramMembership),
    #[cfg(feature = "AudioObjectSnapshot")] AudioObjectSnapshot(AudioObjectSnapshot),
    #[cfg(feature = "MerchantReturnPolicySeasonalOverride")] MerchantReturnPolicySeasonalOverride(MerchantReturnPolicySeasonalOverride),
    #[cfg(feature = "SingleFamilyResidence")] SingleFamilyResidence(SingleFamilyResidence),
    #[cfg(feature = "Bridge")] Bridge(Bridge),
    #[cfg(feature = "Product")] Product(Product),
    #[cfg(feature = "Brand")] Brand(Brand),
    #[cfg(feature = "AnatomicalSystem")] AnatomicalSystem(AnatomicalSystem),
    #[cfg(feature = "EngineSpecification")] EngineSpecification(EngineSpecification),
    #[cfg(feature = "PoliceStation")] PoliceStation(PoliceStation),
    #[cfg(feature = "MarryAction")] MarryAction(MarryAction),
    #[cfg(feature = "Plumber")] Plumber(Plumber),
    #[cfg(feature = "AddAction")] AddAction(AddAction),
    #[cfg(feature = "InviteAction")] InviteAction(InviteAction),
    #[cfg(feature = "CreditCard")] CreditCard(CreditCard),
    #[cfg(feature = "Dataset")] Dataset(Dataset),
    #[cfg(feature = "PublicSwimmingPool")] PublicSwimmingPool(PublicSwimmingPool),
    #[cfg(feature = "CourseInstance")] CourseInstance(CourseInstance),
    #[cfg(feature = "MediaReview")] MediaReview(MediaReview),
    #[cfg(feature = "Occupation")] Occupation(Occupation),
    #[cfg(feature = "MedicalIntangible")] MedicalIntangible(MedicalIntangible),
    #[cfg(feature = "AuthorizeAction")] AuthorizeAction(AuthorizeAction),
    #[cfg(feature = "Protein")] Protein(Protein),
    #[cfg(feature = "LymphaticVessel")] LymphaticVessel(LymphaticVessel),
    #[cfg(feature = "DayOfWeek")] DayOfWeek(DayOfWeek),
    #[cfg(feature = "PlaceOfWorship")] PlaceOfWorship(PlaceOfWorship),
    #[cfg(feature = "ComedyEvent")] ComedyEvent(ComedyEvent),
    #[cfg(feature = "GatedResidenceCommunity")] GatedResidenceCommunity(GatedResidenceCommunity),
    #[cfg(feature = "LiveBlogPosting")] LiveBlogPosting(LiveBlogPosting),
    #[cfg(feature = "AssignAction")] AssignAction(AssignAction),
    #[cfg(feature = "FMRadioChannel")] FMRadioChannel(FMRadioChannel),
    #[cfg(feature = "AMRadioChannel")] AMRadioChannel(AMRadioChannel),
    #[cfg(feature = "PhysicalExam")] PhysicalExam(PhysicalExam),
    #[cfg(feature = "PodcastSeries")] PodcastSeries(PodcastSeries),
    #[cfg(feature = "AdvertiserContentArticle")] AdvertiserContentArticle(AdvertiserContentArticle),
    #[cfg(feature = "ExercisePlan")] ExercisePlan(ExercisePlan),
    #[cfg(feature = "GeoCircle")] GeoCircle(GeoCircle),
    #[cfg(feature = "PublicationIssue")] PublicationIssue(PublicationIssue),
    #[cfg(feature = "CafeOrCoffeeShop")] CafeOrCoffeeShop(CafeOrCoffeeShop),
    #[cfg(feature = "PalliativeProcedure")] PalliativeProcedure(PalliativeProcedure),
    #[cfg(feature = "WearableSizeGroupEnumeration")] WearableSizeGroupEnumeration(WearableSizeGroupEnumeration),
    #[cfg(feature = "HealthAndBeautyBusiness")] HealthAndBeautyBusiness(HealthAndBeautyBusiness),
    #[cfg(feature = "BioChemEntity")] BioChemEntity(BioChemEntity),
    #[cfg(feature = "Article")] Article(Article),
    #[cfg(feature = "Float")] Float(Float),
    #[cfg(feature = "Taxi")] Taxi(Taxi),
    #[cfg(feature = "Crematorium")] Crematorium(Crematorium),
    #[cfg(feature = "RadiationTherapy")] RadiationTherapy(RadiationTherapy),
    #[cfg(feature = "EducationalOccupationalProgram")] EducationalOccupationalProgram(EducationalOccupationalProgram),
    #[cfg(feature = "MedicalImagingTechnique")] MedicalImagingTechnique(MedicalImagingTechnique),
    #[cfg(feature = "Attorney")] Attorney(Attorney),
    #[cfg(feature = "BusinessAudience")] BusinessAudience(BusinessAudience),
    #[cfg(feature = "ChildrensEvent")] ChildrensEvent(ChildrensEvent),
    #[cfg(feature = "GenderType")] GenderType(GenderType),
    #[cfg(feature = "Quiz")] Quiz(Quiz),
    #[cfg(feature = "Demand")] Demand(Demand),
    #[cfg(feature = "Class")] Class(Class),
    #[cfg(feature = "Brewery")] Brewery(Brewery),
    #[cfg(feature = "HealthInsurancePlan")] HealthInsurancePlan(HealthInsurancePlan),
    #[cfg(feature = "JoinAction")] JoinAction(JoinAction),
    #[cfg(feature = "JewelryStore")] JewelryStore(JewelryStore),
    #[cfg(feature = "AutoBodyShop")] AutoBodyShop(AutoBodyShop),
    #[cfg(feature = "AmusementPark")] AmusementPark(AmusementPark),
    #[cfg(feature = "EmployerAggregateRating")] EmployerAggregateRating(EmployerAggregateRating),
    #[cfg(feature = "SatiricalArticle")] SatiricalArticle(SatiricalArticle),
    #[cfg(feature = "UserCheckins")] UserCheckins(UserCheckins),
    #[cfg(feature = "InvestmentOrDeposit")] InvestmentOrDeposit(InvestmentOrDeposit),
    #[cfg(feature = "HVACBusiness")] HVACBusiness(HVACBusiness),
    #[cfg(feature = "ActionAccessSpecification")] ActionAccessSpecification(ActionAccessSpecification),
    #[cfg(feature = "UserBlocks")] UserBlocks(UserBlocks),
    #[cfg(feature = "LocalBusiness")] LocalBusiness(LocalBusiness),
    #[cfg(feature = "TypeAndQuantityNode")] TypeAndQuantityNode(TypeAndQuantityNode),
    #[cfg(feature = "Library")] Library(Library),
    #[cfg(feature = "CategoryCodeSet")] CategoryCodeSet(CategoryCodeSet),
    #[cfg(feature = "HomeAndConstructionBusiness")] HomeAndConstructionBusiness(HomeAndConstructionBusiness),
    #[cfg(feature = "ParcelDelivery")] ParcelDelivery(ParcelDelivery),
    #[cfg(feature = "MedicalCode")] MedicalCode(MedicalCode),
    #[cfg(feature = "ReplyAction")] ReplyAction(ReplyAction),
    #[cfg(feature = "TradeAction")] TradeAction(TradeAction),
    #[cfg(feature = "CityHall")] CityHall(CityHall),
    #[cfg(feature = "ElementarySchool")] ElementarySchool(ElementarySchool),
    #[cfg(feature = "Guide")] Guide(Guide),
    #[cfg(feature = "NutritionInformation")] NutritionInformation(NutritionInformation),
    #[cfg(feature = "CommentAction")] CommentAction(CommentAction),
    #[cfg(feature = "InfectiousDisease")] InfectiousDisease(InfectiousDisease),
    #[cfg(feature = "MedicalTestPanel")] MedicalTestPanel(MedicalTestPanel),
    #[cfg(feature = "BeautySalon")] BeautySalon(BeautySalon),
    #[cfg(feature = "DryCleaningOrLaundry")] DryCleaningOrLaundry(DryCleaningOrLaundry),
    #[cfg(feature = "VideoObjectSnapshot")] VideoObjectSnapshot(VideoObjectSnapshot),
    #[cfg(feature = "HowToTip")] HowToTip(HowToTip),
    #[cfg(feature = "SocialMediaPosting")] SocialMediaPosting(SocialMediaPosting),
    #[cfg(feature = "Ligament")] Ligament(Ligament),
    #[cfg(feature = "ActionStatusType")] ActionStatusType(ActionStatusType),
    #[cfg(feature = "IndividualProduct")] IndividualProduct(IndividualProduct),
    #[cfg(feature = "HowToItem")] HowToItem(HowToItem),
    #[cfg(feature = "Report")] Report(Report),
    #[cfg(feature = "Museum")] Museum(Museum),
    #[cfg(feature = "ComicStory")] ComicStory(ComicStory),
    #[cfg(feature = "TrainReservation")] TrainReservation(TrainReservation),
    #[cfg(feature = "SubwayStation")] SubwayStation(SubwayStation),
    #[cfg(feature = "WPHeader")] WPHeader(WPHeader),
    #[cfg(feature = "EUEnergyEfficiencyEnumeration")] EUEnergyEfficiencyEnumeration(EUEnergyEfficiencyEnumeration),
    #[cfg(feature = "Painting")] Painting(Painting),
    #[cfg(feature = "MedicalProcedure")] MedicalProcedure(MedicalProcedure),
    #[cfg(feature = "DietarySupplement")] DietarySupplement(DietarySupplement),
    #[cfg(feature = "PaymentService")] PaymentService(PaymentService),
    #[cfg(feature = "TextDigitalDocument")] TextDigitalDocument(TextDigitalDocument),
    #[cfg(feature = "TieAction")] TieAction(TieAction),
    #[cfg(feature = "DrugPrescriptionStatus")] DrugPrescriptionStatus(DrugPrescriptionStatus),
    #[cfg(feature = "MediaReviewItem")] MediaReviewItem(MediaReviewItem),
    #[cfg(feature = "ComputerLanguage")] ComputerLanguage(ComputerLanguage),
    #[cfg(feature = "Locksmith")] Locksmith(Locksmith),
    #[cfg(feature = "SearchRescueOrganization")] SearchRescueOrganization(SearchRescueOrganization),
    #[cfg(feature = "Distillery")] Distillery(Distillery),
    #[cfg(feature = "EventSeries")] EventSeries(EventSeries),
    #[cfg(feature = "RadioSeries")] RadioSeries(RadioSeries),
    #[cfg(feature = "AdministrativeArea")] AdministrativeArea(AdministrativeArea),
    #[cfg(feature = "PoliticalParty")] PoliticalParty(PoliticalParty),
    #[cfg(feature = "BedAndBreakfast")] BedAndBreakfast(BedAndBreakfast),
    #[cfg(feature = "VacationRental")] VacationRental(VacationRental),
    #[cfg(feature = "HotelRoom")] HotelRoom(HotelRoom),
    #[cfg(feature = "Casino")] Casino(Casino),
    #[cfg(feature = "BookSeries")] BookSeries(BookSeries),
    #[cfg(feature = "MedicineSystem")] MedicineSystem(MedicineSystem),
    #[cfg(feature = "Airport")] Airport(Airport),
    #[cfg(feature = "CategoryCode")] CategoryCode(CategoryCode),
    #[cfg(feature = "Corporation")] Corporation(Corporation),
    #[cfg(feature = "PreOrderAction")] PreOrderAction(PreOrderAction),
    #[cfg(feature = "PodcastSeason")] PodcastSeason(PodcastSeason),
    #[cfg(feature = "TrackAction")] TrackAction(TrackAction),
    #[cfg(feature = "AskAction")] AskAction(AskAction),
    #[cfg(feature = "RealEstateAgent")] RealEstateAgent(RealEstateAgent),
    #[cfg(feature = "AccountingService")] AccountingService(AccountingService),
    #[cfg(feature = "TravelAgency")] TravelAgency(TravelAgency),
    #[cfg(feature = "Optician")] Optician(Optician),
    #[cfg(feature = "SiteNavigationElement")] SiteNavigationElement(SiteNavigationElement),
    #[cfg(feature = "Church")] Church(Church),
    #[cfg(feature = "BookmarkAction")] BookmarkAction(BookmarkAction),
    #[cfg(feature = "MenuItem")] MenuItem(MenuItem),
    #[cfg(feature = "InsertAction")] InsertAction(InsertAction),
    #[cfg(feature = "Pharmacy")] Pharmacy(Pharmacy),
    #[cfg(feature = "RadioSeason")] RadioSeason(RadioSeason),
    #[cfg(feature = "SportsOrganization")] SportsOrganization(SportsOrganization),
    #[cfg(feature = "LegalService")] LegalService(LegalService),
    #[cfg(feature = "DigitalDocumentPermission")] DigitalDocumentPermission(DigitalDocumentPermission),
    #[cfg(feature = "HardwareStore")] HardwareStore(HardwareStore),
    #[cfg(feature = "Recipe")] Recipe(Recipe),
    #[cfg(feature = "MapCategoryType")] MapCategoryType(MapCategoryType),
    #[cfg(feature = "AchieveAction")] AchieveAction(AchieveAction),
    #[cfg(feature = "PerformingGroup")] PerformingGroup(PerformingGroup),
    #[cfg(feature = "InfectiousAgentClass")] InfectiousAgentClass(InfectiousAgentClass),
    #[cfg(feature = "Event")] Event(Event),
    #[cfg(feature = "Room")] Room(Room),
    #[cfg(feature = "Gene")] Gene(Gene),
    #[cfg(feature = "ClothingStore")] ClothingStore(ClothingStore),
    #[cfg(feature = "VideoObject")] VideoObject(VideoObject),
    #[cfg(feature = "FinancialService")] FinancialService(FinancialService),
    #[cfg(feature = "Game")] Game(Game),
    #[cfg(feature = "CheckoutPage")] CheckoutPage(CheckoutPage),
    #[cfg(feature = "TakeAction")] TakeAction(TakeAction),
    #[cfg(feature = "PathologyTest")] PathologyTest(PathologyTest),
    #[cfg(feature = "AdultOrientedEnumeration")] AdultOrientedEnumeration(AdultOrientedEnumeration),
    #[cfg(feature = "RecommendedDoseSchedule")] RecommendedDoseSchedule(RecommendedDoseSchedule),
    #[cfg(feature = "CovidTestingFacility")] CovidTestingFacility(CovidTestingFacility),
    #[cfg(feature = "SpecialAnnouncement")] SpecialAnnouncement(SpecialAnnouncement),
    #[cfg(feature = "Legislation")] Legislation(Legislation),
    #[cfg(feature = "VideoGallery")] VideoGallery(VideoGallery),
    #[cfg(feature = "MusicComposition")] MusicComposition(MusicComposition),
    #[cfg(feature = "DonateAction")] DonateAction(DonateAction),
    #[cfg(feature = "ItemPage")] ItemPage(ItemPage),
    #[cfg(feature = "ChildCare")] ChildCare(ChildCare),
    #[cfg(feature = "ShippingRateSettings")] ShippingRateSettings(ShippingRateSettings),
    #[cfg(feature = "UserInteraction")] UserInteraction(UserInteraction),
    #[cfg(feature = "CoverArt")] CoverArt(CoverArt),
    #[cfg(feature = "StatisticalPopulation")] StatisticalPopulation(StatisticalPopulation),
    #[cfg(feature = "DataDownload")] DataDownload(DataDownload),
    #[cfg(feature = "ReviewAction")] ReviewAction(ReviewAction),
    #[cfg(feature = "Courthouse")] Courthouse(Courthouse),
    #[cfg(feature = "SheetMusic")] SheetMusic(SheetMusic),
    #[cfg(feature = "AmpStory")] AmpStory(AmpStory),
    #[cfg(feature = "Hackathon")] Hackathon(Hackathon),
    #[cfg(feature = "CarUsageType")] CarUsageType(CarUsageType),
    #[cfg(feature = "LegalForceStatus")] LegalForceStatus(LegalForceStatus),
    #[cfg(feature = "ReturnMethodEnumeration")] ReturnMethodEnumeration(ReturnMethodEnumeration),
    #[cfg(feature = "ElectronicsStore")] ElectronicsStore(ElectronicsStore),
    #[cfg(feature = "OceanBodyOfWater")] OceanBodyOfWater(OceanBodyOfWater),
    #[cfg(feature = "EventReservation")] EventReservation(EventReservation),
    #[cfg(feature = "ConvenienceStore")] ConvenienceStore(ConvenienceStore),
    #[cfg(feature = "ScheduleAction")] ScheduleAction(ScheduleAction),
    #[cfg(feature = "RefundTypeEnumeration")] RefundTypeEnumeration(RefundTypeEnumeration),
    #[cfg(feature = "ContactPointOption")] ContactPointOption(ContactPointOption),
    #[cfg(feature = "PresentationDigitalDocument")] PresentationDigitalDocument(PresentationDigitalDocument),
    #[cfg(feature = "MusicStore")] MusicStore(MusicStore),
    #[cfg(feature = "OnDemandEvent")] OnDemandEvent(OnDemandEvent),
    #[cfg(feature = "Poster")] Poster(Poster),
    #[cfg(feature = "DanceGroup")] DanceGroup(DanceGroup),
    #[cfg(feature = "DeliveryEvent")] DeliveryEvent(DeliveryEvent),
    #[cfg(feature = "VideoGameClip")] VideoGameClip(VideoGameClip),
    #[cfg(feature = "OwnershipInfo")] OwnershipInfo(OwnershipInfo),
    #[cfg(feature = "BusOrCoach")] BusOrCoach(BusOrCoach),
    #[cfg(feature = "MedicalEntity")] MedicalEntity(MedicalEntity),
    #[cfg(feature = "EndorseAction")] EndorseAction(EndorseAction),
    #[cfg(feature = "Photograph")] Photograph(Photograph),
    #[cfg(feature = "MovieRentalStore")] MovieRentalStore(MovieRentalStore),
    #[cfg(feature = "SportingGoodsStore")] SportingGoodsStore(SportingGoodsStore),
    #[cfg(feature = "EatAction")] EatAction(EatAction),
    #[cfg(feature = "LegislativeBuilding")] LegislativeBuilding(LegislativeBuilding),
    #[cfg(feature = "MovieClip")] MovieClip(MovieClip),
    #[cfg(feature = "UnRegisterAction")] UnRegisterAction(UnRegisterAction),
    #[cfg(feature = "CivicStructure")] CivicStructure(CivicStructure),
    #[cfg(feature = "ComicCoverArt")] ComicCoverArt(ComicCoverArt),
    #[cfg(feature = "AutoDealer")] AutoDealer(AutoDealer),
    #[cfg(feature = "EmploymentAgency")] EmploymentAgency(EmploymentAgency),
    #[cfg(feature = "SkiResort")] SkiResort(SkiResort),
    #[cfg(feature = "Consortium")] Consortium(Consortium),
    #[cfg(feature = "HighSchool")] HighSchool(HighSchool),
    #[cfg(feature = "MedicalTrialDesign")] MedicalTrialDesign(MedicalTrialDesign),
    #[cfg(feature = "UKNonprofitType")] UKNonprofitType(UKNonprofitType),
    #[cfg(feature = "Store")] Store(Store),
    #[cfg(feature = "MedicalGuideline")] MedicalGuideline(MedicalGuideline),
    #[cfg(feature = "PriceSpecification")] PriceSpecification(PriceSpecification),
    #[cfg(feature = "MedicalContraindication")] MedicalContraindication(MedicalContraindication),
    #[cfg(feature = "FollowAction")] FollowAction(FollowAction),
    #[cfg(feature = "BloodTest")] BloodTest(BloodTest),
    #[cfg(feature = "Park")] Park(Park),
    #[cfg(feature = "TVClip")] TVClip(TVClip),
    #[cfg(feature = "OfferForLease")] OfferForLease(OfferForLease),
    #[cfg(feature = "ImagingTest")] ImagingTest(ImagingTest),
    #[cfg(feature = "City")] City(City),
    #[cfg(feature = "WPSideBar")] WPSideBar(WPSideBar),
    #[cfg(feature = "WatchAction")] WatchAction(WatchAction),
    #[cfg(feature = "MedicalEvidenceLevel")] MedicalEvidenceLevel(MedicalEvidenceLevel),
    #[cfg(feature = "ConfirmAction")] ConfirmAction(ConfirmAction),
    #[cfg(feature = "BusStop")] BusStop(BusStop),
    #[cfg(feature = "Quotation")] Quotation(Quotation),
    #[cfg(feature = "ItemList")] ItemList(ItemList),
    #[cfg(feature = "ControlAction")] ControlAction(ControlAction),
    #[cfg(feature = "SizeGroupEnumeration")] SizeGroupEnumeration(SizeGroupEnumeration),
    #[cfg(feature = "GeospatialGeometry")] GeospatialGeometry(GeospatialGeometry),
    #[cfg(feature = "DrinkAction")] DrinkAction(DrinkAction),
    #[cfg(feature = "MedicalProcedureType")] MedicalProcedureType(MedicalProcedureType),
    #[cfg(feature = "ApprovedIndication")] ApprovedIndication(ApprovedIndication),
    #[cfg(feature = "OrderStatus")] OrderStatus(OrderStatus),
    #[cfg(feature = "Motorcycle")] Motorcycle(Motorcycle),
    #[cfg(feature = "DiscussionForumPosting")] DiscussionForumPosting(DiscussionForumPosting),
    #[cfg(feature = "UnitPriceSpecification")] UnitPriceSpecification(UnitPriceSpecification),
    #[cfg(feature = "UserPlays")] UserPlays(UserPlays),
    #[cfg(feature = "Action")] Action(Action),
    #[cfg(feature = "LandmarksOrHistoricalBuildings")] LandmarksOrHistoricalBuildings(LandmarksOrHistoricalBuildings),
    #[cfg(feature = "HomeGoodsStore")] HomeGoodsStore(HomeGoodsStore),
    #[cfg(feature = "EnergyEfficiencyEnumeration")] EnergyEfficiencyEnumeration(EnergyEfficiencyEnumeration),
    #[cfg(feature = "BuyAction")] BuyAction(BuyAction),
    #[cfg(feature = "RejectAction")] RejectAction(RejectAction),
    #[cfg(feature = "Review")] Review(Review),
    #[cfg(feature = "HowToSupply")] HowToSupply(HowToSupply),
    #[cfg(feature = "BroadcastService")] BroadcastService(BroadcastService),
    #[cfg(feature = "Conversation")] Conversation(Conversation),
    #[cfg(feature = "EducationalAudience")] EducationalAudience(EducationalAudience),
    #[cfg(feature = "MediaManipulationRatingEnumeration")] MediaManipulationRatingEnumeration(MediaManipulationRatingEnumeration),
    #[cfg(feature = "VitalSign")] VitalSign(VitalSign),
    #[cfg(feature = "MedicalCondition")] MedicalCondition(MedicalCondition),
    #[cfg(feature = "TheaterEvent")] TheaterEvent(TheaterEvent),
    #[cfg(feature = "AllocateAction")] AllocateAction(AllocateAction),
    #[cfg(feature = "PriceTypeEnumeration")] PriceTypeEnumeration(PriceTypeEnumeration),
    #[cfg(feature = "TreatmentIndication")] TreatmentIndication(TreatmentIndication),
    #[cfg(feature = "ReplaceAction")] ReplaceAction(ReplaceAction),
    #[cfg(feature = "MeasurementTypeEnumeration")] MeasurementTypeEnumeration(MeasurementTypeEnumeration),
    #[cfg(feature = "DefenceEstablishment")] DefenceEstablishment(DefenceEstablishment),
    #[cfg(feature = "MolecularEntity")] MolecularEntity(MolecularEntity),
    #[cfg(feature = "LiteraryEvent")] LiteraryEvent(LiteraryEvent),
    #[cfg(feature = "ComputerStore")] ComputerStore(ComputerStore),
    #[cfg(feature = "PostalAddress")] PostalAddress(PostalAddress),
    #[cfg(feature = "ActivateAction")] ActivateAction(ActivateAction),
    #[cfg(feature = "Offer")] Offer(Offer),
    #[cfg(feature = "PropertyValueSpecification")] PropertyValueSpecification(PropertyValueSpecification),
    #[cfg(feature = "Language")] Language(Language),
    #[cfg(feature = "RentAction")] RentAction(RentAction),
    #[cfg(feature = "SearchResultsPage")] SearchResultsPage(SearchResultsPage),
    #[cfg(feature = "Bone")] Bone(Bone),
    #[cfg(feature = "Movie")] Movie(Movie),
    #[cfg(feature = "VisualArtwork")] VisualArtwork(VisualArtwork),
    #[cfg(feature = "MedicalStudy")] MedicalStudy(MedicalStudy),
    #[cfg(feature = "TouristInformationCenter")] TouristInformationCenter(TouristInformationCenter),
    #[cfg(feature = "RsvpResponseType")] RsvpResponseType(RsvpResponseType),
    #[cfg(feature = "Comment")] Comment(Comment),
    #[cfg(feature = "Series")] Series(Series),
    #[cfg(feature = "SportsActivityLocation")] SportsActivityLocation(SportsActivityLocation),
    #[cfg(feature = "TransferAction")] TransferAction(TransferAction),
    #[cfg(feature = "NoteDigitalDocument")] NoteDigitalDocument(NoteDigitalDocument),
    #[cfg(feature = "Specialty")] Specialty(Specialty),
    #[cfg(feature = "MusicVideoObject")] MusicVideoObject(MusicVideoObject),
    #[cfg(feature = "DDxElement")] DDxElement(DDxElement),
    #[cfg(feature = "ContactPage")] ContactPage(ContactPage),
    #[cfg(feature = "Book")] Book(Book),
    #[cfg(feature = "FoodEstablishment")] FoodEstablishment(FoodEstablishment),
    #[cfg(feature = "BankAccount")] BankAccount(BankAccount),
    #[cfg(feature = "EducationalOrganization")] EducationalOrganization(EducationalOrganization),
    #[cfg(feature = "VisualArtsEvent")] VisualArtsEvent(VisualArtsEvent),
    #[cfg(feature = "PublicationVolume")] PublicationVolume(PublicationVolume),
    #[cfg(feature = "ShortStory")] ShortStory(ShortStory),
    #[cfg(feature = "Campground")] Campground(Campground),
    #[cfg(feature = "Seat")] Seat(Seat),
    #[cfg(feature = "HealthClub")] HealthClub(HealthClub),
    #[cfg(feature = "MotorcycleDealer")] MotorcycleDealer(MotorcycleDealer),
    #[cfg(feature = "ExhibitionEvent")] ExhibitionEvent(ExhibitionEvent),
    #[cfg(feature = "Organization")] Organization(Organization),
    #[cfg(feature = "TrainTrip")] TrainTrip(TrainTrip),
    #[cfg(feature = "RestrictedDiet")] RestrictedDiet(RestrictedDiet),
    #[cfg(feature = "HealthPlanNetwork")] HealthPlanNetwork(HealthPlanNetwork),
    #[cfg(feature = "NewsMediaOrganization")] NewsMediaOrganization(NewsMediaOrganization),
    #[cfg(feature = "Course")] Course(Course),
    #[cfg(feature = "RegisterAction")] RegisterAction(RegisterAction),
    #[cfg(feature = "MedicalGuidelineRecommendation")] MedicalGuidelineRecommendation(MedicalGuidelineRecommendation),
    #[cfg(feature = "DaySpa")] DaySpa(DaySpa),
    #[cfg(feature = "GovernmentPermit")] GovernmentPermit(GovernmentPermit),
    #[cfg(feature = "PronounceableText")] PronounceableText(PronounceableText),
    #[cfg(feature = "Beach")] Beach(Beach),
    #[cfg(feature = "PriceComponentTypeEnumeration")] PriceComponentTypeEnumeration(PriceComponentTypeEnumeration),
    #[cfg(feature = "OfferShippingDetails")] OfferShippingDetails(OfferShippingDetails),
    #[cfg(feature = "Aquarium")] Aquarium(Aquarium),
    #[cfg(feature = "ArchiveComponent")] ArchiveComponent(ArchiveComponent),
    #[cfg(feature = "CompoundPriceSpecification")] CompoundPriceSpecification(CompoundPriceSpecification),
    #[cfg(feature = "Embassy")] Embassy(Embassy),
    #[cfg(feature = "MaximumDoseSchedule")] MaximumDoseSchedule(MaximumDoseSchedule),
    #[cfg(feature = "HowToDirection")] HowToDirection(HowToDirection),
    #[cfg(feature = "PsychologicalTreatment")] PsychologicalTreatment(PsychologicalTreatment),
    #[cfg(feature = "MedicalBusiness")] MedicalBusiness(MedicalBusiness),
    #[cfg(feature = "SoftwareSourceCode")] SoftwareSourceCode(SoftwareSourceCode),
    #[cfg(feature = "PaymentChargeSpecification")] PaymentChargeSpecification(PaymentChargeSpecification),
    #[cfg(feature = "DrugCostCategory")] DrugCostCategory(DrugCostCategory),
    #[cfg(feature = "Table")] Table(Table),
    #[cfg(feature = "GovernmentOrganization")] GovernmentOrganization(GovernmentOrganization),
    #[cfg(feature = "FilmAction")] FilmAction(FilmAction),
    #[cfg(feature = "WriteAction")] WriteAction(WriteAction),
    #[cfg(feature = "MedicalSymptom")] MedicalSymptom(MedicalSymptom),
    #[cfg(feature = "InternetCafe")] InternetCafe(InternetCafe),
    #[cfg(feature = "VirtualLocation")] VirtualLocation(VirtualLocation),
    #[cfg(feature = "AnatomicalStructure")] AnatomicalStructure(AnatomicalStructure),
    #[cfg(feature = "QualitativeValue")] QualitativeValue(QualitativeValue),
    #[cfg(feature = "DiscoverAction")] DiscoverAction(DiscoverAction),
    #[cfg(feature = "OccupationalTherapy")] OccupationalTherapy(OccupationalTherapy),
    #[cfg(feature = "DownloadAction")] DownloadAction(DownloadAction),
    #[cfg(feature = "AnalysisNewsArticle")] AnalysisNewsArticle(AnalysisNewsArticle),
    #[cfg(feature = "VideoGame")] VideoGame(VideoGame),
    #[cfg(feature = "MeetingRoom")] MeetingRoom(MeetingRoom),
    #[cfg(feature = "RoofingContractor")] RoofingContractor(RoofingContractor),
    #[cfg(feature = "DefinedTermSet")] DefinedTermSet(DefinedTermSet),
    #[cfg(feature = "HowTo")] HowTo(HowTo),
    #[cfg(feature = "ComicIssue")] ComicIssue(ComicIssue),
    #[cfg(feature = "Vehicle")] Vehicle(Vehicle),
    #[cfg(feature = "ExerciseAction")] ExerciseAction(ExerciseAction),
    #[cfg(feature = "GiveAction")] GiveAction(GiveAction),
    #[cfg(feature = "Synagogue")] Synagogue(Synagogue),
    #[cfg(feature = "HowToStep")] HowToStep(HowToStep),
    #[cfg(feature = "ItemAvailability")] ItemAvailability(ItemAvailability),
    #[cfg(feature = "GovernmentBuilding")] GovernmentBuilding(GovernmentBuilding),
    #[cfg(feature = "Play")] Play(Play),
    #[cfg(feature = "Suite")] Suite(Suite),
    #[cfg(feature = "SomeProducts")] SomeProducts(SomeProducts),
    #[cfg(feature = "DrugLegalStatus")] DrugLegalStatus(DrugLegalStatus),
    #[cfg(feature = "USNonprofitType")] USNonprofitType(USNonprofitType),
    #[cfg(feature = "TheaterGroup")] TheaterGroup(TheaterGroup),
    #[cfg(feature = "Apartment")] Apartment(Apartment),
    #[cfg(feature = "HealthAspectEnumeration")] HealthAspectEnumeration(HealthAspectEnumeration),
    #[cfg(feature = "MedicalObservationalStudy")] MedicalObservationalStudy(MedicalObservationalStudy),
    #[cfg(feature = "Hostel")] Hostel(Hostel),
    #[cfg(feature = "Invoice")] Invoice(Invoice),
    #[cfg(feature = "SolveMathAction")] SolveMathAction(SolveMathAction),
    #[cfg(feature = "Trip")] Trip(Trip),
    #[cfg(feature = "OrganizeAction")] OrganizeAction(OrganizeAction),
    #[cfg(feature = "MensClothingStore")] MensClothingStore(MensClothingStore),
    #[cfg(feature = "PawnShop")] PawnShop(PawnShop),
    #[cfg(feature = "GeoCoordinates")] GeoCoordinates(GeoCoordinates),
    #[cfg(feature = "Airline")] Airline(Airline),
    #[cfg(feature = "RadioChannel")] RadioChannel(RadioChannel),
    #[cfg(feature = "Syllabus")] Syllabus(Syllabus),
    #[cfg(feature = "WinAction")] WinAction(WinAction),
    #[cfg(feature = "Prion")] Prion(Prion),
    #[cfg(feature = "Hotel")] Hotel(Hotel),
    #[cfg(feature = "Answer")] Answer(Answer),
    #[cfg(feature = "MedicalRiskFactor")] MedicalRiskFactor(MedicalRiskFactor),
    #[cfg(feature = "WebContent")] WebContent(WebContent),
    #[cfg(feature = "BarOrPub")] BarOrPub(BarOrPub),
    #[cfg(feature = "OutletStore")] OutletStore(OutletStore),
    #[cfg(feature = "Periodical")] Periodical(Periodical),
    #[cfg(feature = "PerformingArtsTheater")] PerformingArtsTheater(PerformingArtsTheater),
    #[cfg(feature = "Hospital")] Hospital(Hospital),
    #[cfg(feature = "State")] State(State),
    #[cfg(feature = "Schedule")] Schedule(Schedule),
    #[cfg(feature = "ServiceChannel")] ServiceChannel(ServiceChannel),
    #[cfg(feature = "OrganizationRole")] OrganizationRole(OrganizationRole),
    #[cfg(feature = "Reservation")] Reservation(Reservation),
    #[cfg(feature = "DrawAction")] DrawAction(DrawAction),
    #[cfg(feature = "Person")] Person(Person),
    #[cfg(feature = "GeneralContractor")] GeneralContractor(GeneralContractor),
    #[cfg(feature = "Nerve")] Nerve(Nerve),
    #[cfg(feature = "Volcano")] Volcano(Volcano),
    #[cfg(feature = "Reservoir")] Reservoir(Reservoir),
    #[cfg(feature = "CollectionPage")] CollectionPage(CollectionPage),
    #[cfg(feature = "Question")] Question(Question),
    #[cfg(feature = "WPAdBlock")] WPAdBlock(WPAdBlock),
    #[cfg(feature = "TechArticle")] TechArticle(TechArticle),
    #[cfg(feature = "Mosque")] Mosque(Mosque),
    #[cfg(feature = "GasStation")] GasStation(GasStation),
    #[cfg(feature = "SportsClub")] SportsClub(SportsClub),
    #[cfg(feature = "UserPlusOnes")] UserPlusOnes(UserPlusOnes),
    #[cfg(feature = "DrugClass")] DrugClass(DrugClass),
    #[cfg(feature = "QAPage")] QAPage(QAPage),
    #[cfg(feature = "EventAttendanceModeEnumeration")] EventAttendanceModeEnumeration(EventAttendanceModeEnumeration),
    #[cfg(feature = "InvestmentFund")] InvestmentFund(InvestmentFund),
    #[cfg(feature = "MusicVenue")] MusicVenue(MusicVenue),
} 

impl Types {
    /// Create a new type from a string.
    pub fn from_lc_ty(lc_ty: &str) -> Option<Self> {
        match lc_ty {
            #[cfg(feature = "PublicToilet")] "publictoilet" => Some(Self::PublicToilet(PublicToilet::new())),
            #[cfg(feature = "MedicalAudienceType")] "medicalaudiencetype" => Some(Self::MedicalAudienceType(MedicalAudienceType::new())),
            #[cfg(feature = "GeoShape")] "geoshape" => Some(Self::GeoShape(GeoShape::new())),
            #[cfg(feature = "Diet")] "diet" => Some(Self::Diet(Diet::new())),
            #[cfg(feature = "Permit")] "permit" => Some(Self::Permit(Permit::new())),
            #[cfg(feature = "FlightReservation")] "flightreservation" => Some(Self::FlightReservation(FlightReservation::new())),
            #[cfg(feature = "OpeningHoursSpecification")] "openinghoursspecification" => Some(Self::OpeningHoursSpecification(OpeningHoursSpecification::new())),
            #[cfg(feature = "MedicalWebPage")] "medicalwebpage" => Some(Self::MedicalWebPage(MedicalWebPage::new())),
            #[cfg(feature = "ReviewNewsArticle")] "reviewnewsarticle" => Some(Self::ReviewNewsArticle(ReviewNewsArticle::new())),
            #[cfg(feature = "Quantity")] "quantity" => Some(Self::Quantity(Quantity::new())),
            #[cfg(feature = "PhysicalActivity")] "physicalactivity" => Some(Self::PhysicalActivity(PhysicalActivity::new())),
            #[cfg(feature = "ParentAudience")] "parentaudience" => Some(Self::ParentAudience(ParentAudience::new())),
            #[cfg(feature = "DatedMoneySpecification")] "datedmoneyspecification" => Some(Self::DatedMoneySpecification(DatedMoneySpecification::new())),
            #[cfg(feature = "BefriendAction")] "befriendaction" => Some(Self::BefriendAction(BefriendAction::new())),
            #[cfg(feature = "Physician")] "physician" => Some(Self::Physician(Physician::new())),
            #[cfg(feature = "SendAction")] "sendaction" => Some(Self::SendAction(SendAction::new())),
            #[cfg(feature = "HyperToc")] "hypertoc" => Some(Self::HyperToc(HyperToc::new())),
            #[cfg(feature = "MenuSection")] "menusection" => Some(Self::MenuSection(MenuSection::new())),
            #[cfg(feature = "Substance")] "substance" => Some(Self::Substance(Substance::new())),
            #[cfg(feature = "Ticket")] "ticket" => Some(Self::Ticket(Ticket::new())),
            #[cfg(feature = "PostOffice")] "postoffice" => Some(Self::PostOffice(PostOffice::new())),
            #[cfg(feature = "Cemetery")] "cemetery" => Some(Self::Cemetery(Cemetery::new())),
            #[cfg(feature = "Waterfall")] "waterfall" => Some(Self::Waterfall(Waterfall::new())),
            #[cfg(feature = "Resort")] "resort" => Some(Self::Resort(Resort::new())),
            #[cfg(feature = "ArtGallery")] "artgallery" => Some(Self::ArtGallery(ArtGallery::new())),
            #[cfg(feature = "Muscle")] "muscle" => Some(Self::Muscle(Muscle::new())),
            #[cfg(feature = "PhotographAction")] "photographaction" => Some(Self::PhotographAction(PhotographAction::new())),
            #[cfg(feature = "Map")] "map" => Some(Self::Map(Map::new())),
            #[cfg(feature = "Order")] "order" => Some(Self::Order(Order::new())),
            #[cfg(feature = "PaintAction")] "paintaction" => Some(Self::PaintAction(PaintAction::new())),
            #[cfg(feature = "Code")] "code" => Some(Self::Code(Code::new())),
            #[cfg(feature = "ResearchProject")] "researchproject" => Some(Self::ResearchProject(ResearchProject::new())),
            #[cfg(feature = "EndorsementRating")] "endorsementrating" => Some(Self::EndorsementRating(EndorsementRating::new())),
            #[cfg(feature = "ExerciseGym")] "exercisegym" => Some(Self::ExerciseGym(ExerciseGym::new())),
            #[cfg(feature = "TouristTrip")] "touristtrip" => Some(Self::TouristTrip(TouristTrip::new())),
            #[cfg(feature = "NGO")] "ngo" => Some(Self::NGO(NGO::new())),
            #[cfg(feature = "Bacteria")] "bacteria" => Some(Self::Bacteria(Bacteria::new())),
            #[cfg(feature = "AcceptAction")] "acceptaction" => Some(Self::AcceptAction(AcceptAction::new())),
            #[cfg(feature = "ShoeStore")] "shoestore" => Some(Self::ShoeStore(ShoeStore::new())),
            #[cfg(feature = "MusicAlbumReleaseType")] "musicalbumreleasetype" => Some(Self::MusicAlbumReleaseType(MusicAlbumReleaseType::new())),
            #[cfg(feature = "DrugPregnancyCategory")] "drugpregnancycategory" => Some(Self::DrugPregnancyCategory(DrugPregnancyCategory::new())),
            #[cfg(feature = "SizeSpecification")] "sizespecification" => Some(Self::SizeSpecification(SizeSpecification::new())),
            #[cfg(feature = "Vessel")] "vessel" => Some(Self::Vessel(Vessel::new())),
            #[cfg(feature = "Drug")] "drug" => Some(Self::Drug(Drug::new())),
            #[cfg(feature = "Atlas")] "atlas" => Some(Self::Atlas(Atlas::new())),
            #[cfg(feature = "ScreeningEvent")] "screeningevent" => Some(Self::ScreeningEvent(ScreeningEvent::new())),
            #[cfg(feature = "OrderItem")] "orderitem" => Some(Self::OrderItem(OrderItem::new())),
            #[cfg(feature = "Car")] "car" => Some(Self::Car(Car::new())),
            #[cfg(feature = "SuspendAction")] "suspendaction" => Some(Self::SuspendAction(SuspendAction::new())),
            #[cfg(feature = "ListenAction")] "listenaction" => Some(Self::ListenAction(ListenAction::new())),
            #[cfg(feature = "Barcode")] "barcode" => Some(Self::Barcode(Barcode::new())),
            #[cfg(feature = "Mass")] "mass" => Some(Self::Mass(Mass::new())),
            #[cfg(feature = "NonprofitType")] "nonprofittype" => Some(Self::NonprofitType(NonprofitType::new())),
            #[cfg(feature = "SoftwareApplication")] "softwareapplication" => Some(Self::SoftwareApplication(SoftwareApplication::new())),
            #[cfg(feature = "AutoWash")] "autowash" => Some(Self::AutoWash(AutoWash::new())),
            #[cfg(feature = "MathSolver")] "mathsolver" => Some(Self::MathSolver(MathSolver::new())),
            #[cfg(feature = "DigitalDocument")] "digitaldocument" => Some(Self::DigitalDocument(DigitalDocument::new())),
            #[cfg(feature = "PublicationEvent")] "publicationevent" => Some(Self::PublicationEvent(PublicationEvent::new())),
            #[cfg(feature = "Country")] "country" => Some(Self::Country(Country::new())),
            #[cfg(feature = "TaxiStand")] "taxistand" => Some(Self::TaxiStand(TaxiStand::new())),
            #[cfg(feature = "AboutPage")] "aboutpage" => Some(Self::AboutPage(AboutPage::new())),
            #[cfg(feature = "SeaBodyOfWater")] "seabodyofwater" => Some(Self::SeaBodyOfWater(SeaBodyOfWater::new())),
            #[cfg(feature = "MedicalStudyStatus")] "medicalstudystatus" => Some(Self::MedicalStudyStatus(MedicalStudyStatus::new())),
            #[cfg(feature = "CreativeWorkSeries")] "creativeworkseries" => Some(Self::CreativeWorkSeries(CreativeWorkSeries::new())),
            #[cfg(feature = "Researcher")] "researcher" => Some(Self::Researcher(Researcher::new())),
            #[cfg(feature = "ReturnAction")] "returnaction" => Some(Self::ReturnAction(ReturnAction::new())),
            #[cfg(feature = "CommunicateAction")] "communicateaction" => Some(Self::CommunicateAction(CommunicateAction::new())),
            #[cfg(feature = "IceCreamShop")] "icecreamshop" => Some(Self::IceCreamShop(IceCreamShop::new())),
            #[cfg(feature = "FundingAgency")] "fundingagency" => Some(Self::FundingAgency(FundingAgency::new())),
            #[cfg(feature = "EmployeeRole")] "employeerole" => Some(Self::EmployeeRole(EmployeeRole::new())),
            #[cfg(feature = "BankOrCreditUnion")] "bankorcreditunion" => Some(Self::BankOrCreditUnion(BankOrCreditUnion::new())),
            #[cfg(feature = "TravelAction")] "travelaction" => Some(Self::TravelAction(TravelAction::new())),
            #[cfg(feature = "DataType")] "datatype" => Some(Self::DataType(DataType::new())),
            #[cfg(feature = "MedicalConditionStage")] "medicalconditionstage" => Some(Self::MedicalConditionStage(MedicalConditionStage::new())),
            #[cfg(feature = "ComicSeries")] "comicseries" => Some(Self::ComicSeries(ComicSeries::new())),
            #[cfg(feature = "BuddhistTemple")] "buddhisttemple" => Some(Self::BuddhistTemple(BuddhistTemple::new())),
            #[cfg(feature = "BookFormatType")] "bookformattype" => Some(Self::BookFormatType(BookFormatType::new())),
            #[cfg(feature = "Chapter")] "chapter" => Some(Self::Chapter(Chapter::new())),
            #[cfg(feature = "TelevisionStation")] "televisionstation" => Some(Self::TelevisionStation(TelevisionStation::new())),
            #[cfg(feature = "BoatTrip")] "boattrip" => Some(Self::BoatTrip(BoatTrip::new())),
            #[cfg(feature = "HyperTocEntry")] "hypertocentry" => Some(Self::HyperTocEntry(HyperTocEntry::new())),
            #[cfg(feature = "Festival")] "festival" => Some(Self::Festival(Festival::new())),
            #[cfg(feature = "Intangible")] "intangible" => Some(Self::Intangible(Intangible::new())),
            #[cfg(feature = "RadioEpisode")] "radioepisode" => Some(Self::RadioEpisode(RadioEpisode::new())),
            #[cfg(feature = "ReactAction")] "reactaction" => Some(Self::ReactAction(ReactAction::new())),
            #[cfg(feature = "OrderAction")] "orderaction" => Some(Self::OrderAction(OrderAction::new())),
            #[cfg(feature = "PaymentMethod")] "paymentmethod" => Some(Self::PaymentMethod(PaymentMethod::new())),
            #[cfg(feature = "ProductGroup")] "productgroup" => Some(Self::ProductGroup(ProductGroup::new())),
            #[cfg(feature = "MediaObject")] "mediaobject" => Some(Self::MediaObject(MediaObject::new())),
            #[cfg(feature = "AlignmentObject")] "alignmentobject" => Some(Self::AlignmentObject(AlignmentObject::new())),
            #[cfg(feature = "TelevisionChannel")] "televisionchannel" => Some(Self::TelevisionChannel(TelevisionChannel::new())),
            #[cfg(feature = "MedicalRiskScore")] "medicalriskscore" => Some(Self::MedicalRiskScore(MedicalRiskScore::new())),
            #[cfg(feature = "ListItem")] "listitem" => Some(Self::ListItem(ListItem::new())),
            #[cfg(feature = "ApplyAction")] "applyaction" => Some(Self::ApplyAction(ApplyAction::new())),
            #[cfg(feature = "AdultEntertainment")] "adultentertainment" => Some(Self::AdultEntertainment(AdultEntertainment::new())),
            #[cfg(feature = "OfferForPurchase")] "offerforpurchase" => Some(Self::OfferForPurchase(OfferForPurchase::new())),
            #[cfg(feature = "MusicAlbum")] "musicalbum" => Some(Self::MusicAlbum(MusicAlbum::new())),
            #[cfg(feature = "MedicalEnumeration")] "medicalenumeration" => Some(Self::MedicalEnumeration(MedicalEnumeration::new())),
            #[cfg(feature = "MediaGallery")] "mediagallery" => Some(Self::MediaGallery(MediaGallery::new())),
            #[cfg(feature = "CriticReview")] "criticreview" => Some(Self::CriticReview(CriticReview::new())),
            #[cfg(feature = "ContactPoint")] "contactpoint" => Some(Self::ContactPoint(ContactPoint::new())),
            #[cfg(feature = "PlayAction")] "playaction" => Some(Self::PlayAction(PlayAction::new())),
            #[cfg(feature = "CollegeOrUniversity")] "collegeoruniversity" => Some(Self::CollegeOrUniversity(CollegeOrUniversity::new())),
            #[cfg(feature = "RadioClip")] "radioclip" => Some(Self::RadioClip(RadioClip::new())),
            #[cfg(feature = "MedicalCause")] "medicalcause" => Some(Self::MedicalCause(MedicalCause::new())),
            #[cfg(feature = "GameServer")] "gameserver" => Some(Self::GameServer(GameServer::new())),
            #[cfg(feature = "PlayGameAction")] "playgameaction" => Some(Self::PlayGameAction(PlayGameAction::new())),
            #[cfg(feature = "PostalCodeRangeSpecification")] "postalcoderangespecification" => Some(Self::PostalCodeRangeSpecification(PostalCodeRangeSpecification::new())),
            #[cfg(feature = "ReservationStatusType")] "reservationstatustype" => Some(Self::ReservationStatusType(ReservationStatusType::new())),
            #[cfg(feature = "ReportedDoseSchedule")] "reporteddoseschedule" => Some(Self::ReportedDoseSchedule(ReportedDoseSchedule::new())),
            #[cfg(feature = "RepaymentSpecification")] "repaymentspecification" => Some(Self::RepaymentSpecification(RepaymentSpecification::new())),
            #[cfg(feature = "StadiumOrArena")] "stadiumorarena" => Some(Self::StadiumOrArena(StadiumOrArena::new())),
            #[cfg(feature = "Artery")] "artery" => Some(Self::Artery(Artery::new())),
            #[cfg(feature = "PlanAction")] "planaction" => Some(Self::PlanAction(PlanAction::new())),
            #[cfg(feature = "CatholicChurch")] "catholicchurch" => Some(Self::CatholicChurch(CatholicChurch::new())),
            #[cfg(feature = "Newspaper")] "newspaper" => Some(Self::Newspaper(Newspaper::new())),
            #[cfg(feature = "EducationalOccupationalCredential")] "educationaloccupationalcredential" => Some(Self::EducationalOccupationalCredential(EducationalOccupationalCredential::new())),
            #[cfg(feature = "JobPosting")] "jobposting" => Some(Self::JobPosting(JobPosting::new())),
            #[cfg(feature = "MedicalOrganization")] "medicalorganization" => Some(Self::MedicalOrganization(MedicalOrganization::new())),
            #[cfg(feature = "PrependAction")] "prependaction" => Some(Self::PrependAction(PrependAction::new())),
            #[cfg(feature = "BedDetails")] "beddetails" => Some(Self::BedDetails(BedDetails::new())),
            #[cfg(feature = "RentalCarReservation")] "rentalcarreservation" => Some(Self::RentalCarReservation(RentalCarReservation::new())),
            #[cfg(feature = "UserDownloads")] "userdownloads" => Some(Self::UserDownloads(UserDownloads::new())),
            #[cfg(feature = "AutoRepair")] "autorepair" => Some(Self::AutoRepair(AutoRepair::new())),
            #[cfg(feature = "LegislationObject")] "legislationobject" => Some(Self::LegislationObject(LegislationObject::new())),
            #[cfg(feature = "BodyMeasurementTypeEnumeration")] "bodymeasurementtypeenumeration" => Some(Self::BodyMeasurementTypeEnumeration(BodyMeasurementTypeEnumeration::new())),
            #[cfg(feature = "DeliveryTimeSettings")] "deliverytimesettings" => Some(Self::DeliveryTimeSettings(DeliveryTimeSettings::new())),
            #[cfg(feature = "ApartmentComplex")] "apartmentcomplex" => Some(Self::ApartmentComplex(ApartmentComplex::new())),
            #[cfg(feature = "ImageObjectSnapshot")] "imageobjectsnapshot" => Some(Self::ImageObjectSnapshot(ImageObjectSnapshot::new())),
            #[cfg(feature = "SuperficialAnatomy")] "superficialanatomy" => Some(Self::SuperficialAnatomy(SuperficialAnatomy::new())),
            #[cfg(feature = "MedicalSign")] "medicalsign" => Some(Self::MedicalSign(MedicalSign::new())),
            #[cfg(feature = "WPFooter")] "wpfooter" => Some(Self::WPFooter(WPFooter::new())),
            #[cfg(feature = "BusReservation")] "busreservation" => Some(Self::BusReservation(BusReservation::new())),
            #[cfg(feature = "EnergyStarEnergyEfficiencyEnumeration")] "energystarenergyefficiencyenumeration" => Some(Self::EnergyStarEnergyEfficiencyEnumeration(EnergyStarEnergyEfficiencyEnumeration::new())),
            #[cfg(feature = "Audiobook")] "audiobook" => Some(Self::Audiobook(Audiobook::new())),
            #[cfg(feature = "Mountain")] "mountain" => Some(Self::Mountain(Mountain::new())),
            #[cfg(feature = "Winery")] "winery" => Some(Self::Winery(Winery::new())),
            #[cfg(feature = "LiquorStore")] "liquorstore" => Some(Self::LiquorStore(LiquorStore::new())),
            #[cfg(feature = "ReserveAction")] "reserveaction" => Some(Self::ReserveAction(ReserveAction::new())),
            #[cfg(feature = "AggregateOffer")] "aggregateoffer" => Some(Self::AggregateOffer(AggregateOffer::new())),
            #[cfg(feature = "OpinionNewsArticle")] "opinionnewsarticle" => Some(Self::OpinionNewsArticle(OpinionNewsArticle::new())),
            #[cfg(feature = "UpdateAction")] "updateaction" => Some(Self::UpdateAction(UpdateAction::new())),
            #[cfg(feature = "Blog")] "blog" => Some(Self::Blog(Blog::new())),
            #[cfg(feature = "AudioObject")] "audioobject" => Some(Self::AudioObject(AudioObject::new())),
            #[cfg(feature = "Statement")] "statement" => Some(Self::Statement(Statement::new())),
            #[cfg(feature = "UseAction")] "useaction" => Some(Self::UseAction(UseAction::new())),
            #[cfg(feature = "LoanOrCredit")] "loanorcredit" => Some(Self::LoanOrCredit(LoanOrCredit::new())),
            #[cfg(feature = "MedicalSpecialty")] "medicalspecialty" => Some(Self::MedicalSpecialty(MedicalSpecialty::new())),
            #[cfg(feature = "ProfessionalService")] "professionalservice" => Some(Self::ProfessionalService(ProfessionalService::new())),
            #[cfg(feature = "LikeAction")] "likeaction" => Some(Self::LikeAction(LikeAction::new())),
            #[cfg(feature = "RealEstateListing")] "realestatelisting" => Some(Self::RealEstateListing(RealEstateListing::new())),
            #[cfg(feature = "EntertainmentBusiness")] "entertainmentbusiness" => Some(Self::EntertainmentBusiness(EntertainmentBusiness::new())),
            #[cfg(feature = "ShareAction")] "shareaction" => Some(Self::ShareAction(ShareAction::new())),
            #[cfg(feature = "School")] "school" => Some(Self::School(School::new())),
            #[cfg(feature = "BackgroundNewsArticle")] "backgroundnewsarticle" => Some(Self::BackgroundNewsArticle(BackgroundNewsArticle::new())),
            #[cfg(feature = "Bakery")] "bakery" => Some(Self::Bakery(Bakery::new())),
            #[cfg(feature = "MobileApplication")] "mobileapplication" => Some(Self::MobileApplication(MobileApplication::new())),
            #[cfg(feature = "MedicalDevice")] "medicaldevice" => Some(Self::MedicalDevice(MedicalDevice::new())),
            #[cfg(feature = "BusTrip")] "bustrip" => Some(Self::BusTrip(BusTrip::new())),
            #[cfg(feature = "Collection")] "collection" => Some(Self::Collection(Collection::new())),
            #[cfg(feature = "MonetaryGrant")] "monetarygrant" => Some(Self::MonetaryGrant(MonetaryGrant::new())),
            #[cfg(feature = "SizeSystemEnumeration")] "sizesystemenumeration" => Some(Self::SizeSystemEnumeration(SizeSystemEnumeration::new())),
            #[cfg(feature = "UserReview")] "userreview" => Some(Self::UserReview(UserReview::new())),
            #[cfg(feature = "PayAction")] "payaction" => Some(Self::PayAction(PayAction::new())),
            #[cfg(feature = "NewsArticle")] "newsarticle" => Some(Self::NewsArticle(NewsArticle::new())),
            #[cfg(feature = "DigitalPlatformEnumeration")] "digitalplatformenumeration" => Some(Self::DigitalPlatformEnumeration(DigitalPlatformEnumeration::new())),
            #[cfg(feature = "Motel")] "motel" => Some(Self::Motel(Motel::new())),
            #[cfg(feature = "InsuranceAgency")] "insuranceagency" => Some(Self::InsuranceAgency(InsuranceAgency::new())),
            #[cfg(feature = "BedType")] "bedtype" => Some(Self::BedType(BedType::new())),
            #[cfg(feature = "PaymentCard")] "paymentcard" => Some(Self::PaymentCard(PaymentCard::new())),
            #[cfg(feature = "Patient")] "patient" => Some(Self::Patient(Patient::new())),
            #[cfg(feature = "MortgageLoan")] "mortgageloan" => Some(Self::MortgageLoan(MortgageLoan::new())),
            #[cfg(feature = "MulticellularParasite")] "multicellularparasite" => Some(Self::MulticellularParasite(MulticellularParasite::new())),
            #[cfg(feature = "RadioStation")] "radiostation" => Some(Self::RadioStation(RadioStation::new())),
            #[cfg(feature = "FAQPage")] "faqpage" => Some(Self::FAQPage(FAQPage::new())),
            #[cfg(feature = "Place")] "place" => Some(Self::Place(Place::new())),
            #[cfg(feature = "DanceEvent")] "danceevent" => Some(Self::DanceEvent(DanceEvent::new())),
            #[cfg(feature = "NightClub")] "nightclub" => Some(Self::NightClub(NightClub::new())),
            #[cfg(feature = "HowToSection")] "howtosection" => Some(Self::HowToSection(HowToSection::new())),
            #[cfg(feature = "FinancialProduct")] "financialproduct" => Some(Self::FinancialProduct(FinancialProduct::new())),
            #[cfg(feature = "MerchantReturnEnumeration")] "merchantreturnenumeration" => Some(Self::MerchantReturnEnumeration(MerchantReturnEnumeration::new())),
            #[cfg(feature = "EmergencyService")] "emergencyservice" => Some(Self::EmergencyService(EmergencyService::new())),
            #[cfg(feature = "LoseAction")] "loseaction" => Some(Self::LoseAction(LoseAction::new())),
            #[cfg(feature = "ConstraintNode")] "constraintnode" => Some(Self::ConstraintNode(ConstraintNode::new())),
            #[cfg(feature = "Notary")] "notary" => Some(Self::Notary(Notary::new())),
            #[cfg(feature = "Audience")] "audience" => Some(Self::Audience(Audience::new())),
            #[cfg(feature = "RiverBodyOfWater")] "riverbodyofwater" => Some(Self::RiverBodyOfWater(RiverBodyOfWater::new())),
            #[cfg(feature = "QuantitativeValueDistribution")] "quantitativevaluedistribution" => Some(Self::QuantitativeValueDistribution(QuantitativeValueDistribution::new())),
            #[cfg(feature = "DepartAction")] "departaction" => Some(Self::DepartAction(DepartAction::new())),
            #[cfg(feature = "MobilePhoneStore")] "mobilephonestore" => Some(Self::MobilePhoneStore(MobilePhoneStore::new())),
            #[cfg(feature = "AutoPartsStore")] "autopartsstore" => Some(Self::AutoPartsStore(AutoPartsStore::new())),
            #[cfg(feature = "UserPageVisits")] "userpagevisits" => Some(Self::UserPageVisits(UserPageVisits::new())),
            #[cfg(feature = "Sculpture")] "sculpture" => Some(Self::Sculpture(Sculpture::new())),
            #[cfg(feature = "Recommendation")] "recommendation" => Some(Self::Recommendation(Recommendation::new())),
            #[cfg(feature = "FastFoodRestaurant")] "fastfoodrestaurant" => Some(Self::FastFoodRestaurant(FastFoodRestaurant::new())),
            #[cfg(feature = "MiddleSchool")] "middleschool" => Some(Self::MiddleSchool(MiddleSchool::new())),
            #[cfg(feature = "GamePlayMode")] "gameplaymode" => Some(Self::GamePlayMode(GamePlayMode::new())),
            #[cfg(feature = "DataFeedItem")] "datafeeditem" => Some(Self::DataFeedItem(DataFeedItem::new())),
            #[cfg(feature = "RecyclingCenter")] "recyclingcenter" => Some(Self::RecyclingCenter(RecyclingCenter::new())),
            #[cfg(feature = "Claim")] "claim" => Some(Self::Claim(Claim::new())),
            #[cfg(feature = "BusinessEvent")] "businessevent" => Some(Self::BusinessEvent(BusinessEvent::new())),
            #[cfg(feature = "AskPublicNewsArticle")] "askpublicnewsarticle" => Some(Self::AskPublicNewsArticle(AskPublicNewsArticle::new())),
            #[cfg(feature = "HealthTopicContent")] "healthtopiccontent" => Some(Self::HealthTopicContent(HealthTopicContent::new())),
            #[cfg(feature = "Accommodation")] "accommodation" => Some(Self::Accommodation(Accommodation::new())),
            #[cfg(feature = "PetStore")] "petstore" => Some(Self::PetStore(PetStore::new())),
            #[cfg(feature = "InstallAction")] "installaction" => Some(Self::InstallAction(InstallAction::new())),
            #[cfg(feature = "BlogPosting")] "blogposting" => Some(Self::BlogPosting(BlogPosting::new())),
            #[cfg(feature = "Manuscript")] "manuscript" => Some(Self::Manuscript(Manuscript::new())),
            #[cfg(feature = "TherapeuticProcedure")] "therapeuticprocedure" => Some(Self::TherapeuticProcedure(TherapeuticProcedure::new())),
            #[cfg(feature = "Virus")] "virus" => Some(Self::Virus(Virus::new())),
            #[cfg(feature = "Protozoa")] "protozoa" => Some(Self::Protozoa(Protozoa::new())),
            #[cfg(feature = "HousePainter")] "housepainter" => Some(Self::HousePainter(HousePainter::new())),
            #[cfg(feature = "WebPage")] "webpage" => Some(Self::WebPage(WebPage::new())),
            #[cfg(feature = "InteractAction")] "interactaction" => Some(Self::InteractAction(InteractAction::new())),
            #[cfg(feature = "LeaveAction")] "leaveaction" => Some(Self::LeaveAction(LeaveAction::new())),
            #[cfg(feature = "BreadcrumbList")] "breadcrumblist" => Some(Self::BreadcrumbList(BreadcrumbList::new())),
            #[cfg(feature = "CheckInAction")] "checkinaction" => Some(Self::CheckInAction(CheckInAction::new())),
            #[cfg(feature = "BroadcastChannel")] "broadcastchannel" => Some(Self::BroadcastChannel(BroadcastChannel::new())),
            #[cfg(feature = "CreativeWork")] "creativework" => Some(Self::CreativeWork(CreativeWork::new())),
            #[cfg(feature = "Grant")] "grant" => Some(Self::Grant(Grant::new())),
            #[cfg(feature = "ProfilePage")] "profilepage" => Some(Self::ProfilePage(ProfilePage::new())),
            #[cfg(feature = "LodgingBusiness")] "lodgingbusiness" => Some(Self::LodgingBusiness(LodgingBusiness::new())),
            #[cfg(feature = "DrugCost")] "drugcost" => Some(Self::DrugCost(DrugCost::new())),
            #[cfg(feature = "FloorPlan")] "floorplan" => Some(Self::FloorPlan(FloorPlan::new())),
            #[cfg(feature = "TattooParlor")] "tattooparlor" => Some(Self::TattooParlor(TattooParlor::new())),
            #[cfg(feature = "CancelAction")] "cancelaction" => Some(Self::CancelAction(CancelAction::new())),
            #[cfg(feature = "EmployerReview")] "employerreview" => Some(Self::EmployerReview(EmployerReview::new())),
            #[cfg(feature = "MoneyTransfer")] "moneytransfer" => Some(Self::MoneyTransfer(MoneyTransfer::new())),
            #[cfg(feature = "Flight")] "flight" => Some(Self::Flight(Flight::new())),
            #[cfg(feature = "DeliveryMethod")] "deliverymethod" => Some(Self::DeliveryMethod(DeliveryMethod::new())),
            #[cfg(feature = "BusinessFunction")] "businessfunction" => Some(Self::BusinessFunction(BusinessFunction::new())),
            #[cfg(feature = "Duration")] "duration" => Some(Self::Duration(Duration::new())),
            #[cfg(feature = "MedicalGuidelineContraindication")] "medicalguidelinecontraindication" => Some(Self::MedicalGuidelineContraindication(MedicalGuidelineContraindication::new())),
            #[cfg(feature = "SurgicalProcedure")] "surgicalprocedure" => Some(Self::SurgicalProcedure(SurgicalProcedure::new())),
            #[cfg(feature = "WebApplication")] "webapplication" => Some(Self::WebApplication(WebApplication::new())),
            #[cfg(feature = "ReceiveAction")] "receiveaction" => Some(Self::ReceiveAction(ReceiveAction::new())),
            #[cfg(feature = "Landform")] "landform" => Some(Self::Landform(Landform::new())),
            #[cfg(feature = "Restaurant")] "restaurant" => Some(Self::Restaurant(Restaurant::new())),
            #[cfg(feature = "OfferItemCondition")] "offeritemcondition" => Some(Self::OfferItemCondition(OfferItemCondition::new())),
            #[cfg(feature = "PhysicalTherapy")] "physicaltherapy" => Some(Self::PhysicalTherapy(PhysicalTherapy::new())),
            #[cfg(feature = "DiagnosticProcedure")] "diagnosticprocedure" => Some(Self::DiagnosticProcedure(DiagnosticProcedure::new())),
            #[cfg(feature = "BroadcastFrequencySpecification")] "broadcastfrequencyspecification" => Some(Self::BroadcastFrequencySpecification(BroadcastFrequencySpecification::new())),
            #[cfg(feature = "HealthPlanFormulary")] "healthplanformulary" => Some(Self::HealthPlanFormulary(HealthPlanFormulary::new())),
            #[cfg(feature = "MovieSeries")] "movieseries" => Some(Self::MovieSeries(MovieSeries::new())),
            #[cfg(feature = "LibrarySystem")] "librarysystem" => Some(Self::LibrarySystem(LibrarySystem::new())),
            #[cfg(feature = "WearableSizeSystemEnumeration")] "wearablesizesystemenumeration" => Some(Self::WearableSizeSystemEnumeration(WearableSizeSystemEnumeration::new())),
            #[cfg(feature = "Joint")] "joint" => Some(Self::Joint(Joint::new())),
            #[cfg(feature = "OccupationalExperienceRequirements")] "occupationalexperiencerequirements" => Some(Self::OccupationalExperienceRequirements(OccupationalExperienceRequirements::new())),
            #[cfg(feature = "DefinedRegion")] "definedregion" => Some(Self::DefinedRegion(DefinedRegion::new())),
            #[cfg(feature = "AutoRental")] "autorental" => Some(Self::AutoRental(AutoRental::new())),
            #[cfg(feature = "ShippingDeliveryTime")] "shippingdeliverytime" => Some(Self::ShippingDeliveryTime(ShippingDeliveryTime::new())),
            #[cfg(feature = "MerchantReturnPolicy")] "merchantreturnpolicy" => Some(Self::MerchantReturnPolicy(MerchantReturnPolicy::new())),
            #[cfg(feature = "ResumeAction")] "resumeaction" => Some(Self::ResumeAction(ResumeAction::new())),
            #[cfg(feature = "LakeBodyOfWater")] "lakebodyofwater" => Some(Self::LakeBodyOfWater(LakeBodyOfWater::new())),
            #[cfg(feature = "BrainStructure")] "brainstructure" => Some(Self::BrainStructure(BrainStructure::new())),
            #[cfg(feature = "LifestyleModification")] "lifestylemodification" => Some(Self::LifestyleModification(LifestyleModification::new())),
            #[cfg(feature = "ExchangeRateSpecification")] "exchangeratespecification" => Some(Self::ExchangeRateSpecification(ExchangeRateSpecification::new())),
            #[cfg(feature = "Drawing")] "drawing" => Some(Self::Drawing(Drawing::new())),
            #[cfg(feature = "ResearchOrganization")] "researchorganization" => Some(Self::ResearchOrganization(ResearchOrganization::new())),
            #[cfg(feature = "DataCatalog")] "datacatalog" => Some(Self::DataCatalog(DataCatalog::new())),
            #[cfg(feature = "Clip")] "clip" => Some(Self::Clip(Clip::new())),
            #[cfg(feature = "StatisticalVariable")] "statisticalvariable" => Some(Self::StatisticalVariable(StatisticalVariable::new())),
            #[cfg(feature = "Taxon")] "taxon" => Some(Self::Taxon(Taxon::new())),
            #[cfg(feature = "ClaimReview")] "claimreview" => Some(Self::ClaimReview(ClaimReview::new())),
            #[cfg(feature = "WholesaleStore")] "wholesalestore" => Some(Self::WholesaleStore(WholesaleStore::new())),
            #[cfg(feature = "PeopleAudience")] "peopleaudience" => Some(Self::PeopleAudience(PeopleAudience::new())),
            #[cfg(feature = "FundingScheme")] "fundingscheme" => Some(Self::FundingScheme(FundingScheme::new())),
            #[cfg(feature = "LendAction")] "lendaction" => Some(Self::LendAction(LendAction::new())),
            #[cfg(feature = "UserLikes")] "userlikes" => Some(Self::UserLikes(UserLikes::new())),
            #[cfg(feature = "MusicReleaseFormatType")] "musicreleaseformattype" => Some(Self::MusicReleaseFormatType(MusicReleaseFormatType::new())),
            #[cfg(feature = "Vein")] "vein" => Some(Self::Vein(Vein::new())),
            #[cfg(feature = "AggregateRating")] "aggregaterating" => Some(Self::AggregateRating(AggregateRating::new())),
            #[cfg(feature = "CompleteDataFeed")] "completedatafeed" => Some(Self::CompleteDataFeed(CompleteDataFeed::new())),
            #[cfg(feature = "LegalValueLevel")] "legalvaluelevel" => Some(Self::LegalValueLevel(LegalValueLevel::new())),
            #[cfg(feature = "SteeringPositionValue")] "steeringpositionvalue" => Some(Self::SteeringPositionValue(SteeringPositionValue::new())),
            #[cfg(feature = "ItemListOrderType")] "itemlistordertype" => Some(Self::ItemListOrderType(ItemListOrderType::new())),
            #[cfg(feature = "ComedyClub")] "comedyclub" => Some(Self::ComedyClub(ComedyClub::new())),
            #[cfg(feature = "DepartmentStore")] "departmentstore" => Some(Self::DepartmentStore(DepartmentStore::new())),
            #[cfg(feature = "AnimalShelter")] "animalshelter" => Some(Self::AnimalShelter(AnimalShelter::new())),
            #[cfg(feature = "WearableMeasurementTypeEnumeration")] "wearablemeasurementtypeenumeration" => Some(Self::WearableMeasurementTypeEnumeration(WearableMeasurementTypeEnumeration::new())),
            #[cfg(feature = "BroadcastEvent")] "broadcastevent" => Some(Self::BroadcastEvent(BroadcastEvent::new())),
            #[cfg(feature = "Distance")] "distance" => Some(Self::Distance(Distance::new())),
            #[cfg(feature = "StructuredValue")] "structuredvalue" => Some(Self::StructuredValue(StructuredValue::new())),
            #[cfg(feature = "NLNonprofitType")] "nlnonprofittype" => Some(Self::NLNonprofitType(NLNonprofitType::new())),
            #[cfg(feature = "Thing")] "thing" => Some(Self::Thing(Thing::new())),
            #[cfg(feature = "MedicalTherapy")] "medicaltherapy" => Some(Self::MedicalTherapy(MedicalTherapy::new())),
            #[cfg(feature = "ConsumeAction")] "consumeaction" => Some(Self::ConsumeAction(ConsumeAction::new())),
            #[cfg(feature = "UserComments")] "usercomments" => Some(Self::UserComments(UserComments::new())),
            #[cfg(feature = "MedicalClinic")] "medicalclinic" => Some(Self::MedicalClinic(MedicalClinic::new())),
            #[cfg(feature = "Pond")] "pond" => Some(Self::Pond(Pond::new())),
            #[cfg(feature = "Fungus")] "fungus" => Some(Self::Fungus(Fungus::new())),
            #[cfg(feature = "OnlineBusiness")] "onlinebusiness" => Some(Self::OnlineBusiness(OnlineBusiness::new())),
            #[cfg(feature = "OnlineStore")] "onlinestore" => Some(Self::OnlineStore(OnlineStore::new())),
            #[cfg(feature = "DiagnosticLab")] "diagnosticlab" => Some(Self::DiagnosticLab(DiagnosticLab::new())),
            #[cfg(feature = "DriveWheelConfigurationValue")] "drivewheelconfigurationvalue" => Some(Self::DriveWheelConfigurationValue(DriveWheelConfigurationValue::new())),
            #[cfg(feature = "BusStation")] "busstation" => Some(Self::BusStation(BusStation::new())),
            #[cfg(feature = "AssessAction")] "assessaction" => Some(Self::AssessAction(AssessAction::new())),
            #[cfg(feature = "MusicGroup")] "musicgroup" => Some(Self::MusicGroup(MusicGroup::new())),
            #[cfg(feature = "MedicalScholarlyArticle")] "medicalscholarlyarticle" => Some(Self::MedicalScholarlyArticle(MedicalScholarlyArticle::new())),
            #[cfg(feature = "SubscribeAction")] "subscribeaction" => Some(Self::SubscribeAction(SubscribeAction::new())),
            #[cfg(feature = "PaymentStatusType")] "paymentstatustype" => Some(Self::PaymentStatusType(PaymentStatusType::new())),
            #[cfg(feature = "FoodEstablishmentReservation")] "foodestablishmentreservation" => Some(Self::FoodEstablishmentReservation(FoodEstablishmentReservation::new())),
            #[cfg(feature = "BodyOfWater")] "bodyofwater" => Some(Self::BodyOfWater(BodyOfWater::new())),
            #[cfg(feature = "MusicRelease")] "musicrelease" => Some(Self::MusicRelease(MusicRelease::new())),
            #[cfg(feature = "MediaSubscription")] "mediasubscription" => Some(Self::MediaSubscription(MediaSubscription::new())),
            #[cfg(feature = "DislikeAction")] "dislikeaction" => Some(Self::DislikeAction(DislikeAction::new())),
            #[cfg(feature = "ReturnLabelSourceEnumeration")] "returnlabelsourceenumeration" => Some(Self::ReturnLabelSourceEnumeration(ReturnLabelSourceEnumeration::new())),
            #[cfg(feature = "CheckOutAction")] "checkoutaction" => Some(Self::CheckOutAction(CheckOutAction::new())),
            #[cfg(feature = "SocialEvent")] "socialevent" => Some(Self::SocialEvent(SocialEvent::new())),
            #[cfg(feature = "FindAction")] "findaction" => Some(Self::FindAction(FindAction::new())),
            #[cfg(feature = "Season")] "season" => Some(Self::Season(Season::new())),
            #[cfg(feature = "DepositAccount")] "depositaccount" => Some(Self::DepositAccount(DepositAccount::new())),
            #[cfg(feature = "ReadAction")] "readaction" => Some(Self::ReadAction(ReadAction::new())),
            #[cfg(feature = "Dentist")] "dentist" => Some(Self::Dentist(Dentist::new())),
            #[cfg(feature = "CorrectionComment")] "correctioncomment" => Some(Self::CorrectionComment(CorrectionComment::new())),
            #[cfg(feature = "GameServerStatus")] "gameserverstatus" => Some(Self::GameServerStatus(GameServerStatus::new())),
            #[cfg(feature = "BorrowAction")] "borrowaction" => Some(Self::BorrowAction(BorrowAction::new())),
            #[cfg(feature = "TrainStation")] "trainstation" => Some(Self::TrainStation(TrainStation::new())),
            #[cfg(feature = "MedicalDevicePurpose")] "medicaldevicepurpose" => Some(Self::MedicalDevicePurpose(MedicalDevicePurpose::new())),
            #[cfg(feature = "CheckAction")] "checkaction" => Some(Self::CheckAction(CheckAction::new())),
            #[cfg(feature = "SportsTeam")] "sportsteam" => Some(Self::SportsTeam(SportsTeam::new())),
            #[cfg(feature = "HairSalon")] "hairsalon" => Some(Self::HairSalon(HairSalon::new())),
            #[cfg(feature = "GroceryStore")] "grocerystore" => Some(Self::GroceryStore(GroceryStore::new())),
            #[cfg(feature = "PodcastEpisode")] "podcastepisode" => Some(Self::PodcastEpisode(PodcastEpisode::new())),
            #[cfg(feature = "SpreadsheetDigitalDocument")] "spreadsheetdigitaldocument" => Some(Self::SpreadsheetDigitalDocument(SpreadsheetDigitalDocument::new())),
            #[cfg(feature = "ReportageNewsArticle")] "reportagenewsarticle" => Some(Self::ReportageNewsArticle(ReportageNewsArticle::new())),
            #[cfg(feature = "SelfStorage")] "selfstorage" => Some(Self::SelfStorage(SelfStorage::new())),
            #[cfg(feature = "CreativeWorkSeason")] "creativeworkseason" => Some(Self::CreativeWorkSeason(CreativeWorkSeason::new())),
            #[cfg(feature = "MedicalObservationalStudyDesign")] "medicalobservationalstudydesign" => Some(Self::MedicalObservationalStudyDesign(MedicalObservationalStudyDesign::new())),
            #[cfg(feature = "HinduTemple")] "hindutemple" => Some(Self::HinduTemple(HinduTemple::new())),
            #[cfg(feature = "MonetaryAmount")] "monetaryamount" => Some(Self::MonetaryAmount(MonetaryAmount::new())),
            #[cfg(feature = "MedicalRiskEstimator")] "medicalriskestimator" => Some(Self::MedicalRiskEstimator(MedicalRiskEstimator::new())),
            #[cfg(feature = "Message")] "message" => Some(Self::Message(Message::new())),
            #[cfg(feature = "SportsEvent")] "sportsevent" => Some(Self::SportsEvent(SportsEvent::new())),
            #[cfg(feature = "PerformanceRole")] "performancerole" => Some(Self::PerformanceRole(PerformanceRole::new())),
            #[cfg(feature = "APIReference")] "apireference" => Some(Self::APIReference(APIReference::new())),
            #[cfg(feature = "Electrician")] "electrician" => Some(Self::Electrician(Electrician::new())),
            #[cfg(feature = "LinkRole")] "linkrole" => Some(Self::LinkRole(LinkRole::new())),
            #[cfg(feature = "DataFeed")] "datafeed" => Some(Self::DataFeed(DataFeed::new())),
            #[cfg(feature = "WorkBasedProgram")] "workbasedprogram" => Some(Self::WorkBasedProgram(WorkBasedProgram::new())),
            #[cfg(feature = "SchoolDistrict")] "schooldistrict" => Some(Self::SchoolDistrict(SchoolDistrict::new())),
            #[cfg(feature = "ImageGallery")] "imagegallery" => Some(Self::ImageGallery(ImageGallery::new())),
            #[cfg(feature = "DeliveryChargeSpecification")] "deliverychargespecification" => Some(Self::DeliveryChargeSpecification(DeliveryChargeSpecification::new())),
            #[cfg(feature = "SpeakableSpecification")] "speakablespecification" => Some(Self::SpeakableSpecification(SpeakableSpecification::new())),
            #[cfg(feature = "GardenStore")] "gardenstore" => Some(Self::GardenStore(GardenStore::new())),
            #[cfg(feature = "Service")] "service" => Some(Self::Service(Service::new())),
            #[cfg(feature = "CookAction")] "cookaction" => Some(Self::CookAction(CookAction::new())),
            #[cfg(feature = "SearchAction")] "searchaction" => Some(Self::SearchAction(SearchAction::new())),
            #[cfg(feature = "ShoppingCenter")] "shoppingcenter" => Some(Self::ShoppingCenter(ShoppingCenter::new())),
            #[cfg(feature = "CampingPitch")] "campingpitch" => Some(Self::CampingPitch(CampingPitch::new())),
            #[cfg(feature = "FurnitureStore")] "furniturestore" => Some(Self::FurnitureStore(FurnitureStore::new())),
            #[cfg(feature = "UserTweets")] "usertweets" => Some(Self::UserTweets(UserTweets::new())),
            #[cfg(feature = "Project")] "project" => Some(Self::Project(Project::new())),
            #[cfg(feature = "WorkersUnion")] "workersunion" => Some(Self::WorkersUnion(WorkersUnion::new())),
            #[cfg(feature = "SaleEvent")] "saleevent" => Some(Self::SaleEvent(SaleEvent::new())),
            #[cfg(feature = "Energy")] "energy" => Some(Self::Energy(Energy::new())),
            #[cfg(feature = "Preschool")] "preschool" => Some(Self::Preschool(Preschool::new())),
            #[cfg(feature = "Continent")] "continent" => Some(Self::Continent(Continent::new())),
            #[cfg(feature = "ArchiveOrganization")] "archiveorganization" => Some(Self::ArchiveOrganization(ArchiveOrganization::new())),
            #[cfg(feature = "DrugStrength")] "drugstrength" => Some(Self::DrugStrength(DrugStrength::new())),
            #[cfg(feature = "PerformAction")] "performaction" => Some(Self::PerformAction(PerformAction::new())),
            #[cfg(feature = "ReservationPackage")] "reservationpackage" => Some(Self::ReservationPackage(ReservationPackage::new())),
            #[cfg(feature = "AppendAction")] "appendaction" => Some(Self::AppendAction(AppendAction::new())),
            #[cfg(feature = "VideoGameSeries")] "videogameseries" => Some(Self::VideoGameSeries(VideoGameSeries::new())),
            #[cfg(feature = "QuantitativeValue")] "quantitativevalue" => Some(Self::QuantitativeValue(QuantitativeValue::new())),
            #[cfg(feature = "EducationEvent")] "educationevent" => Some(Self::EducationEvent(EducationEvent::new())),
            #[cfg(feature = "Observation")] "observation" => Some(Self::Observation(Observation::new())),
            #[cfg(feature = "MedicalRiskCalculator")] "medicalriskcalculator" => Some(Self::MedicalRiskCalculator(MedicalRiskCalculator::new())),
            #[cfg(feature = "RadioBroadcastService")] "radiobroadcastservice" => Some(Self::RadioBroadcastService(RadioBroadcastService::new())),
            #[cfg(feature = "GovernmentBenefitsType")] "governmentbenefitstype" => Some(Self::GovernmentBenefitsType(GovernmentBenefitsType::new())),
            #[cfg(feature = "MotorizedBicycle")] "motorizedbicycle" => Some(Self::MotorizedBicycle(MotorizedBicycle::new())),
            #[cfg(feature = "PhysicalActivityCategory")] "physicalactivitycategory" => Some(Self::PhysicalActivityCategory(PhysicalActivityCategory::new())),
            #[cfg(feature = "MedicalTest")] "medicaltest" => Some(Self::MedicalTest(MedicalTest::new())),
            #[cfg(feature = "ScholarlyArticle")] "scholarlyarticle" => Some(Self::ScholarlyArticle(ScholarlyArticle::new())),
            #[cfg(feature = "EmailMessage")] "emailmessage" => Some(Self::EmailMessage(EmailMessage::new())),
            #[cfg(feature = "WearAction")] "wearaction" => Some(Self::WearAction(WearAction::new())),
            #[cfg(feature = "BoardingPolicyType")] "boardingpolicytype" => Some(Self::BoardingPolicyType(BoardingPolicyType::new())),
            #[cfg(feature = "RsvpAction")] "rsvpaction" => Some(Self::RsvpAction(RsvpAction::new())),
            #[cfg(feature = "MeasurementMethodEnum")] "measurementmethodenum" => Some(Self::MeasurementMethodEnum(MeasurementMethodEnum::new())),
            #[cfg(feature = "FoodEvent")] "foodevent" => Some(Self::FoodEvent(FoodEvent::new())),
            #[cfg(feature = "CDCPMDRecord")] "cdcpmdrecord" => Some(Self::CDCPMDRecord(CDCPMDRecord::new())),
            #[cfg(feature = "Residence")] "residence" => Some(Self::Residence(Residence::new())),
            #[cfg(feature = "WantAction")] "wantaction" => Some(Self::WantAction(WantAction::new())),
            #[cfg(feature = "EntryPoint")] "entrypoint" => Some(Self::EntryPoint(EntryPoint::new())),
            #[cfg(feature = "MedicalIndication")] "medicalindication" => Some(Self::MedicalIndication(MedicalIndication::new())),
            #[cfg(feature = "GameAvailabilityEnumeration")] "gameavailabilityenumeration" => Some(Self::GameAvailabilityEnumeration(GameAvailabilityEnumeration::new())),
            #[cfg(feature = "IgnoreAction")] "ignoreaction" => Some(Self::IgnoreAction(IgnoreAction::new())),
            #[cfg(feature = "MedicalAudience")] "medicalaudience" => Some(Self::MedicalAudience(MedicalAudience::new())),
            #[cfg(feature = "LodgingReservation")] "lodgingreservation" => Some(Self::LodgingReservation(LodgingReservation::new())),
            #[cfg(feature = "MedicalTrial")] "medicaltrial" => Some(Self::MedicalTrial(MedicalTrial::new())),
            #[cfg(feature = "AutomotiveBusiness")] "automotivebusiness" => Some(Self::AutomotiveBusiness(AutomotiveBusiness::new())),
            #[cfg(feature = "TVEpisode")] "tvepisode" => Some(Self::TVEpisode(TVEpisode::new())),
            #[cfg(feature = "BusinessEntityType")] "businessentitytype" => Some(Self::BusinessEntityType(BusinessEntityType::new())),
            #[cfg(feature = "MovieTheater")] "movietheater" => Some(Self::MovieTheater(MovieTheater::new())),
            #[cfg(feature = "GolfCourse")] "golfcourse" => Some(Self::GolfCourse(GolfCourse::new())),
            #[cfg(feature = "WebSite")] "website" => Some(Self::WebSite(WebSite::new())),
            #[cfg(feature = "QuoteAction")] "quoteaction" => Some(Self::QuoteAction(QuoteAction::new())),
            #[cfg(feature = "HealthPlanCostSharingSpecification")] "healthplancostsharingspecification" => Some(Self::HealthPlanCostSharingSpecification(HealthPlanCostSharingSpecification::new())),
            #[cfg(feature = "HobbyShop")] "hobbyshop" => Some(Self::HobbyShop(HobbyShop::new())),
            #[cfg(feature = "CurrencyConversionService")] "currencyconversionservice" => Some(Self::CurrencyConversionService(CurrencyConversionService::new())),
            #[cfg(feature = "Rating")] "rating" => Some(Self::Rating(Rating::new())),
            #[cfg(feature = "OfficeEquipmentStore")] "officeequipmentstore" => Some(Self::OfficeEquipmentStore(OfficeEquipmentStore::new())),
            #[cfg(feature = "EnergyConsumptionDetails")] "energyconsumptiondetails" => Some(Self::EnergyConsumptionDetails(EnergyConsumptionDetails::new())),
            #[cfg(feature = "WarrantyScope")] "warrantyscope" => Some(Self::WarrantyScope(WarrantyScope::new())),
            #[cfg(feature = "MusicPlaylist")] "musicplaylist" => Some(Self::MusicPlaylist(MusicPlaylist::new())),
            #[cfg(feature = "Florist")] "florist" => Some(Self::Florist(Florist::new())),
            #[cfg(feature = "ImageObject")] "imageobject" => Some(Self::ImageObject(ImageObject::new())),
            #[cfg(feature = "MusicEvent")] "musicevent" => Some(Self::MusicEvent(MusicEvent::new())),
            #[cfg(feature = "PreventionIndication")] "preventionindication" => Some(Self::PreventionIndication(PreventionIndication::new())),
            #[cfg(feature = "DisagreeAction")] "disagreeaction" => Some(Self::DisagreeAction(DisagreeAction::new())),
            #[cfg(feature = "GovernmentService")] "governmentservice" => Some(Self::GovernmentService(GovernmentService::new())),
            #[cfg(feature = "FireStation")] "firestation" => Some(Self::FireStation(FireStation::new())),
            #[cfg(feature = "Role")] "role" => Some(Self::Role(Role::new())),
            #[cfg(feature = "LearningResource")] "learningresource" => Some(Self::LearningResource(LearningResource::new())),
            #[cfg(feature = "PropertyValue")] "propertyvalue" => Some(Self::PropertyValue(PropertyValue::new())),
            #[cfg(feature = "TouristAttraction")] "touristattraction" => Some(Self::TouristAttraction(TouristAttraction::new())),
            #[cfg(feature = "DoseSchedule")] "doseschedule" => Some(Self::DoseSchedule(DoseSchedule::new())),
            #[cfg(feature = "FoodService")] "foodservice" => Some(Self::FoodService(FoodService::new())),
            #[cfg(feature = "ThreeDModel")] "threedmodel" => Some(Self::ThreeDModel(ThreeDModel::new())),
            #[cfg(feature = "Canal")] "canal" => Some(Self::Canal(Canal::new())),
            #[cfg(feature = "MovingCompany")] "movingcompany" => Some(Self::MovingCompany(MovingCompany::new())),
            #[cfg(feature = "SellAction")] "sellaction" => Some(Self::SellAction(SellAction::new())),
            #[cfg(feature = "TipAction")] "tipaction" => Some(Self::TipAction(TipAction::new())),
            #[cfg(feature = "TVSeries")] "tvseries" => Some(Self::TVSeries(TVSeries::new())),
            #[cfg(feature = "BrokerageAccount")] "brokerageaccount" => Some(Self::BrokerageAccount(BrokerageAccount::new())),
            #[cfg(feature = "Episode")] "episode" => Some(Self::Episode(Episode::new())),
            #[cfg(feature = "ToyStore")] "toystore" => Some(Self::ToyStore(ToyStore::new())),
            #[cfg(feature = "DefinedTerm")] "definedterm" => Some(Self::DefinedTerm(DefinedTerm::new())),
            #[cfg(feature = "BikeStore")] "bikestore" => Some(Self::BikeStore(BikeStore::new())),
            #[cfg(feature = "ChooseAction")] "chooseaction" => Some(Self::ChooseAction(ChooseAction::new())),
            #[cfg(feature = "Property")] "property" => Some(Self::Property(Property::new())),
            #[cfg(feature = "HowToTool")] "howtotool" => Some(Self::HowToTool(HowToTool::new())),
            #[cfg(feature = "AutomatedTeller")] "automatedteller" => Some(Self::AutomatedTeller(AutomatedTeller::new())),
            #[cfg(feature = "Zoo")] "zoo" => Some(Self::Zoo(Zoo::new())),
            #[cfg(feature = "ChemicalSubstance")] "chemicalsubstance" => Some(Self::ChemicalSubstance(ChemicalSubstance::new())),
            #[cfg(feature = "InteractionCounter")] "interactioncounter" => Some(Self::InteractionCounter(InteractionCounter::new())),
            #[cfg(feature = "CableOrSatelliteService")] "cableorsatelliteservice" => Some(Self::CableOrSatelliteService(CableOrSatelliteService::new())),
            #[cfg(feature = "NailSalon")] "nailsalon" => Some(Self::NailSalon(NailSalon::new())),
            #[cfg(feature = "EventVenue")] "eventvenue" => Some(Self::EventVenue(EventVenue::new())),
            #[cfg(feature = "ProductCollection")] "productcollection" => Some(Self::ProductCollection(ProductCollection::new())),
            #[cfg(feature = "VeterinaryCare")] "veterinarycare" => Some(Self::VeterinaryCare(VeterinaryCare::new())),
            #[cfg(feature = "TaxiService")] "taxiservice" => Some(Self::TaxiService(TaxiService::new())),
            #[cfg(feature = "ViewAction")] "viewaction" => Some(Self::ViewAction(ViewAction::new())),
            #[cfg(feature = "TireShop")] "tireshop" => Some(Self::TireShop(TireShop::new())),
            #[cfg(feature = "WebAPI")] "webapi" => Some(Self::WebAPI(WebAPI::new())),
            #[cfg(feature = "RVPark")] "rvpark" => Some(Self::RVPark(RVPark::new())),
            #[cfg(feature = "MusicRecording")] "musicrecording" => Some(Self::MusicRecording(MusicRecording::new())),
            #[cfg(feature = "BookStore")] "bookstore" => Some(Self::BookStore(BookStore::new())),
            #[cfg(feature = "OfferCatalog")] "offercatalog" => Some(Self::OfferCatalog(OfferCatalog::new())),
            #[cfg(feature = "TextObject")] "textobject" => Some(Self::TextObject(TextObject::new())),
            #[cfg(feature = "DigitalDocumentPermissionType")] "digitaldocumentpermissiontype" => Some(Self::DigitalDocumentPermissionType(DigitalDocumentPermissionType::new())),
            #[cfg(feature = "BowlingAlley")] "bowlingalley" => Some(Self::BowlingAlley(BowlingAlley::new())),
            #[cfg(feature = "BoatTerminal")] "boatterminal" => Some(Self::BoatTerminal(BoatTerminal::new())),
            #[cfg(feature = "TVSeason")] "tvseason" => Some(Self::TVSeason(TVSeason::new())),
            #[cfg(feature = "AgreeAction")] "agreeaction" => Some(Self::AgreeAction(AgreeAction::new())),
            #[cfg(feature = "MotorcycleRepair")] "motorcyclerepair" => Some(Self::MotorcycleRepair(MotorcycleRepair::new())),
            #[cfg(feature = "House")] "house" => Some(Self::House(House::new())),
            #[cfg(feature = "BoatReservation")] "boatreservation" => Some(Self::BoatReservation(BoatReservation::new())),
            #[cfg(feature = "CreateAction")] "createaction" => Some(Self::CreateAction(CreateAction::new())),
            #[cfg(feature = "StatusEnumeration")] "statusenumeration" => Some(Self::StatusEnumeration(StatusEnumeration::new())),
            #[cfg(feature = "SeekToAction")] "seektoaction" => Some(Self::SeekToAction(SeekToAction::new())),
            #[cfg(feature = "Playground")] "playground" => Some(Self::Playground(Playground::new())),
            #[cfg(feature = "ParkingFacility")] "parkingfacility" => Some(Self::ParkingFacility(ParkingFacility::new())),
            #[cfg(feature = "LocationFeatureSpecification")] "locationfeaturespecification" => Some(Self::LocationFeatureSpecification(LocationFeatureSpecification::new())),
            #[cfg(feature = "VoteAction")] "voteaction" => Some(Self::VoteAction(VoteAction::new())),
            #[cfg(feature = "InformAction")] "informaction" => Some(Self::InformAction(InformAction::new())),
            #[cfg(feature = "Enumeration")] "enumeration" => Some(Self::Enumeration(Enumeration::new())),
            #[cfg(feature = "ProductModel")] "productmodel" => Some(Self::ProductModel(ProductModel::new())),
            #[cfg(feature = "DeleteAction")] "deleteaction" => Some(Self::DeleteAction(DeleteAction::new())),
            #[cfg(feature = "WarrantyPromise")] "warrantypromise" => Some(Self::WarrantyPromise(WarrantyPromise::new())),
            #[cfg(feature = "DeactivateAction")] "deactivateaction" => Some(Self::DeactivateAction(DeactivateAction::new())),
            #[cfg(feature = "Menu")] "menu" => Some(Self::Menu(Menu::new())),
            #[cfg(feature = "MusicAlbumProductionType")] "musicalbumproductiontype" => Some(Self::MusicAlbumProductionType(MusicAlbumProductionType::new())),
            #[cfg(feature = "TouristDestination")] "touristdestination" => Some(Self::TouristDestination(TouristDestination::new())),
            #[cfg(feature = "Thesis")] "thesis" => Some(Self::Thesis(Thesis::new())),
            #[cfg(feature = "MoveAction")] "moveaction" => Some(Self::MoveAction(MoveAction::new())),
            #[cfg(feature = "MedicalSignOrSymptom")] "medicalsignorsymptom" => Some(Self::MedicalSignOrSymptom(MedicalSignOrSymptom::new())),
            #[cfg(feature = "MonetaryAmountDistribution")] "monetaryamountdistribution" => Some(Self::MonetaryAmountDistribution(MonetaryAmountDistribution::new())),
            #[cfg(feature = "EventStatusType")] "eventstatustype" => Some(Self::EventStatusType(EventStatusType::new())),
            #[cfg(feature = "TennisComplex")] "tenniscomplex" => Some(Self::TennisComplex(TennisComplex::new())),
            #[cfg(feature = "ArriveAction")] "arriveaction" => Some(Self::ArriveAction(ArriveAction::new())),
            #[cfg(feature = "ReturnFeesEnumeration")] "returnfeesenumeration" => Some(Self::ReturnFeesEnumeration(ReturnFeesEnumeration::new())),
            #[cfg(feature = "TaxiReservation")] "taxireservation" => Some(Self::TaxiReservation(TaxiReservation::new())),
            #[cfg(feature = "GovernmentOffice")] "governmentoffice" => Some(Self::GovernmentOffice(GovernmentOffice::new())),
            #[cfg(feature = "WebPageElement")] "webpageelement" => Some(Self::WebPageElement(WebPageElement::new())),
            #[cfg(feature = "ProgramMembership")] "programmembership" => Some(Self::ProgramMembership(ProgramMembership::new())),
            #[cfg(feature = "AudioObjectSnapshot")] "audioobjectsnapshot" => Some(Self::AudioObjectSnapshot(AudioObjectSnapshot::new())),
            #[cfg(feature = "MerchantReturnPolicySeasonalOverride")] "merchantreturnpolicyseasonaloverride" => Some(Self::MerchantReturnPolicySeasonalOverride(MerchantReturnPolicySeasonalOverride::new())),
            #[cfg(feature = "SingleFamilyResidence")] "singlefamilyresidence" => Some(Self::SingleFamilyResidence(SingleFamilyResidence::new())),
            #[cfg(feature = "Bridge")] "bridge" => Some(Self::Bridge(Bridge::new())),
            #[cfg(feature = "Product")] "product" => Some(Self::Product(Product::new())),
            #[cfg(feature = "Brand")] "brand" => Some(Self::Brand(Brand::new())),
            #[cfg(feature = "AnatomicalSystem")] "anatomicalsystem" => Some(Self::AnatomicalSystem(AnatomicalSystem::new())),
            #[cfg(feature = "EngineSpecification")] "enginespecification" => Some(Self::EngineSpecification(EngineSpecification::new())),
            #[cfg(feature = "PoliceStation")] "policestation" => Some(Self::PoliceStation(PoliceStation::new())),
            #[cfg(feature = "MarryAction")] "marryaction" => Some(Self::MarryAction(MarryAction::new())),
            #[cfg(feature = "Plumber")] "plumber" => Some(Self::Plumber(Plumber::new())),
            #[cfg(feature = "AddAction")] "addaction" => Some(Self::AddAction(AddAction::new())),
            #[cfg(feature = "InviteAction")] "inviteaction" => Some(Self::InviteAction(InviteAction::new())),
            #[cfg(feature = "CreditCard")] "creditcard" => Some(Self::CreditCard(CreditCard::new())),
            #[cfg(feature = "Dataset")] "dataset" => Some(Self::Dataset(Dataset::new())),
            #[cfg(feature = "PublicSwimmingPool")] "publicswimmingpool" => Some(Self::PublicSwimmingPool(PublicSwimmingPool::new())),
            #[cfg(feature = "CourseInstance")] "courseinstance" => Some(Self::CourseInstance(CourseInstance::new())),
            #[cfg(feature = "MediaReview")] "mediareview" => Some(Self::MediaReview(MediaReview::new())),
            #[cfg(feature = "Occupation")] "occupation" => Some(Self::Occupation(Occupation::new())),
            #[cfg(feature = "MedicalIntangible")] "medicalintangible" => Some(Self::MedicalIntangible(MedicalIntangible::new())),
            #[cfg(feature = "AuthorizeAction")] "authorizeaction" => Some(Self::AuthorizeAction(AuthorizeAction::new())),
            #[cfg(feature = "Protein")] "protein" => Some(Self::Protein(Protein::new())),
            #[cfg(feature = "LymphaticVessel")] "lymphaticvessel" => Some(Self::LymphaticVessel(LymphaticVessel::new())),
            #[cfg(feature = "DayOfWeek")] "dayofweek" => Some(Self::DayOfWeek(DayOfWeek::new())),
            #[cfg(feature = "PlaceOfWorship")] "placeofworship" => Some(Self::PlaceOfWorship(PlaceOfWorship::new())),
            #[cfg(feature = "ComedyEvent")] "comedyevent" => Some(Self::ComedyEvent(ComedyEvent::new())),
            #[cfg(feature = "GatedResidenceCommunity")] "gatedresidencecommunity" => Some(Self::GatedResidenceCommunity(GatedResidenceCommunity::new())),
            #[cfg(feature = "LiveBlogPosting")] "liveblogposting" => Some(Self::LiveBlogPosting(LiveBlogPosting::new())),
            #[cfg(feature = "AssignAction")] "assignaction" => Some(Self::AssignAction(AssignAction::new())),
            #[cfg(feature = "FMRadioChannel")] "fmradiochannel" => Some(Self::FMRadioChannel(FMRadioChannel::new())),
            #[cfg(feature = "AMRadioChannel")] "amradiochannel" => Some(Self::AMRadioChannel(AMRadioChannel::new())),
            #[cfg(feature = "PhysicalExam")] "physicalexam" => Some(Self::PhysicalExam(PhysicalExam::new())),
            #[cfg(feature = "PodcastSeries")] "podcastseries" => Some(Self::PodcastSeries(PodcastSeries::new())),
            #[cfg(feature = "AdvertiserContentArticle")] "advertisercontentarticle" => Some(Self::AdvertiserContentArticle(AdvertiserContentArticle::new())),
            #[cfg(feature = "ExercisePlan")] "exerciseplan" => Some(Self::ExercisePlan(ExercisePlan::new())),
            #[cfg(feature = "GeoCircle")] "geocircle" => Some(Self::GeoCircle(GeoCircle::new())),
            #[cfg(feature = "PublicationIssue")] "publicationissue" => Some(Self::PublicationIssue(PublicationIssue::new())),
            #[cfg(feature = "CafeOrCoffeeShop")] "cafeorcoffeeshop" => Some(Self::CafeOrCoffeeShop(CafeOrCoffeeShop::new())),
            #[cfg(feature = "PalliativeProcedure")] "palliativeprocedure" => Some(Self::PalliativeProcedure(PalliativeProcedure::new())),
            #[cfg(feature = "WearableSizeGroupEnumeration")] "wearablesizegroupenumeration" => Some(Self::WearableSizeGroupEnumeration(WearableSizeGroupEnumeration::new())),
            #[cfg(feature = "HealthAndBeautyBusiness")] "healthandbeautybusiness" => Some(Self::HealthAndBeautyBusiness(HealthAndBeautyBusiness::new())),
            #[cfg(feature = "BioChemEntity")] "biochementity" => Some(Self::BioChemEntity(BioChemEntity::new())),
            #[cfg(feature = "Article")] "article" => Some(Self::Article(Article::new())),
            #[cfg(feature = "Float")] "float" => Some(Self::Float(Float::new())),
            #[cfg(feature = "Taxi")] "taxi" => Some(Self::Taxi(Taxi::new())),
            #[cfg(feature = "Crematorium")] "crematorium" => Some(Self::Crematorium(Crematorium::new())),
            #[cfg(feature = "RadiationTherapy")] "radiationtherapy" => Some(Self::RadiationTherapy(RadiationTherapy::new())),
            #[cfg(feature = "EducationalOccupationalProgram")] "educationaloccupationalprogram" => Some(Self::EducationalOccupationalProgram(EducationalOccupationalProgram::new())),
            #[cfg(feature = "MedicalImagingTechnique")] "medicalimagingtechnique" => Some(Self::MedicalImagingTechnique(MedicalImagingTechnique::new())),
            #[cfg(feature = "Attorney")] "attorney" => Some(Self::Attorney(Attorney::new())),
            #[cfg(feature = "BusinessAudience")] "businessaudience" => Some(Self::BusinessAudience(BusinessAudience::new())),
            #[cfg(feature = "ChildrensEvent")] "childrensevent" => Some(Self::ChildrensEvent(ChildrensEvent::new())),
            #[cfg(feature = "GenderType")] "gendertype" => Some(Self::GenderType(GenderType::new())),
            #[cfg(feature = "Quiz")] "quiz" => Some(Self::Quiz(Quiz::new())),
            #[cfg(feature = "Demand")] "demand" => Some(Self::Demand(Demand::new())),
            #[cfg(feature = "Class")] "class" => Some(Self::Class(Class::new())),
            #[cfg(feature = "Brewery")] "brewery" => Some(Self::Brewery(Brewery::new())),
            #[cfg(feature = "HealthInsurancePlan")] "healthinsuranceplan" => Some(Self::HealthInsurancePlan(HealthInsurancePlan::new())),
            #[cfg(feature = "JoinAction")] "joinaction" => Some(Self::JoinAction(JoinAction::new())),
            #[cfg(feature = "JewelryStore")] "jewelrystore" => Some(Self::JewelryStore(JewelryStore::new())),
            #[cfg(feature = "AutoBodyShop")] "autobodyshop" => Some(Self::AutoBodyShop(AutoBodyShop::new())),
            #[cfg(feature = "AmusementPark")] "amusementpark" => Some(Self::AmusementPark(AmusementPark::new())),
            #[cfg(feature = "EmployerAggregateRating")] "employeraggregaterating" => Some(Self::EmployerAggregateRating(EmployerAggregateRating::new())),
            #[cfg(feature = "SatiricalArticle")] "satiricalarticle" => Some(Self::SatiricalArticle(SatiricalArticle::new())),
            #[cfg(feature = "UserCheckins")] "usercheckins" => Some(Self::UserCheckins(UserCheckins::new())),
            #[cfg(feature = "InvestmentOrDeposit")] "investmentordeposit" => Some(Self::InvestmentOrDeposit(InvestmentOrDeposit::new())),
            #[cfg(feature = "HVACBusiness")] "hvacbusiness" => Some(Self::HVACBusiness(HVACBusiness::new())),
            #[cfg(feature = "ActionAccessSpecification")] "actionaccessspecification" => Some(Self::ActionAccessSpecification(ActionAccessSpecification::new())),
            #[cfg(feature = "UserBlocks")] "userblocks" => Some(Self::UserBlocks(UserBlocks::new())),
            #[cfg(feature = "LocalBusiness")] "localbusiness" => Some(Self::LocalBusiness(LocalBusiness::new())),
            #[cfg(feature = "TypeAndQuantityNode")] "typeandquantitynode" => Some(Self::TypeAndQuantityNode(TypeAndQuantityNode::new())),
            #[cfg(feature = "Library")] "library" => Some(Self::Library(Library::new())),
            #[cfg(feature = "CategoryCodeSet")] "categorycodeset" => Some(Self::CategoryCodeSet(CategoryCodeSet::new())),
            #[cfg(feature = "HomeAndConstructionBusiness")] "homeandconstructionbusiness" => Some(Self::HomeAndConstructionBusiness(HomeAndConstructionBusiness::new())),
            #[cfg(feature = "ParcelDelivery")] "parceldelivery" => Some(Self::ParcelDelivery(ParcelDelivery::new())),
            #[cfg(feature = "MedicalCode")] "medicalcode" => Some(Self::MedicalCode(MedicalCode::new())),
            #[cfg(feature = "ReplyAction")] "replyaction" => Some(Self::ReplyAction(ReplyAction::new())),
            #[cfg(feature = "TradeAction")] "tradeaction" => Some(Self::TradeAction(TradeAction::new())),
            #[cfg(feature = "CityHall")] "cityhall" => Some(Self::CityHall(CityHall::new())),
            #[cfg(feature = "ElementarySchool")] "elementaryschool" => Some(Self::ElementarySchool(ElementarySchool::new())),
            #[cfg(feature = "Guide")] "guide" => Some(Self::Guide(Guide::new())),
            #[cfg(feature = "NutritionInformation")] "nutritioninformation" => Some(Self::NutritionInformation(NutritionInformation::new())),
            #[cfg(feature = "CommentAction")] "commentaction" => Some(Self::CommentAction(CommentAction::new())),
            #[cfg(feature = "InfectiousDisease")] "infectiousdisease" => Some(Self::InfectiousDisease(InfectiousDisease::new())),
            #[cfg(feature = "MedicalTestPanel")] "medicaltestpanel" => Some(Self::MedicalTestPanel(MedicalTestPanel::new())),
            #[cfg(feature = "BeautySalon")] "beautysalon" => Some(Self::BeautySalon(BeautySalon::new())),
            #[cfg(feature = "DryCleaningOrLaundry")] "drycleaningorlaundry" => Some(Self::DryCleaningOrLaundry(DryCleaningOrLaundry::new())),
            #[cfg(feature = "VideoObjectSnapshot")] "videoobjectsnapshot" => Some(Self::VideoObjectSnapshot(VideoObjectSnapshot::new())),
            #[cfg(feature = "HowToTip")] "howtotip" => Some(Self::HowToTip(HowToTip::new())),
            #[cfg(feature = "SocialMediaPosting")] "socialmediaposting" => Some(Self::SocialMediaPosting(SocialMediaPosting::new())),
            #[cfg(feature = "Ligament")] "ligament" => Some(Self::Ligament(Ligament::new())),
            #[cfg(feature = "ActionStatusType")] "actionstatustype" => Some(Self::ActionStatusType(ActionStatusType::new())),
            #[cfg(feature = "IndividualProduct")] "individualproduct" => Some(Self::IndividualProduct(IndividualProduct::new())),
            #[cfg(feature = "HowToItem")] "howtoitem" => Some(Self::HowToItem(HowToItem::new())),
            #[cfg(feature = "Report")] "report" => Some(Self::Report(Report::new())),
            #[cfg(feature = "Museum")] "museum" => Some(Self::Museum(Museum::new())),
            #[cfg(feature = "ComicStory")] "comicstory" => Some(Self::ComicStory(ComicStory::new())),
            #[cfg(feature = "TrainReservation")] "trainreservation" => Some(Self::TrainReservation(TrainReservation::new())),
            #[cfg(feature = "SubwayStation")] "subwaystation" => Some(Self::SubwayStation(SubwayStation::new())),
            #[cfg(feature = "WPHeader")] "wpheader" => Some(Self::WPHeader(WPHeader::new())),
            #[cfg(feature = "EUEnergyEfficiencyEnumeration")] "euenergyefficiencyenumeration" => Some(Self::EUEnergyEfficiencyEnumeration(EUEnergyEfficiencyEnumeration::new())),
            #[cfg(feature = "Painting")] "painting" => Some(Self::Painting(Painting::new())),
            #[cfg(feature = "MedicalProcedure")] "medicalprocedure" => Some(Self::MedicalProcedure(MedicalProcedure::new())),
            #[cfg(feature = "DietarySupplement")] "dietarysupplement" => Some(Self::DietarySupplement(DietarySupplement::new())),
            #[cfg(feature = "PaymentService")] "paymentservice" => Some(Self::PaymentService(PaymentService::new())),
            #[cfg(feature = "TextDigitalDocument")] "textdigitaldocument" => Some(Self::TextDigitalDocument(TextDigitalDocument::new())),
            #[cfg(feature = "TieAction")] "tieaction" => Some(Self::TieAction(TieAction::new())),
            #[cfg(feature = "DrugPrescriptionStatus")] "drugprescriptionstatus" => Some(Self::DrugPrescriptionStatus(DrugPrescriptionStatus::new())),
            #[cfg(feature = "MediaReviewItem")] "mediareviewitem" => Some(Self::MediaReviewItem(MediaReviewItem::new())),
            #[cfg(feature = "ComputerLanguage")] "computerlanguage" => Some(Self::ComputerLanguage(ComputerLanguage::new())),
            #[cfg(feature = "Locksmith")] "locksmith" => Some(Self::Locksmith(Locksmith::new())),
            #[cfg(feature = "SearchRescueOrganization")] "searchrescueorganization" => Some(Self::SearchRescueOrganization(SearchRescueOrganization::new())),
            #[cfg(feature = "Distillery")] "distillery" => Some(Self::Distillery(Distillery::new())),
            #[cfg(feature = "EventSeries")] "eventseries" => Some(Self::EventSeries(EventSeries::new())),
            #[cfg(feature = "RadioSeries")] "radioseries" => Some(Self::RadioSeries(RadioSeries::new())),
            #[cfg(feature = "AdministrativeArea")] "administrativearea" => Some(Self::AdministrativeArea(AdministrativeArea::new())),
            #[cfg(feature = "PoliticalParty")] "politicalparty" => Some(Self::PoliticalParty(PoliticalParty::new())),
            #[cfg(feature = "BedAndBreakfast")] "bedandbreakfast" => Some(Self::BedAndBreakfast(BedAndBreakfast::new())),
            #[cfg(feature = "VacationRental")] "vacationrental" => Some(Self::VacationRental(VacationRental::new())),
            #[cfg(feature = "HotelRoom")] "hotelroom" => Some(Self::HotelRoom(HotelRoom::new())),
            #[cfg(feature = "Casino")] "casino" => Some(Self::Casino(Casino::new())),
            #[cfg(feature = "BookSeries")] "bookseries" => Some(Self::BookSeries(BookSeries::new())),
            #[cfg(feature = "MedicineSystem")] "medicinesystem" => Some(Self::MedicineSystem(MedicineSystem::new())),
            #[cfg(feature = "Airport")] "airport" => Some(Self::Airport(Airport::new())),
            #[cfg(feature = "CategoryCode")] "categorycode" => Some(Self::CategoryCode(CategoryCode::new())),
            #[cfg(feature = "Corporation")] "corporation" => Some(Self::Corporation(Corporation::new())),
            #[cfg(feature = "PreOrderAction")] "preorderaction" => Some(Self::PreOrderAction(PreOrderAction::new())),
            #[cfg(feature = "PodcastSeason")] "podcastseason" => Some(Self::PodcastSeason(PodcastSeason::new())),
            #[cfg(feature = "TrackAction")] "trackaction" => Some(Self::TrackAction(TrackAction::new())),
            #[cfg(feature = "AskAction")] "askaction" => Some(Self::AskAction(AskAction::new())),
            #[cfg(feature = "RealEstateAgent")] "realestateagent" => Some(Self::RealEstateAgent(RealEstateAgent::new())),
            #[cfg(feature = "AccountingService")] "accountingservice" => Some(Self::AccountingService(AccountingService::new())),
            #[cfg(feature = "TravelAgency")] "travelagency" => Some(Self::TravelAgency(TravelAgency::new())),
            #[cfg(feature = "Optician")] "optician" => Some(Self::Optician(Optician::new())),
            #[cfg(feature = "SiteNavigationElement")] "sitenavigationelement" => Some(Self::SiteNavigationElement(SiteNavigationElement::new())),
            #[cfg(feature = "Church")] "church" => Some(Self::Church(Church::new())),
            #[cfg(feature = "BookmarkAction")] "bookmarkaction" => Some(Self::BookmarkAction(BookmarkAction::new())),
            #[cfg(feature = "MenuItem")] "menuitem" => Some(Self::MenuItem(MenuItem::new())),
            #[cfg(feature = "InsertAction")] "insertaction" => Some(Self::InsertAction(InsertAction::new())),
            #[cfg(feature = "Pharmacy")] "pharmacy" => Some(Self::Pharmacy(Pharmacy::new())),
            #[cfg(feature = "RadioSeason")] "radioseason" => Some(Self::RadioSeason(RadioSeason::new())),
            #[cfg(feature = "SportsOrganization")] "sportsorganization" => Some(Self::SportsOrganization(SportsOrganization::new())),
            #[cfg(feature = "LegalService")] "legalservice" => Some(Self::LegalService(LegalService::new())),
            #[cfg(feature = "DigitalDocumentPermission")] "digitaldocumentpermission" => Some(Self::DigitalDocumentPermission(DigitalDocumentPermission::new())),
            #[cfg(feature = "HardwareStore")] "hardwarestore" => Some(Self::HardwareStore(HardwareStore::new())),
            #[cfg(feature = "Recipe")] "recipe" => Some(Self::Recipe(Recipe::new())),
            #[cfg(feature = "MapCategoryType")] "mapcategorytype" => Some(Self::MapCategoryType(MapCategoryType::new())),
            #[cfg(feature = "AchieveAction")] "achieveaction" => Some(Self::AchieveAction(AchieveAction::new())),
            #[cfg(feature = "PerformingGroup")] "performinggroup" => Some(Self::PerformingGroup(PerformingGroup::new())),
            #[cfg(feature = "InfectiousAgentClass")] "infectiousagentclass" => Some(Self::InfectiousAgentClass(InfectiousAgentClass::new())),
            #[cfg(feature = "Event")] "event" => Some(Self::Event(Event::new())),
            #[cfg(feature = "Room")] "room" => Some(Self::Room(Room::new())),
            #[cfg(feature = "Gene")] "gene" => Some(Self::Gene(Gene::new())),
            #[cfg(feature = "ClothingStore")] "clothingstore" => Some(Self::ClothingStore(ClothingStore::new())),
            #[cfg(feature = "VideoObject")] "videoobject" => Some(Self::VideoObject(VideoObject::new())),
            #[cfg(feature = "FinancialService")] "financialservice" => Some(Self::FinancialService(FinancialService::new())),
            #[cfg(feature = "Game")] "game" => Some(Self::Game(Game::new())),
            #[cfg(feature = "CheckoutPage")] "checkoutpage" => Some(Self::CheckoutPage(CheckoutPage::new())),
            #[cfg(feature = "TakeAction")] "takeaction" => Some(Self::TakeAction(TakeAction::new())),
            #[cfg(feature = "PathologyTest")] "pathologytest" => Some(Self::PathologyTest(PathologyTest::new())),
            #[cfg(feature = "AdultOrientedEnumeration")] "adultorientedenumeration" => Some(Self::AdultOrientedEnumeration(AdultOrientedEnumeration::new())),
            #[cfg(feature = "RecommendedDoseSchedule")] "recommendeddoseschedule" => Some(Self::RecommendedDoseSchedule(RecommendedDoseSchedule::new())),
            #[cfg(feature = "CovidTestingFacility")] "covidtestingfacility" => Some(Self::CovidTestingFacility(CovidTestingFacility::new())),
            #[cfg(feature = "SpecialAnnouncement")] "specialannouncement" => Some(Self::SpecialAnnouncement(SpecialAnnouncement::new())),
            #[cfg(feature = "Legislation")] "legislation" => Some(Self::Legislation(Legislation::new())),
            #[cfg(feature = "VideoGallery")] "videogallery" => Some(Self::VideoGallery(VideoGallery::new())),
            #[cfg(feature = "MusicComposition")] "musiccomposition" => Some(Self::MusicComposition(MusicComposition::new())),
            #[cfg(feature = "DonateAction")] "donateaction" => Some(Self::DonateAction(DonateAction::new())),
            #[cfg(feature = "ItemPage")] "itempage" => Some(Self::ItemPage(ItemPage::new())),
            #[cfg(feature = "ChildCare")] "childcare" => Some(Self::ChildCare(ChildCare::new())),
            #[cfg(feature = "ShippingRateSettings")] "shippingratesettings" => Some(Self::ShippingRateSettings(ShippingRateSettings::new())),
            #[cfg(feature = "UserInteraction")] "userinteraction" => Some(Self::UserInteraction(UserInteraction::new())),
            #[cfg(feature = "CoverArt")] "coverart" => Some(Self::CoverArt(CoverArt::new())),
            #[cfg(feature = "StatisticalPopulation")] "statisticalpopulation" => Some(Self::StatisticalPopulation(StatisticalPopulation::new())),
            #[cfg(feature = "DataDownload")] "datadownload" => Some(Self::DataDownload(DataDownload::new())),
            #[cfg(feature = "ReviewAction")] "reviewaction" => Some(Self::ReviewAction(ReviewAction::new())),
            #[cfg(feature = "Courthouse")] "courthouse" => Some(Self::Courthouse(Courthouse::new())),
            #[cfg(feature = "SheetMusic")] "sheetmusic" => Some(Self::SheetMusic(SheetMusic::new())),
            #[cfg(feature = "AmpStory")] "ampstory" => Some(Self::AmpStory(AmpStory::new())),
            #[cfg(feature = "Hackathon")] "hackathon" => Some(Self::Hackathon(Hackathon::new())),
            #[cfg(feature = "CarUsageType")] "carusagetype" => Some(Self::CarUsageType(CarUsageType::new())),
            #[cfg(feature = "LegalForceStatus")] "legalforcestatus" => Some(Self::LegalForceStatus(LegalForceStatus::new())),
            #[cfg(feature = "ReturnMethodEnumeration")] "returnmethodenumeration" => Some(Self::ReturnMethodEnumeration(ReturnMethodEnumeration::new())),
            #[cfg(feature = "ElectronicsStore")] "electronicsstore" => Some(Self::ElectronicsStore(ElectronicsStore::new())),
            #[cfg(feature = "OceanBodyOfWater")] "oceanbodyofwater" => Some(Self::OceanBodyOfWater(OceanBodyOfWater::new())),
            #[cfg(feature = "EventReservation")] "eventreservation" => Some(Self::EventReservation(EventReservation::new())),
            #[cfg(feature = "ConvenienceStore")] "conveniencestore" => Some(Self::ConvenienceStore(ConvenienceStore::new())),
            #[cfg(feature = "ScheduleAction")] "scheduleaction" => Some(Self::ScheduleAction(ScheduleAction::new())),
            #[cfg(feature = "RefundTypeEnumeration")] "refundtypeenumeration" => Some(Self::RefundTypeEnumeration(RefundTypeEnumeration::new())),
            #[cfg(feature = "ContactPointOption")] "contactpointoption" => Some(Self::ContactPointOption(ContactPointOption::new())),
            #[cfg(feature = "PresentationDigitalDocument")] "presentationdigitaldocument" => Some(Self::PresentationDigitalDocument(PresentationDigitalDocument::new())),
            #[cfg(feature = "MusicStore")] "musicstore" => Some(Self::MusicStore(MusicStore::new())),
            #[cfg(feature = "OnDemandEvent")] "ondemandevent" => Some(Self::OnDemandEvent(OnDemandEvent::new())),
            #[cfg(feature = "Poster")] "poster" => Some(Self::Poster(Poster::new())),
            #[cfg(feature = "DanceGroup")] "dancegroup" => Some(Self::DanceGroup(DanceGroup::new())),
            #[cfg(feature = "DeliveryEvent")] "deliveryevent" => Some(Self::DeliveryEvent(DeliveryEvent::new())),
            #[cfg(feature = "VideoGameClip")] "videogameclip" => Some(Self::VideoGameClip(VideoGameClip::new())),
            #[cfg(feature = "OwnershipInfo")] "ownershipinfo" => Some(Self::OwnershipInfo(OwnershipInfo::new())),
            #[cfg(feature = "BusOrCoach")] "busorcoach" => Some(Self::BusOrCoach(BusOrCoach::new())),
            #[cfg(feature = "MedicalEntity")] "medicalentity" => Some(Self::MedicalEntity(MedicalEntity::new())),
            #[cfg(feature = "EndorseAction")] "endorseaction" => Some(Self::EndorseAction(EndorseAction::new())),
            #[cfg(feature = "Photograph")] "photograph" => Some(Self::Photograph(Photograph::new())),
            #[cfg(feature = "MovieRentalStore")] "movierentalstore" => Some(Self::MovieRentalStore(MovieRentalStore::new())),
            #[cfg(feature = "SportingGoodsStore")] "sportinggoodsstore" => Some(Self::SportingGoodsStore(SportingGoodsStore::new())),
            #[cfg(feature = "EatAction")] "eataction" => Some(Self::EatAction(EatAction::new())),
            #[cfg(feature = "LegislativeBuilding")] "legislativebuilding" => Some(Self::LegislativeBuilding(LegislativeBuilding::new())),
            #[cfg(feature = "MovieClip")] "movieclip" => Some(Self::MovieClip(MovieClip::new())),
            #[cfg(feature = "UnRegisterAction")] "unregisteraction" => Some(Self::UnRegisterAction(UnRegisterAction::new())),
            #[cfg(feature = "CivicStructure")] "civicstructure" => Some(Self::CivicStructure(CivicStructure::new())),
            #[cfg(feature = "ComicCoverArt")] "comiccoverart" => Some(Self::ComicCoverArt(ComicCoverArt::new())),
            #[cfg(feature = "AutoDealer")] "autodealer" => Some(Self::AutoDealer(AutoDealer::new())),
            #[cfg(feature = "EmploymentAgency")] "employmentagency" => Some(Self::EmploymentAgency(EmploymentAgency::new())),
            #[cfg(feature = "SkiResort")] "skiresort" => Some(Self::SkiResort(SkiResort::new())),
            #[cfg(feature = "Consortium")] "consortium" => Some(Self::Consortium(Consortium::new())),
            #[cfg(feature = "HighSchool")] "highschool" => Some(Self::HighSchool(HighSchool::new())),
            #[cfg(feature = "MedicalTrialDesign")] "medicaltrialdesign" => Some(Self::MedicalTrialDesign(MedicalTrialDesign::new())),
            #[cfg(feature = "UKNonprofitType")] "uknonprofittype" => Some(Self::UKNonprofitType(UKNonprofitType::new())),
            #[cfg(feature = "Store")] "store" => Some(Self::Store(Store::new())),
            #[cfg(feature = "MedicalGuideline")] "medicalguideline" => Some(Self::MedicalGuideline(MedicalGuideline::new())),
            #[cfg(feature = "PriceSpecification")] "pricespecification" => Some(Self::PriceSpecification(PriceSpecification::new())),
            #[cfg(feature = "MedicalContraindication")] "medicalcontraindication" => Some(Self::MedicalContraindication(MedicalContraindication::new())),
            #[cfg(feature = "FollowAction")] "followaction" => Some(Self::FollowAction(FollowAction::new())),
            #[cfg(feature = "BloodTest")] "bloodtest" => Some(Self::BloodTest(BloodTest::new())),
            #[cfg(feature = "Park")] "park" => Some(Self::Park(Park::new())),
            #[cfg(feature = "TVClip")] "tvclip" => Some(Self::TVClip(TVClip::new())),
            #[cfg(feature = "OfferForLease")] "offerforlease" => Some(Self::OfferForLease(OfferForLease::new())),
            #[cfg(feature = "ImagingTest")] "imagingtest" => Some(Self::ImagingTest(ImagingTest::new())),
            #[cfg(feature = "City")] "city" => Some(Self::City(City::new())),
            #[cfg(feature = "WPSideBar")] "wpsidebar" => Some(Self::WPSideBar(WPSideBar::new())),
            #[cfg(feature = "WatchAction")] "watchaction" => Some(Self::WatchAction(WatchAction::new())),
            #[cfg(feature = "MedicalEvidenceLevel")] "medicalevidencelevel" => Some(Self::MedicalEvidenceLevel(MedicalEvidenceLevel::new())),
            #[cfg(feature = "ConfirmAction")] "confirmaction" => Some(Self::ConfirmAction(ConfirmAction::new())),
            #[cfg(feature = "BusStop")] "busstop" => Some(Self::BusStop(BusStop::new())),
            #[cfg(feature = "Quotation")] "quotation" => Some(Self::Quotation(Quotation::new())),
            #[cfg(feature = "ItemList")] "itemlist" => Some(Self::ItemList(ItemList::new())),
            #[cfg(feature = "ControlAction")] "controlaction" => Some(Self::ControlAction(ControlAction::new())),
            #[cfg(feature = "SizeGroupEnumeration")] "sizegroupenumeration" => Some(Self::SizeGroupEnumeration(SizeGroupEnumeration::new())),
            #[cfg(feature = "GeospatialGeometry")] "geospatialgeometry" => Some(Self::GeospatialGeometry(GeospatialGeometry::new())),
            #[cfg(feature = "DrinkAction")] "drinkaction" => Some(Self::DrinkAction(DrinkAction::new())),
            #[cfg(feature = "MedicalProcedureType")] "medicalproceduretype" => Some(Self::MedicalProcedureType(MedicalProcedureType::new())),
            #[cfg(feature = "ApprovedIndication")] "approvedindication" => Some(Self::ApprovedIndication(ApprovedIndication::new())),
            #[cfg(feature = "OrderStatus")] "orderstatus" => Some(Self::OrderStatus(OrderStatus::new())),
            #[cfg(feature = "Motorcycle")] "motorcycle" => Some(Self::Motorcycle(Motorcycle::new())),
            #[cfg(feature = "DiscussionForumPosting")] "discussionforumposting" => Some(Self::DiscussionForumPosting(DiscussionForumPosting::new())),
            #[cfg(feature = "UnitPriceSpecification")] "unitpricespecification" => Some(Self::UnitPriceSpecification(UnitPriceSpecification::new())),
            #[cfg(feature = "UserPlays")] "userplays" => Some(Self::UserPlays(UserPlays::new())),
            #[cfg(feature = "Action")] "action" => Some(Self::Action(Action::new())),
            #[cfg(feature = "LandmarksOrHistoricalBuildings")] "landmarksorhistoricalbuildings" => Some(Self::LandmarksOrHistoricalBuildings(LandmarksOrHistoricalBuildings::new())),
            #[cfg(feature = "HomeGoodsStore")] "homegoodsstore" => Some(Self::HomeGoodsStore(HomeGoodsStore::new())),
            #[cfg(feature = "EnergyEfficiencyEnumeration")] "energyefficiencyenumeration" => Some(Self::EnergyEfficiencyEnumeration(EnergyEfficiencyEnumeration::new())),
            #[cfg(feature = "BuyAction")] "buyaction" => Some(Self::BuyAction(BuyAction::new())),
            #[cfg(feature = "RejectAction")] "rejectaction" => Some(Self::RejectAction(RejectAction::new())),
            #[cfg(feature = "Review")] "review" => Some(Self::Review(Review::new())),
            #[cfg(feature = "HowToSupply")] "howtosupply" => Some(Self::HowToSupply(HowToSupply::new())),
            #[cfg(feature = "BroadcastService")] "broadcastservice" => Some(Self::BroadcastService(BroadcastService::new())),
            #[cfg(feature = "Conversation")] "conversation" => Some(Self::Conversation(Conversation::new())),
            #[cfg(feature = "EducationalAudience")] "educationalaudience" => Some(Self::EducationalAudience(EducationalAudience::new())),
            #[cfg(feature = "MediaManipulationRatingEnumeration")] "mediamanipulationratingenumeration" => Some(Self::MediaManipulationRatingEnumeration(MediaManipulationRatingEnumeration::new())),
            #[cfg(feature = "VitalSign")] "vitalsign" => Some(Self::VitalSign(VitalSign::new())),
            #[cfg(feature = "MedicalCondition")] "medicalcondition" => Some(Self::MedicalCondition(MedicalCondition::new())),
            #[cfg(feature = "TheaterEvent")] "theaterevent" => Some(Self::TheaterEvent(TheaterEvent::new())),
            #[cfg(feature = "AllocateAction")] "allocateaction" => Some(Self::AllocateAction(AllocateAction::new())),
            #[cfg(feature = "PriceTypeEnumeration")] "pricetypeenumeration" => Some(Self::PriceTypeEnumeration(PriceTypeEnumeration::new())),
            #[cfg(feature = "TreatmentIndication")] "treatmentindication" => Some(Self::TreatmentIndication(TreatmentIndication::new())),
            #[cfg(feature = "ReplaceAction")] "replaceaction" => Some(Self::ReplaceAction(ReplaceAction::new())),
            #[cfg(feature = "MeasurementTypeEnumeration")] "measurementtypeenumeration" => Some(Self::MeasurementTypeEnumeration(MeasurementTypeEnumeration::new())),
            #[cfg(feature = "DefenceEstablishment")] "defenceestablishment" => Some(Self::DefenceEstablishment(DefenceEstablishment::new())),
            #[cfg(feature = "MolecularEntity")] "molecularentity" => Some(Self::MolecularEntity(MolecularEntity::new())),
            #[cfg(feature = "LiteraryEvent")] "literaryevent" => Some(Self::LiteraryEvent(LiteraryEvent::new())),
            #[cfg(feature = "ComputerStore")] "computerstore" => Some(Self::ComputerStore(ComputerStore::new())),
            #[cfg(feature = "PostalAddress")] "postaladdress" => Some(Self::PostalAddress(PostalAddress::new())),
            #[cfg(feature = "ActivateAction")] "activateaction" => Some(Self::ActivateAction(ActivateAction::new())),
            #[cfg(feature = "Offer")] "offer" => Some(Self::Offer(Offer::new())),
            #[cfg(feature = "PropertyValueSpecification")] "propertyvaluespecification" => Some(Self::PropertyValueSpecification(PropertyValueSpecification::new())),
            #[cfg(feature = "Language")] "language" => Some(Self::Language(Language::new())),
            #[cfg(feature = "RentAction")] "rentaction" => Some(Self::RentAction(RentAction::new())),
            #[cfg(feature = "SearchResultsPage")] "searchresultspage" => Some(Self::SearchResultsPage(SearchResultsPage::new())),
            #[cfg(feature = "Bone")] "bone" => Some(Self::Bone(Bone::new())),
            #[cfg(feature = "Movie")] "movie" => Some(Self::Movie(Movie::new())),
            #[cfg(feature = "VisualArtwork")] "visualartwork" => Some(Self::VisualArtwork(VisualArtwork::new())),
            #[cfg(feature = "MedicalStudy")] "medicalstudy" => Some(Self::MedicalStudy(MedicalStudy::new())),
            #[cfg(feature = "TouristInformationCenter")] "touristinformationcenter" => Some(Self::TouristInformationCenter(TouristInformationCenter::new())),
            #[cfg(feature = "RsvpResponseType")] "rsvpresponsetype" => Some(Self::RsvpResponseType(RsvpResponseType::new())),
            #[cfg(feature = "Comment")] "comment" => Some(Self::Comment(Comment::new())),
            #[cfg(feature = "Series")] "series" => Some(Self::Series(Series::new())),
            #[cfg(feature = "SportsActivityLocation")] "sportsactivitylocation" => Some(Self::SportsActivityLocation(SportsActivityLocation::new())),
            #[cfg(feature = "TransferAction")] "transferaction" => Some(Self::TransferAction(TransferAction::new())),
            #[cfg(feature = "NoteDigitalDocument")] "notedigitaldocument" => Some(Self::NoteDigitalDocument(NoteDigitalDocument::new())),
            #[cfg(feature = "Specialty")] "specialty" => Some(Self::Specialty(Specialty::new())),
            #[cfg(feature = "MusicVideoObject")] "musicvideoobject" => Some(Self::MusicVideoObject(MusicVideoObject::new())),
            #[cfg(feature = "DDxElement")] "ddxelement" => Some(Self::DDxElement(DDxElement::new())),
            #[cfg(feature = "ContactPage")] "contactpage" => Some(Self::ContactPage(ContactPage::new())),
            #[cfg(feature = "Book")] "book" => Some(Self::Book(Book::new())),
            #[cfg(feature = "FoodEstablishment")] "foodestablishment" => Some(Self::FoodEstablishment(FoodEstablishment::new())),
            #[cfg(feature = "BankAccount")] "bankaccount" => Some(Self::BankAccount(BankAccount::new())),
            #[cfg(feature = "EducationalOrganization")] "educationalorganization" => Some(Self::EducationalOrganization(EducationalOrganization::new())),
            #[cfg(feature = "VisualArtsEvent")] "visualartsevent" => Some(Self::VisualArtsEvent(VisualArtsEvent::new())),
            #[cfg(feature = "PublicationVolume")] "publicationvolume" => Some(Self::PublicationVolume(PublicationVolume::new())),
            #[cfg(feature = "ShortStory")] "shortstory" => Some(Self::ShortStory(ShortStory::new())),
            #[cfg(feature = "Campground")] "campground" => Some(Self::Campground(Campground::new())),
            #[cfg(feature = "Seat")] "seat" => Some(Self::Seat(Seat::new())),
            #[cfg(feature = "HealthClub")] "healthclub" => Some(Self::HealthClub(HealthClub::new())),
            #[cfg(feature = "MotorcycleDealer")] "motorcycledealer" => Some(Self::MotorcycleDealer(MotorcycleDealer::new())),
            #[cfg(feature = "ExhibitionEvent")] "exhibitionevent" => Some(Self::ExhibitionEvent(ExhibitionEvent::new())),
            #[cfg(feature = "Organization")] "organization" => Some(Self::Organization(Organization::new())),
            #[cfg(feature = "TrainTrip")] "traintrip" => Some(Self::TrainTrip(TrainTrip::new())),
            #[cfg(feature = "RestrictedDiet")] "restricteddiet" => Some(Self::RestrictedDiet(RestrictedDiet::new())),
            #[cfg(feature = "HealthPlanNetwork")] "healthplannetwork" => Some(Self::HealthPlanNetwork(HealthPlanNetwork::new())),
            #[cfg(feature = "NewsMediaOrganization")] "newsmediaorganization" => Some(Self::NewsMediaOrganization(NewsMediaOrganization::new())),
            #[cfg(feature = "Course")] "course" => Some(Self::Course(Course::new())),
            #[cfg(feature = "RegisterAction")] "registeraction" => Some(Self::RegisterAction(RegisterAction::new())),
            #[cfg(feature = "MedicalGuidelineRecommendation")] "medicalguidelinerecommendation" => Some(Self::MedicalGuidelineRecommendation(MedicalGuidelineRecommendation::new())),
            #[cfg(feature = "DaySpa")] "dayspa" => Some(Self::DaySpa(DaySpa::new())),
            #[cfg(feature = "GovernmentPermit")] "governmentpermit" => Some(Self::GovernmentPermit(GovernmentPermit::new())),
            #[cfg(feature = "PronounceableText")] "pronounceabletext" => Some(Self::PronounceableText(PronounceableText::new())),
            #[cfg(feature = "Beach")] "beach" => Some(Self::Beach(Beach::new())),
            #[cfg(feature = "PriceComponentTypeEnumeration")] "pricecomponenttypeenumeration" => Some(Self::PriceComponentTypeEnumeration(PriceComponentTypeEnumeration::new())),
            #[cfg(feature = "OfferShippingDetails")] "offershippingdetails" => Some(Self::OfferShippingDetails(OfferShippingDetails::new())),
            #[cfg(feature = "Aquarium")] "aquarium" => Some(Self::Aquarium(Aquarium::new())),
            #[cfg(feature = "ArchiveComponent")] "archivecomponent" => Some(Self::ArchiveComponent(ArchiveComponent::new())),
            #[cfg(feature = "CompoundPriceSpecification")] "compoundpricespecification" => Some(Self::CompoundPriceSpecification(CompoundPriceSpecification::new())),
            #[cfg(feature = "Embassy")] "embassy" => Some(Self::Embassy(Embassy::new())),
            #[cfg(feature = "MaximumDoseSchedule")] "maximumdoseschedule" => Some(Self::MaximumDoseSchedule(MaximumDoseSchedule::new())),
            #[cfg(feature = "HowToDirection")] "howtodirection" => Some(Self::HowToDirection(HowToDirection::new())),
            #[cfg(feature = "PsychologicalTreatment")] "psychologicaltreatment" => Some(Self::PsychologicalTreatment(PsychologicalTreatment::new())),
            #[cfg(feature = "MedicalBusiness")] "medicalbusiness" => Some(Self::MedicalBusiness(MedicalBusiness::new())),
            #[cfg(feature = "SoftwareSourceCode")] "softwaresourcecode" => Some(Self::SoftwareSourceCode(SoftwareSourceCode::new())),
            #[cfg(feature = "PaymentChargeSpecification")] "paymentchargespecification" => Some(Self::PaymentChargeSpecification(PaymentChargeSpecification::new())),
            #[cfg(feature = "DrugCostCategory")] "drugcostcategory" => Some(Self::DrugCostCategory(DrugCostCategory::new())),
            #[cfg(feature = "Table")] "table" => Some(Self::Table(Table::new())),
            #[cfg(feature = "GovernmentOrganization")] "governmentorganization" => Some(Self::GovernmentOrganization(GovernmentOrganization::new())),
            #[cfg(feature = "FilmAction")] "filmaction" => Some(Self::FilmAction(FilmAction::new())),
            #[cfg(feature = "WriteAction")] "writeaction" => Some(Self::WriteAction(WriteAction::new())),
            #[cfg(feature = "MedicalSymptom")] "medicalsymptom" => Some(Self::MedicalSymptom(MedicalSymptom::new())),
            #[cfg(feature = "InternetCafe")] "internetcafe" => Some(Self::InternetCafe(InternetCafe::new())),
            #[cfg(feature = "VirtualLocation")] "virtuallocation" => Some(Self::VirtualLocation(VirtualLocation::new())),
            #[cfg(feature = "AnatomicalStructure")] "anatomicalstructure" => Some(Self::AnatomicalStructure(AnatomicalStructure::new())),
            #[cfg(feature = "QualitativeValue")] "qualitativevalue" => Some(Self::QualitativeValue(QualitativeValue::new())),
            #[cfg(feature = "DiscoverAction")] "discoveraction" => Some(Self::DiscoverAction(DiscoverAction::new())),
            #[cfg(feature = "OccupationalTherapy")] "occupationaltherapy" => Some(Self::OccupationalTherapy(OccupationalTherapy::new())),
            #[cfg(feature = "DownloadAction")] "downloadaction" => Some(Self::DownloadAction(DownloadAction::new())),
            #[cfg(feature = "AnalysisNewsArticle")] "analysisnewsarticle" => Some(Self::AnalysisNewsArticle(AnalysisNewsArticle::new())),
            #[cfg(feature = "VideoGame")] "videogame" => Some(Self::VideoGame(VideoGame::new())),
            #[cfg(feature = "MeetingRoom")] "meetingroom" => Some(Self::MeetingRoom(MeetingRoom::new())),
            #[cfg(feature = "RoofingContractor")] "roofingcontractor" => Some(Self::RoofingContractor(RoofingContractor::new())),
            #[cfg(feature = "DefinedTermSet")] "definedtermset" => Some(Self::DefinedTermSet(DefinedTermSet::new())),
            #[cfg(feature = "HowTo")] "howto" => Some(Self::HowTo(HowTo::new())),
            #[cfg(feature = "ComicIssue")] "comicissue" => Some(Self::ComicIssue(ComicIssue::new())),
            #[cfg(feature = "Vehicle")] "vehicle" => Some(Self::Vehicle(Vehicle::new())),
            #[cfg(feature = "ExerciseAction")] "exerciseaction" => Some(Self::ExerciseAction(ExerciseAction::new())),
            #[cfg(feature = "GiveAction")] "giveaction" => Some(Self::GiveAction(GiveAction::new())),
            #[cfg(feature = "Synagogue")] "synagogue" => Some(Self::Synagogue(Synagogue::new())),
            #[cfg(feature = "HowToStep")] "howtostep" => Some(Self::HowToStep(HowToStep::new())),
            #[cfg(feature = "ItemAvailability")] "itemavailability" => Some(Self::ItemAvailability(ItemAvailability::new())),
            #[cfg(feature = "GovernmentBuilding")] "governmentbuilding" => Some(Self::GovernmentBuilding(GovernmentBuilding::new())),
            #[cfg(feature = "Play")] "play" => Some(Self::Play(Play::new())),
            #[cfg(feature = "Suite")] "suite" => Some(Self::Suite(Suite::new())),
            #[cfg(feature = "SomeProducts")] "someproducts" => Some(Self::SomeProducts(SomeProducts::new())),
            #[cfg(feature = "DrugLegalStatus")] "druglegalstatus" => Some(Self::DrugLegalStatus(DrugLegalStatus::new())),
            #[cfg(feature = "USNonprofitType")] "usnonprofittype" => Some(Self::USNonprofitType(USNonprofitType::new())),
            #[cfg(feature = "TheaterGroup")] "theatergroup" => Some(Self::TheaterGroup(TheaterGroup::new())),
            #[cfg(feature = "Apartment")] "apartment" => Some(Self::Apartment(Apartment::new())),
            #[cfg(feature = "HealthAspectEnumeration")] "healthaspectenumeration" => Some(Self::HealthAspectEnumeration(HealthAspectEnumeration::new())),
            #[cfg(feature = "MedicalObservationalStudy")] "medicalobservationalstudy" => Some(Self::MedicalObservationalStudy(MedicalObservationalStudy::new())),
            #[cfg(feature = "Hostel")] "hostel" => Some(Self::Hostel(Hostel::new())),
            #[cfg(feature = "Invoice")] "invoice" => Some(Self::Invoice(Invoice::new())),
            #[cfg(feature = "SolveMathAction")] "solvemathaction" => Some(Self::SolveMathAction(SolveMathAction::new())),
            #[cfg(feature = "Trip")] "trip" => Some(Self::Trip(Trip::new())),
            #[cfg(feature = "OrganizeAction")] "organizeaction" => Some(Self::OrganizeAction(OrganizeAction::new())),
            #[cfg(feature = "MensClothingStore")] "mensclothingstore" => Some(Self::MensClothingStore(MensClothingStore::new())),
            #[cfg(feature = "PawnShop")] "pawnshop" => Some(Self::PawnShop(PawnShop::new())),
            #[cfg(feature = "GeoCoordinates")] "geocoordinates" => Some(Self::GeoCoordinates(GeoCoordinates::new())),
            #[cfg(feature = "Airline")] "airline" => Some(Self::Airline(Airline::new())),
            #[cfg(feature = "RadioChannel")] "radiochannel" => Some(Self::RadioChannel(RadioChannel::new())),
            #[cfg(feature = "Syllabus")] "syllabus" => Some(Self::Syllabus(Syllabus::new())),
            #[cfg(feature = "WinAction")] "winaction" => Some(Self::WinAction(WinAction::new())),
            #[cfg(feature = "Prion")] "prion" => Some(Self::Prion(Prion::new())),
            #[cfg(feature = "Hotel")] "hotel" => Some(Self::Hotel(Hotel::new())),
            #[cfg(feature = "Answer")] "answer" => Some(Self::Answer(Answer::new())),
            #[cfg(feature = "MedicalRiskFactor")] "medicalriskfactor" => Some(Self::MedicalRiskFactor(MedicalRiskFactor::new())),
            #[cfg(feature = "WebContent")] "webcontent" => Some(Self::WebContent(WebContent::new())),
            #[cfg(feature = "BarOrPub")] "barorpub" => Some(Self::BarOrPub(BarOrPub::new())),
            #[cfg(feature = "OutletStore")] "outletstore" => Some(Self::OutletStore(OutletStore::new())),
            #[cfg(feature = "Periodical")] "periodical" => Some(Self::Periodical(Periodical::new())),
            #[cfg(feature = "PerformingArtsTheater")] "performingartstheater" => Some(Self::PerformingArtsTheater(PerformingArtsTheater::new())),
            #[cfg(feature = "Hospital")] "hospital" => Some(Self::Hospital(Hospital::new())),
            #[cfg(feature = "State")] "state" => Some(Self::State(State::new())),
            #[cfg(feature = "Schedule")] "schedule" => Some(Self::Schedule(Schedule::new())),
            #[cfg(feature = "ServiceChannel")] "servicechannel" => Some(Self::ServiceChannel(ServiceChannel::new())),
            #[cfg(feature = "OrganizationRole")] "organizationrole" => Some(Self::OrganizationRole(OrganizationRole::new())),
            #[cfg(feature = "Reservation")] "reservation" => Some(Self::Reservation(Reservation::new())),
            #[cfg(feature = "DrawAction")] "drawaction" => Some(Self::DrawAction(DrawAction::new())),
            #[cfg(feature = "Person")] "person" => Some(Self::Person(Person::new())),
            #[cfg(feature = "GeneralContractor")] "generalcontractor" => Some(Self::GeneralContractor(GeneralContractor::new())),
            #[cfg(feature = "Nerve")] "nerve" => Some(Self::Nerve(Nerve::new())),
            #[cfg(feature = "Volcano")] "volcano" => Some(Self::Volcano(Volcano::new())),
            #[cfg(feature = "Reservoir")] "reservoir" => Some(Self::Reservoir(Reservoir::new())),
            #[cfg(feature = "CollectionPage")] "collectionpage" => Some(Self::CollectionPage(CollectionPage::new())),
            #[cfg(feature = "Question")] "question" => Some(Self::Question(Question::new())),
            #[cfg(feature = "WPAdBlock")] "wpadblock" => Some(Self::WPAdBlock(WPAdBlock::new())),
            #[cfg(feature = "TechArticle")] "techarticle" => Some(Self::TechArticle(TechArticle::new())),
            #[cfg(feature = "Mosque")] "mosque" => Some(Self::Mosque(Mosque::new())),
            #[cfg(feature = "GasStation")] "gasstation" => Some(Self::GasStation(GasStation::new())),
            #[cfg(feature = "SportsClub")] "sportsclub" => Some(Self::SportsClub(SportsClub::new())),
            #[cfg(feature = "UserPlusOnes")] "userplusones" => Some(Self::UserPlusOnes(UserPlusOnes::new())),
            #[cfg(feature = "DrugClass")] "drugclass" => Some(Self::DrugClass(DrugClass::new())),
            #[cfg(feature = "QAPage")] "qapage" => Some(Self::QAPage(QAPage::new())),
            #[cfg(feature = "EventAttendanceModeEnumeration")] "eventattendancemodeenumeration" => Some(Self::EventAttendanceModeEnumeration(EventAttendanceModeEnumeration::new())),
            #[cfg(feature = "InvestmentFund")] "investmentfund" => Some(Self::InvestmentFund(InvestmentFund::new())),
            #[cfg(feature = "MusicVenue")] "musicvenue" => Some(Self::MusicVenue(MusicVenue::new())),
            _ => None,
        }
    }

    pub fn from_ty(ty: &str) -> Option<Self> {
        Self::from_lc_ty(&ty.to_lowercase())
    }

    /// Get the name of the type.
    pub fn lc_ty(&self) -> String {
        match self {
            #[cfg(feature = "PublicToilet")] Self::PublicToilet(_) => String::from("publictoilet"),
            #[cfg(feature = "MedicalAudienceType")] Self::MedicalAudienceType(_) => String::from("medicalaudiencetype"),
            #[cfg(feature = "GeoShape")] Self::GeoShape(_) => String::from("geoshape"),
            #[cfg(feature = "Diet")] Self::Diet(_) => String::from("diet"),
            #[cfg(feature = "Permit")] Self::Permit(_) => String::from("permit"),
            #[cfg(feature = "FlightReservation")] Self::FlightReservation(_) => String::from("flightreservation"),
            #[cfg(feature = "OpeningHoursSpecification")] Self::OpeningHoursSpecification(_) => String::from("openinghoursspecification"),
            #[cfg(feature = "MedicalWebPage")] Self::MedicalWebPage(_) => String::from("medicalwebpage"),
            #[cfg(feature = "ReviewNewsArticle")] Self::ReviewNewsArticle(_) => String::from("reviewnewsarticle"),
            #[cfg(feature = "Quantity")] Self::Quantity(_) => String::from("quantity"),
            #[cfg(feature = "PhysicalActivity")] Self::PhysicalActivity(_) => String::from("physicalactivity"),
            #[cfg(feature = "ParentAudience")] Self::ParentAudience(_) => String::from("parentaudience"),
            #[cfg(feature = "DatedMoneySpecification")] Self::DatedMoneySpecification(_) => String::from("datedmoneyspecification"),
            #[cfg(feature = "BefriendAction")] Self::BefriendAction(_) => String::from("befriendaction"),
            #[cfg(feature = "Physician")] Self::Physician(_) => String::from("physician"),
            #[cfg(feature = "SendAction")] Self::SendAction(_) => String::from("sendaction"),
            #[cfg(feature = "HyperToc")] Self::HyperToc(_) => String::from("hypertoc"),
            #[cfg(feature = "MenuSection")] Self::MenuSection(_) => String::from("menusection"),
            #[cfg(feature = "Substance")] Self::Substance(_) => String::from("substance"),
            #[cfg(feature = "Ticket")] Self::Ticket(_) => String::from("ticket"),
            #[cfg(feature = "PostOffice")] Self::PostOffice(_) => String::from("postoffice"),
            #[cfg(feature = "Cemetery")] Self::Cemetery(_) => String::from("cemetery"),
            #[cfg(feature = "Waterfall")] Self::Waterfall(_) => String::from("waterfall"),
            #[cfg(feature = "Resort")] Self::Resort(_) => String::from("resort"),
            #[cfg(feature = "ArtGallery")] Self::ArtGallery(_) => String::from("artgallery"),
            #[cfg(feature = "Muscle")] Self::Muscle(_) => String::from("muscle"),
            #[cfg(feature = "PhotographAction")] Self::PhotographAction(_) => String::from("photographaction"),
            #[cfg(feature = "Map")] Self::Map(_) => String::from("map"),
            #[cfg(feature = "Order")] Self::Order(_) => String::from("order"),
            #[cfg(feature = "PaintAction")] Self::PaintAction(_) => String::from("paintaction"),
            #[cfg(feature = "Code")] Self::Code(_) => String::from("code"),
            #[cfg(feature = "ResearchProject")] Self::ResearchProject(_) => String::from("researchproject"),
            #[cfg(feature = "EndorsementRating")] Self::EndorsementRating(_) => String::from("endorsementrating"),
            #[cfg(feature = "ExerciseGym")] Self::ExerciseGym(_) => String::from("exercisegym"),
            #[cfg(feature = "TouristTrip")] Self::TouristTrip(_) => String::from("touristtrip"),
            #[cfg(feature = "NGO")] Self::NGO(_) => String::from("ngo"),
            #[cfg(feature = "Bacteria")] Self::Bacteria(_) => String::from("bacteria"),
            #[cfg(feature = "AcceptAction")] Self::AcceptAction(_) => String::from("acceptaction"),
            #[cfg(feature = "ShoeStore")] Self::ShoeStore(_) => String::from("shoestore"),
            #[cfg(feature = "MusicAlbumReleaseType")] Self::MusicAlbumReleaseType(_) => String::from("musicalbumreleasetype"),
            #[cfg(feature = "DrugPregnancyCategory")] Self::DrugPregnancyCategory(_) => String::from("drugpregnancycategory"),
            #[cfg(feature = "SizeSpecification")] Self::SizeSpecification(_) => String::from("sizespecification"),
            #[cfg(feature = "Vessel")] Self::Vessel(_) => String::from("vessel"),
            #[cfg(feature = "Drug")] Self::Drug(_) => String::from("drug"),
            #[cfg(feature = "Atlas")] Self::Atlas(_) => String::from("atlas"),
            #[cfg(feature = "ScreeningEvent")] Self::ScreeningEvent(_) => String::from("screeningevent"),
            #[cfg(feature = "OrderItem")] Self::OrderItem(_) => String::from("orderitem"),
            #[cfg(feature = "Car")] Self::Car(_) => String::from("car"),
            #[cfg(feature = "SuspendAction")] Self::SuspendAction(_) => String::from("suspendaction"),
            #[cfg(feature = "ListenAction")] Self::ListenAction(_) => String::from("listenaction"),
            #[cfg(feature = "Barcode")] Self::Barcode(_) => String::from("barcode"),
            #[cfg(feature = "Mass")] Self::Mass(_) => String::from("mass"),
            #[cfg(feature = "NonprofitType")] Self::NonprofitType(_) => String::from("nonprofittype"),
            #[cfg(feature = "SoftwareApplication")] Self::SoftwareApplication(_) => String::from("softwareapplication"),
            #[cfg(feature = "AutoWash")] Self::AutoWash(_) => String::from("autowash"),
            #[cfg(feature = "MathSolver")] Self::MathSolver(_) => String::from("mathsolver"),
            #[cfg(feature = "DigitalDocument")] Self::DigitalDocument(_) => String::from("digitaldocument"),
            #[cfg(feature = "PublicationEvent")] Self::PublicationEvent(_) => String::from("publicationevent"),
            #[cfg(feature = "Country")] Self::Country(_) => String::from("country"),
            #[cfg(feature = "TaxiStand")] Self::TaxiStand(_) => String::from("taxistand"),
            #[cfg(feature = "AboutPage")] Self::AboutPage(_) => String::from("aboutpage"),
            #[cfg(feature = "SeaBodyOfWater")] Self::SeaBodyOfWater(_) => String::from("seabodyofwater"),
            #[cfg(feature = "MedicalStudyStatus")] Self::MedicalStudyStatus(_) => String::from("medicalstudystatus"),
            #[cfg(feature = "CreativeWorkSeries")] Self::CreativeWorkSeries(_) => String::from("creativeworkseries"),
            #[cfg(feature = "Researcher")] Self::Researcher(_) => String::from("researcher"),
            #[cfg(feature = "ReturnAction")] Self::ReturnAction(_) => String::from("returnaction"),
            #[cfg(feature = "CommunicateAction")] Self::CommunicateAction(_) => String::from("communicateaction"),
            #[cfg(feature = "IceCreamShop")] Self::IceCreamShop(_) => String::from("icecreamshop"),
            #[cfg(feature = "FundingAgency")] Self::FundingAgency(_) => String::from("fundingagency"),
            #[cfg(feature = "EmployeeRole")] Self::EmployeeRole(_) => String::from("employeerole"),
            #[cfg(feature = "BankOrCreditUnion")] Self::BankOrCreditUnion(_) => String::from("bankorcreditunion"),
            #[cfg(feature = "TravelAction")] Self::TravelAction(_) => String::from("travelaction"),
            #[cfg(feature = "DataType")] Self::DataType(_) => String::from("datatype"),
            #[cfg(feature = "MedicalConditionStage")] Self::MedicalConditionStage(_) => String::from("medicalconditionstage"),
            #[cfg(feature = "ComicSeries")] Self::ComicSeries(_) => String::from("comicseries"),
            #[cfg(feature = "BuddhistTemple")] Self::BuddhistTemple(_) => String::from("buddhisttemple"),
            #[cfg(feature = "BookFormatType")] Self::BookFormatType(_) => String::from("bookformattype"),
            #[cfg(feature = "Chapter")] Self::Chapter(_) => String::from("chapter"),
            #[cfg(feature = "TelevisionStation")] Self::TelevisionStation(_) => String::from("televisionstation"),
            #[cfg(feature = "BoatTrip")] Self::BoatTrip(_) => String::from("boattrip"),
            #[cfg(feature = "HyperTocEntry")] Self::HyperTocEntry(_) => String::from("hypertocentry"),
            #[cfg(feature = "Festival")] Self::Festival(_) => String::from("festival"),
            #[cfg(feature = "Intangible")] Self::Intangible(_) => String::from("intangible"),
            #[cfg(feature = "RadioEpisode")] Self::RadioEpisode(_) => String::from("radioepisode"),
            #[cfg(feature = "ReactAction")] Self::ReactAction(_) => String::from("reactaction"),
            #[cfg(feature = "OrderAction")] Self::OrderAction(_) => String::from("orderaction"),
            #[cfg(feature = "PaymentMethod")] Self::PaymentMethod(_) => String::from("paymentmethod"),
            #[cfg(feature = "ProductGroup")] Self::ProductGroup(_) => String::from("productgroup"),
            #[cfg(feature = "MediaObject")] Self::MediaObject(_) => String::from("mediaobject"),
            #[cfg(feature = "AlignmentObject")] Self::AlignmentObject(_) => String::from("alignmentobject"),
            #[cfg(feature = "TelevisionChannel")] Self::TelevisionChannel(_) => String::from("televisionchannel"),
            #[cfg(feature = "MedicalRiskScore")] Self::MedicalRiskScore(_) => String::from("medicalriskscore"),
            #[cfg(feature = "ListItem")] Self::ListItem(_) => String::from("listitem"),
            #[cfg(feature = "ApplyAction")] Self::ApplyAction(_) => String::from("applyaction"),
            #[cfg(feature = "AdultEntertainment")] Self::AdultEntertainment(_) => String::from("adultentertainment"),
            #[cfg(feature = "OfferForPurchase")] Self::OfferForPurchase(_) => String::from("offerforpurchase"),
            #[cfg(feature = "MusicAlbum")] Self::MusicAlbum(_) => String::from("musicalbum"),
            #[cfg(feature = "MedicalEnumeration")] Self::MedicalEnumeration(_) => String::from("medicalenumeration"),
            #[cfg(feature = "MediaGallery")] Self::MediaGallery(_) => String::from("mediagallery"),
            #[cfg(feature = "CriticReview")] Self::CriticReview(_) => String::from("criticreview"),
            #[cfg(feature = "ContactPoint")] Self::ContactPoint(_) => String::from("contactpoint"),
            #[cfg(feature = "PlayAction")] Self::PlayAction(_) => String::from("playaction"),
            #[cfg(feature = "CollegeOrUniversity")] Self::CollegeOrUniversity(_) => String::from("collegeoruniversity"),
            #[cfg(feature = "RadioClip")] Self::RadioClip(_) => String::from("radioclip"),
            #[cfg(feature = "MedicalCause")] Self::MedicalCause(_) => String::from("medicalcause"),
            #[cfg(feature = "GameServer")] Self::GameServer(_) => String::from("gameserver"),
            #[cfg(feature = "PlayGameAction")] Self::PlayGameAction(_) => String::from("playgameaction"),
            #[cfg(feature = "PostalCodeRangeSpecification")] Self::PostalCodeRangeSpecification(_) => String::from("postalcoderangespecification"),
            #[cfg(feature = "ReservationStatusType")] Self::ReservationStatusType(_) => String::from("reservationstatustype"),
            #[cfg(feature = "ReportedDoseSchedule")] Self::ReportedDoseSchedule(_) => String::from("reporteddoseschedule"),
            #[cfg(feature = "RepaymentSpecification")] Self::RepaymentSpecification(_) => String::from("repaymentspecification"),
            #[cfg(feature = "StadiumOrArena")] Self::StadiumOrArena(_) => String::from("stadiumorarena"),
            #[cfg(feature = "Artery")] Self::Artery(_) => String::from("artery"),
            #[cfg(feature = "PlanAction")] Self::PlanAction(_) => String::from("planaction"),
            #[cfg(feature = "CatholicChurch")] Self::CatholicChurch(_) => String::from("catholicchurch"),
            #[cfg(feature = "Newspaper")] Self::Newspaper(_) => String::from("newspaper"),
            #[cfg(feature = "EducationalOccupationalCredential")] Self::EducationalOccupationalCredential(_) => String::from("educationaloccupationalcredential"),
            #[cfg(feature = "JobPosting")] Self::JobPosting(_) => String::from("jobposting"),
            #[cfg(feature = "MedicalOrganization")] Self::MedicalOrganization(_) => String::from("medicalorganization"),
            #[cfg(feature = "PrependAction")] Self::PrependAction(_) => String::from("prependaction"),
            #[cfg(feature = "BedDetails")] Self::BedDetails(_) => String::from("beddetails"),
            #[cfg(feature = "RentalCarReservation")] Self::RentalCarReservation(_) => String::from("rentalcarreservation"),
            #[cfg(feature = "UserDownloads")] Self::UserDownloads(_) => String::from("userdownloads"),
            #[cfg(feature = "AutoRepair")] Self::AutoRepair(_) => String::from("autorepair"),
            #[cfg(feature = "LegislationObject")] Self::LegislationObject(_) => String::from("legislationobject"),
            #[cfg(feature = "BodyMeasurementTypeEnumeration")] Self::BodyMeasurementTypeEnumeration(_) => String::from("bodymeasurementtypeenumeration"),
            #[cfg(feature = "DeliveryTimeSettings")] Self::DeliveryTimeSettings(_) => String::from("deliverytimesettings"),
            #[cfg(feature = "ApartmentComplex")] Self::ApartmentComplex(_) => String::from("apartmentcomplex"),
            #[cfg(feature = "ImageObjectSnapshot")] Self::ImageObjectSnapshot(_) => String::from("imageobjectsnapshot"),
            #[cfg(feature = "SuperficialAnatomy")] Self::SuperficialAnatomy(_) => String::from("superficialanatomy"),
            #[cfg(feature = "MedicalSign")] Self::MedicalSign(_) => String::from("medicalsign"),
            #[cfg(feature = "WPFooter")] Self::WPFooter(_) => String::from("wpfooter"),
            #[cfg(feature = "BusReservation")] Self::BusReservation(_) => String::from("busreservation"),
            #[cfg(feature = "EnergyStarEnergyEfficiencyEnumeration")] Self::EnergyStarEnergyEfficiencyEnumeration(_) => String::from("energystarenergyefficiencyenumeration"),
            #[cfg(feature = "Audiobook")] Self::Audiobook(_) => String::from("audiobook"),
            #[cfg(feature = "Mountain")] Self::Mountain(_) => String::from("mountain"),
            #[cfg(feature = "Winery")] Self::Winery(_) => String::from("winery"),
            #[cfg(feature = "LiquorStore")] Self::LiquorStore(_) => String::from("liquorstore"),
            #[cfg(feature = "ReserveAction")] Self::ReserveAction(_) => String::from("reserveaction"),
            #[cfg(feature = "AggregateOffer")] Self::AggregateOffer(_) => String::from("aggregateoffer"),
            #[cfg(feature = "OpinionNewsArticle")] Self::OpinionNewsArticle(_) => String::from("opinionnewsarticle"),
            #[cfg(feature = "UpdateAction")] Self::UpdateAction(_) => String::from("updateaction"),
            #[cfg(feature = "Blog")] Self::Blog(_) => String::from("blog"),
            #[cfg(feature = "AudioObject")] Self::AudioObject(_) => String::from("audioobject"),
            #[cfg(feature = "Statement")] Self::Statement(_) => String::from("statement"),
            #[cfg(feature = "UseAction")] Self::UseAction(_) => String::from("useaction"),
            #[cfg(feature = "LoanOrCredit")] Self::LoanOrCredit(_) => String::from("loanorcredit"),
            #[cfg(feature = "MedicalSpecialty")] Self::MedicalSpecialty(_) => String::from("medicalspecialty"),
            #[cfg(feature = "ProfessionalService")] Self::ProfessionalService(_) => String::from("professionalservice"),
            #[cfg(feature = "LikeAction")] Self::LikeAction(_) => String::from("likeaction"),
            #[cfg(feature = "RealEstateListing")] Self::RealEstateListing(_) => String::from("realestatelisting"),
            #[cfg(feature = "EntertainmentBusiness")] Self::EntertainmentBusiness(_) => String::from("entertainmentbusiness"),
            #[cfg(feature = "ShareAction")] Self::ShareAction(_) => String::from("shareaction"),
            #[cfg(feature = "School")] Self::School(_) => String::from("school"),
            #[cfg(feature = "BackgroundNewsArticle")] Self::BackgroundNewsArticle(_) => String::from("backgroundnewsarticle"),
            #[cfg(feature = "Bakery")] Self::Bakery(_) => String::from("bakery"),
            #[cfg(feature = "MobileApplication")] Self::MobileApplication(_) => String::from("mobileapplication"),
            #[cfg(feature = "MedicalDevice")] Self::MedicalDevice(_) => String::from("medicaldevice"),
            #[cfg(feature = "BusTrip")] Self::BusTrip(_) => String::from("bustrip"),
            #[cfg(feature = "Collection")] Self::Collection(_) => String::from("collection"),
            #[cfg(feature = "MonetaryGrant")] Self::MonetaryGrant(_) => String::from("monetarygrant"),
            #[cfg(feature = "SizeSystemEnumeration")] Self::SizeSystemEnumeration(_) => String::from("sizesystemenumeration"),
            #[cfg(feature = "UserReview")] Self::UserReview(_) => String::from("userreview"),
            #[cfg(feature = "PayAction")] Self::PayAction(_) => String::from("payaction"),
            #[cfg(feature = "NewsArticle")] Self::NewsArticle(_) => String::from("newsarticle"),
            #[cfg(feature = "DigitalPlatformEnumeration")] Self::DigitalPlatformEnumeration(_) => String::from("digitalplatformenumeration"),
            #[cfg(feature = "Motel")] Self::Motel(_) => String::from("motel"),
            #[cfg(feature = "InsuranceAgency")] Self::InsuranceAgency(_) => String::from("insuranceagency"),
            #[cfg(feature = "BedType")] Self::BedType(_) => String::from("bedtype"),
            #[cfg(feature = "PaymentCard")] Self::PaymentCard(_) => String::from("paymentcard"),
            #[cfg(feature = "Patient")] Self::Patient(_) => String::from("patient"),
            #[cfg(feature = "MortgageLoan")] Self::MortgageLoan(_) => String::from("mortgageloan"),
            #[cfg(feature = "MulticellularParasite")] Self::MulticellularParasite(_) => String::from("multicellularparasite"),
            #[cfg(feature = "RadioStation")] Self::RadioStation(_) => String::from("radiostation"),
            #[cfg(feature = "FAQPage")] Self::FAQPage(_) => String::from("faqpage"),
            #[cfg(feature = "Place")] Self::Place(_) => String::from("place"),
            #[cfg(feature = "DanceEvent")] Self::DanceEvent(_) => String::from("danceevent"),
            #[cfg(feature = "NightClub")] Self::NightClub(_) => String::from("nightclub"),
            #[cfg(feature = "HowToSection")] Self::HowToSection(_) => String::from("howtosection"),
            #[cfg(feature = "FinancialProduct")] Self::FinancialProduct(_) => String::from("financialproduct"),
            #[cfg(feature = "MerchantReturnEnumeration")] Self::MerchantReturnEnumeration(_) => String::from("merchantreturnenumeration"),
            #[cfg(feature = "EmergencyService")] Self::EmergencyService(_) => String::from("emergencyservice"),
            #[cfg(feature = "LoseAction")] Self::LoseAction(_) => String::from("loseaction"),
            #[cfg(feature = "ConstraintNode")] Self::ConstraintNode(_) => String::from("constraintnode"),
            #[cfg(feature = "Notary")] Self::Notary(_) => String::from("notary"),
            #[cfg(feature = "Audience")] Self::Audience(_) => String::from("audience"),
            #[cfg(feature = "RiverBodyOfWater")] Self::RiverBodyOfWater(_) => String::from("riverbodyofwater"),
            #[cfg(feature = "QuantitativeValueDistribution")] Self::QuantitativeValueDistribution(_) => String::from("quantitativevaluedistribution"),
            #[cfg(feature = "DepartAction")] Self::DepartAction(_) => String::from("departaction"),
            #[cfg(feature = "MobilePhoneStore")] Self::MobilePhoneStore(_) => String::from("mobilephonestore"),
            #[cfg(feature = "AutoPartsStore")] Self::AutoPartsStore(_) => String::from("autopartsstore"),
            #[cfg(feature = "UserPageVisits")] Self::UserPageVisits(_) => String::from("userpagevisits"),
            #[cfg(feature = "Sculpture")] Self::Sculpture(_) => String::from("sculpture"),
            #[cfg(feature = "Recommendation")] Self::Recommendation(_) => String::from("recommendation"),
            #[cfg(feature = "FastFoodRestaurant")] Self::FastFoodRestaurant(_) => String::from("fastfoodrestaurant"),
            #[cfg(feature = "MiddleSchool")] Self::MiddleSchool(_) => String::from("middleschool"),
            #[cfg(feature = "GamePlayMode")] Self::GamePlayMode(_) => String::from("gameplaymode"),
            #[cfg(feature = "DataFeedItem")] Self::DataFeedItem(_) => String::from("datafeeditem"),
            #[cfg(feature = "RecyclingCenter")] Self::RecyclingCenter(_) => String::from("recyclingcenter"),
            #[cfg(feature = "Claim")] Self::Claim(_) => String::from("claim"),
            #[cfg(feature = "BusinessEvent")] Self::BusinessEvent(_) => String::from("businessevent"),
            #[cfg(feature = "AskPublicNewsArticle")] Self::AskPublicNewsArticle(_) => String::from("askpublicnewsarticle"),
            #[cfg(feature = "HealthTopicContent")] Self::HealthTopicContent(_) => String::from("healthtopiccontent"),
            #[cfg(feature = "Accommodation")] Self::Accommodation(_) => String::from("accommodation"),
            #[cfg(feature = "PetStore")] Self::PetStore(_) => String::from("petstore"),
            #[cfg(feature = "InstallAction")] Self::InstallAction(_) => String::from("installaction"),
            #[cfg(feature = "BlogPosting")] Self::BlogPosting(_) => String::from("blogposting"),
            #[cfg(feature = "Manuscript")] Self::Manuscript(_) => String::from("manuscript"),
            #[cfg(feature = "TherapeuticProcedure")] Self::TherapeuticProcedure(_) => String::from("therapeuticprocedure"),
            #[cfg(feature = "Virus")] Self::Virus(_) => String::from("virus"),
            #[cfg(feature = "Protozoa")] Self::Protozoa(_) => String::from("protozoa"),
            #[cfg(feature = "HousePainter")] Self::HousePainter(_) => String::from("housepainter"),
            #[cfg(feature = "WebPage")] Self::WebPage(_) => String::from("webpage"),
            #[cfg(feature = "InteractAction")] Self::InteractAction(_) => String::from("interactaction"),
            #[cfg(feature = "LeaveAction")] Self::LeaveAction(_) => String::from("leaveaction"),
            #[cfg(feature = "BreadcrumbList")] Self::BreadcrumbList(_) => String::from("breadcrumblist"),
            #[cfg(feature = "CheckInAction")] Self::CheckInAction(_) => String::from("checkinaction"),
            #[cfg(feature = "BroadcastChannel")] Self::BroadcastChannel(_) => String::from("broadcastchannel"),
            #[cfg(feature = "CreativeWork")] Self::CreativeWork(_) => String::from("creativework"),
            #[cfg(feature = "Grant")] Self::Grant(_) => String::from("grant"),
            #[cfg(feature = "ProfilePage")] Self::ProfilePage(_) => String::from("profilepage"),
            #[cfg(feature = "LodgingBusiness")] Self::LodgingBusiness(_) => String::from("lodgingbusiness"),
            #[cfg(feature = "DrugCost")] Self::DrugCost(_) => String::from("drugcost"),
            #[cfg(feature = "FloorPlan")] Self::FloorPlan(_) => String::from("floorplan"),
            #[cfg(feature = "TattooParlor")] Self::TattooParlor(_) => String::from("tattooparlor"),
            #[cfg(feature = "CancelAction")] Self::CancelAction(_) => String::from("cancelaction"),
            #[cfg(feature = "EmployerReview")] Self::EmployerReview(_) => String::from("employerreview"),
            #[cfg(feature = "MoneyTransfer")] Self::MoneyTransfer(_) => String::from("moneytransfer"),
            #[cfg(feature = "Flight")] Self::Flight(_) => String::from("flight"),
            #[cfg(feature = "DeliveryMethod")] Self::DeliveryMethod(_) => String::from("deliverymethod"),
            #[cfg(feature = "BusinessFunction")] Self::BusinessFunction(_) => String::from("businessfunction"),
            #[cfg(feature = "Duration")] Self::Duration(_) => String::from("duration"),
            #[cfg(feature = "MedicalGuidelineContraindication")] Self::MedicalGuidelineContraindication(_) => String::from("medicalguidelinecontraindication"),
            #[cfg(feature = "SurgicalProcedure")] Self::SurgicalProcedure(_) => String::from("surgicalprocedure"),
            #[cfg(feature = "WebApplication")] Self::WebApplication(_) => String::from("webapplication"),
            #[cfg(feature = "ReceiveAction")] Self::ReceiveAction(_) => String::from("receiveaction"),
            #[cfg(feature = "Landform")] Self::Landform(_) => String::from("landform"),
            #[cfg(feature = "Restaurant")] Self::Restaurant(_) => String::from("restaurant"),
            #[cfg(feature = "OfferItemCondition")] Self::OfferItemCondition(_) => String::from("offeritemcondition"),
            #[cfg(feature = "PhysicalTherapy")] Self::PhysicalTherapy(_) => String::from("physicaltherapy"),
            #[cfg(feature = "DiagnosticProcedure")] Self::DiagnosticProcedure(_) => String::from("diagnosticprocedure"),
            #[cfg(feature = "BroadcastFrequencySpecification")] Self::BroadcastFrequencySpecification(_) => String::from("broadcastfrequencyspecification"),
            #[cfg(feature = "HealthPlanFormulary")] Self::HealthPlanFormulary(_) => String::from("healthplanformulary"),
            #[cfg(feature = "MovieSeries")] Self::MovieSeries(_) => String::from("movieseries"),
            #[cfg(feature = "LibrarySystem")] Self::LibrarySystem(_) => String::from("librarysystem"),
            #[cfg(feature = "WearableSizeSystemEnumeration")] Self::WearableSizeSystemEnumeration(_) => String::from("wearablesizesystemenumeration"),
            #[cfg(feature = "Joint")] Self::Joint(_) => String::from("joint"),
            #[cfg(feature = "OccupationalExperienceRequirements")] Self::OccupationalExperienceRequirements(_) => String::from("occupationalexperiencerequirements"),
            #[cfg(feature = "DefinedRegion")] Self::DefinedRegion(_) => String::from("definedregion"),
            #[cfg(feature = "AutoRental")] Self::AutoRental(_) => String::from("autorental"),
            #[cfg(feature = "ShippingDeliveryTime")] Self::ShippingDeliveryTime(_) => String::from("shippingdeliverytime"),
            #[cfg(feature = "MerchantReturnPolicy")] Self::MerchantReturnPolicy(_) => String::from("merchantreturnpolicy"),
            #[cfg(feature = "ResumeAction")] Self::ResumeAction(_) => String::from("resumeaction"),
            #[cfg(feature = "LakeBodyOfWater")] Self::LakeBodyOfWater(_) => String::from("lakebodyofwater"),
            #[cfg(feature = "BrainStructure")] Self::BrainStructure(_) => String::from("brainstructure"),
            #[cfg(feature = "LifestyleModification")] Self::LifestyleModification(_) => String::from("lifestylemodification"),
            #[cfg(feature = "ExchangeRateSpecification")] Self::ExchangeRateSpecification(_) => String::from("exchangeratespecification"),
            #[cfg(feature = "Drawing")] Self::Drawing(_) => String::from("drawing"),
            #[cfg(feature = "ResearchOrganization")] Self::ResearchOrganization(_) => String::from("researchorganization"),
            #[cfg(feature = "DataCatalog")] Self::DataCatalog(_) => String::from("datacatalog"),
            #[cfg(feature = "Clip")] Self::Clip(_) => String::from("clip"),
            #[cfg(feature = "StatisticalVariable")] Self::StatisticalVariable(_) => String::from("statisticalvariable"),
            #[cfg(feature = "Taxon")] Self::Taxon(_) => String::from("taxon"),
            #[cfg(feature = "ClaimReview")] Self::ClaimReview(_) => String::from("claimreview"),
            #[cfg(feature = "WholesaleStore")] Self::WholesaleStore(_) => String::from("wholesalestore"),
            #[cfg(feature = "PeopleAudience")] Self::PeopleAudience(_) => String::from("peopleaudience"),
            #[cfg(feature = "FundingScheme")] Self::FundingScheme(_) => String::from("fundingscheme"),
            #[cfg(feature = "LendAction")] Self::LendAction(_) => String::from("lendaction"),
            #[cfg(feature = "UserLikes")] Self::UserLikes(_) => String::from("userlikes"),
            #[cfg(feature = "MusicReleaseFormatType")] Self::MusicReleaseFormatType(_) => String::from("musicreleaseformattype"),
            #[cfg(feature = "Vein")] Self::Vein(_) => String::from("vein"),
            #[cfg(feature = "AggregateRating")] Self::AggregateRating(_) => String::from("aggregaterating"),
            #[cfg(feature = "CompleteDataFeed")] Self::CompleteDataFeed(_) => String::from("completedatafeed"),
            #[cfg(feature = "LegalValueLevel")] Self::LegalValueLevel(_) => String::from("legalvaluelevel"),
            #[cfg(feature = "SteeringPositionValue")] Self::SteeringPositionValue(_) => String::from("steeringpositionvalue"),
            #[cfg(feature = "ItemListOrderType")] Self::ItemListOrderType(_) => String::from("itemlistordertype"),
            #[cfg(feature = "ComedyClub")] Self::ComedyClub(_) => String::from("comedyclub"),
            #[cfg(feature = "DepartmentStore")] Self::DepartmentStore(_) => String::from("departmentstore"),
            #[cfg(feature = "AnimalShelter")] Self::AnimalShelter(_) => String::from("animalshelter"),
            #[cfg(feature = "WearableMeasurementTypeEnumeration")] Self::WearableMeasurementTypeEnumeration(_) => String::from("wearablemeasurementtypeenumeration"),
            #[cfg(feature = "BroadcastEvent")] Self::BroadcastEvent(_) => String::from("broadcastevent"),
            #[cfg(feature = "Distance")] Self::Distance(_) => String::from("distance"),
            #[cfg(feature = "StructuredValue")] Self::StructuredValue(_) => String::from("structuredvalue"),
            #[cfg(feature = "NLNonprofitType")] Self::NLNonprofitType(_) => String::from("nlnonprofittype"),
            #[cfg(feature = "Thing")] Self::Thing(_) => String::from("thing"),
            #[cfg(feature = "MedicalTherapy")] Self::MedicalTherapy(_) => String::from("medicaltherapy"),
            #[cfg(feature = "ConsumeAction")] Self::ConsumeAction(_) => String::from("consumeaction"),
            #[cfg(feature = "UserComments")] Self::UserComments(_) => String::from("usercomments"),
            #[cfg(feature = "MedicalClinic")] Self::MedicalClinic(_) => String::from("medicalclinic"),
            #[cfg(feature = "Pond")] Self::Pond(_) => String::from("pond"),
            #[cfg(feature = "Fungus")] Self::Fungus(_) => String::from("fungus"),
            #[cfg(feature = "OnlineBusiness")] Self::OnlineBusiness(_) => String::from("onlinebusiness"),
            #[cfg(feature = "OnlineStore")] Self::OnlineStore(_) => String::from("onlinestore"),
            #[cfg(feature = "DiagnosticLab")] Self::DiagnosticLab(_) => String::from("diagnosticlab"),
            #[cfg(feature = "DriveWheelConfigurationValue")] Self::DriveWheelConfigurationValue(_) => String::from("drivewheelconfigurationvalue"),
            #[cfg(feature = "BusStation")] Self::BusStation(_) => String::from("busstation"),
            #[cfg(feature = "AssessAction")] Self::AssessAction(_) => String::from("assessaction"),
            #[cfg(feature = "MusicGroup")] Self::MusicGroup(_) => String::from("musicgroup"),
            #[cfg(feature = "MedicalScholarlyArticle")] Self::MedicalScholarlyArticle(_) => String::from("medicalscholarlyarticle"),
            #[cfg(feature = "SubscribeAction")] Self::SubscribeAction(_) => String::from("subscribeaction"),
            #[cfg(feature = "PaymentStatusType")] Self::PaymentStatusType(_) => String::from("paymentstatustype"),
            #[cfg(feature = "FoodEstablishmentReservation")] Self::FoodEstablishmentReservation(_) => String::from("foodestablishmentreservation"),
            #[cfg(feature = "BodyOfWater")] Self::BodyOfWater(_) => String::from("bodyofwater"),
            #[cfg(feature = "MusicRelease")] Self::MusicRelease(_) => String::from("musicrelease"),
            #[cfg(feature = "MediaSubscription")] Self::MediaSubscription(_) => String::from("mediasubscription"),
            #[cfg(feature = "DislikeAction")] Self::DislikeAction(_) => String::from("dislikeaction"),
            #[cfg(feature = "ReturnLabelSourceEnumeration")] Self::ReturnLabelSourceEnumeration(_) => String::from("returnlabelsourceenumeration"),
            #[cfg(feature = "CheckOutAction")] Self::CheckOutAction(_) => String::from("checkoutaction"),
            #[cfg(feature = "SocialEvent")] Self::SocialEvent(_) => String::from("socialevent"),
            #[cfg(feature = "FindAction")] Self::FindAction(_) => String::from("findaction"),
            #[cfg(feature = "Season")] Self::Season(_) => String::from("season"),
            #[cfg(feature = "DepositAccount")] Self::DepositAccount(_) => String::from("depositaccount"),
            #[cfg(feature = "ReadAction")] Self::ReadAction(_) => String::from("readaction"),
            #[cfg(feature = "Dentist")] Self::Dentist(_) => String::from("dentist"),
            #[cfg(feature = "CorrectionComment")] Self::CorrectionComment(_) => String::from("correctioncomment"),
            #[cfg(feature = "GameServerStatus")] Self::GameServerStatus(_) => String::from("gameserverstatus"),
            #[cfg(feature = "BorrowAction")] Self::BorrowAction(_) => String::from("borrowaction"),
            #[cfg(feature = "TrainStation")] Self::TrainStation(_) => String::from("trainstation"),
            #[cfg(feature = "MedicalDevicePurpose")] Self::MedicalDevicePurpose(_) => String::from("medicaldevicepurpose"),
            #[cfg(feature = "CheckAction")] Self::CheckAction(_) => String::from("checkaction"),
            #[cfg(feature = "SportsTeam")] Self::SportsTeam(_) => String::from("sportsteam"),
            #[cfg(feature = "HairSalon")] Self::HairSalon(_) => String::from("hairsalon"),
            #[cfg(feature = "GroceryStore")] Self::GroceryStore(_) => String::from("grocerystore"),
            #[cfg(feature = "PodcastEpisode")] Self::PodcastEpisode(_) => String::from("podcastepisode"),
            #[cfg(feature = "SpreadsheetDigitalDocument")] Self::SpreadsheetDigitalDocument(_) => String::from("spreadsheetdigitaldocument"),
            #[cfg(feature = "ReportageNewsArticle")] Self::ReportageNewsArticle(_) => String::from("reportagenewsarticle"),
            #[cfg(feature = "SelfStorage")] Self::SelfStorage(_) => String::from("selfstorage"),
            #[cfg(feature = "CreativeWorkSeason")] Self::CreativeWorkSeason(_) => String::from("creativeworkseason"),
            #[cfg(feature = "MedicalObservationalStudyDesign")] Self::MedicalObservationalStudyDesign(_) => String::from("medicalobservationalstudydesign"),
            #[cfg(feature = "HinduTemple")] Self::HinduTemple(_) => String::from("hindutemple"),
            #[cfg(feature = "MonetaryAmount")] Self::MonetaryAmount(_) => String::from("monetaryamount"),
            #[cfg(feature = "MedicalRiskEstimator")] Self::MedicalRiskEstimator(_) => String::from("medicalriskestimator"),
            #[cfg(feature = "Message")] Self::Message(_) => String::from("message"),
            #[cfg(feature = "SportsEvent")] Self::SportsEvent(_) => String::from("sportsevent"),
            #[cfg(feature = "PerformanceRole")] Self::PerformanceRole(_) => String::from("performancerole"),
            #[cfg(feature = "APIReference")] Self::APIReference(_) => String::from("apireference"),
            #[cfg(feature = "Electrician")] Self::Electrician(_) => String::from("electrician"),
            #[cfg(feature = "LinkRole")] Self::LinkRole(_) => String::from("linkrole"),
            #[cfg(feature = "DataFeed")] Self::DataFeed(_) => String::from("datafeed"),
            #[cfg(feature = "WorkBasedProgram")] Self::WorkBasedProgram(_) => String::from("workbasedprogram"),
            #[cfg(feature = "SchoolDistrict")] Self::SchoolDistrict(_) => String::from("schooldistrict"),
            #[cfg(feature = "ImageGallery")] Self::ImageGallery(_) => String::from("imagegallery"),
            #[cfg(feature = "DeliveryChargeSpecification")] Self::DeliveryChargeSpecification(_) => String::from("deliverychargespecification"),
            #[cfg(feature = "SpeakableSpecification")] Self::SpeakableSpecification(_) => String::from("speakablespecification"),
            #[cfg(feature = "GardenStore")] Self::GardenStore(_) => String::from("gardenstore"),
            #[cfg(feature = "Service")] Self::Service(_) => String::from("service"),
            #[cfg(feature = "CookAction")] Self::CookAction(_) => String::from("cookaction"),
            #[cfg(feature = "SearchAction")] Self::SearchAction(_) => String::from("searchaction"),
            #[cfg(feature = "ShoppingCenter")] Self::ShoppingCenter(_) => String::from("shoppingcenter"),
            #[cfg(feature = "CampingPitch")] Self::CampingPitch(_) => String::from("campingpitch"),
            #[cfg(feature = "FurnitureStore")] Self::FurnitureStore(_) => String::from("furniturestore"),
            #[cfg(feature = "UserTweets")] Self::UserTweets(_) => String::from("usertweets"),
            #[cfg(feature = "Project")] Self::Project(_) => String::from("project"),
            #[cfg(feature = "WorkersUnion")] Self::WorkersUnion(_) => String::from("workersunion"),
            #[cfg(feature = "SaleEvent")] Self::SaleEvent(_) => String::from("saleevent"),
            #[cfg(feature = "Energy")] Self::Energy(_) => String::from("energy"),
            #[cfg(feature = "Preschool")] Self::Preschool(_) => String::from("preschool"),
            #[cfg(feature = "Continent")] Self::Continent(_) => String::from("continent"),
            #[cfg(feature = "ArchiveOrganization")] Self::ArchiveOrganization(_) => String::from("archiveorganization"),
            #[cfg(feature = "DrugStrength")] Self::DrugStrength(_) => String::from("drugstrength"),
            #[cfg(feature = "PerformAction")] Self::PerformAction(_) => String::from("performaction"),
            #[cfg(feature = "ReservationPackage")] Self::ReservationPackage(_) => String::from("reservationpackage"),
            #[cfg(feature = "AppendAction")] Self::AppendAction(_) => String::from("appendaction"),
            #[cfg(feature = "VideoGameSeries")] Self::VideoGameSeries(_) => String::from("videogameseries"),
            #[cfg(feature = "QuantitativeValue")] Self::QuantitativeValue(_) => String::from("quantitativevalue"),
            #[cfg(feature = "EducationEvent")] Self::EducationEvent(_) => String::from("educationevent"),
            #[cfg(feature = "Observation")] Self::Observation(_) => String::from("observation"),
            #[cfg(feature = "MedicalRiskCalculator")] Self::MedicalRiskCalculator(_) => String::from("medicalriskcalculator"),
            #[cfg(feature = "RadioBroadcastService")] Self::RadioBroadcastService(_) => String::from("radiobroadcastservice"),
            #[cfg(feature = "GovernmentBenefitsType")] Self::GovernmentBenefitsType(_) => String::from("governmentbenefitstype"),
            #[cfg(feature = "MotorizedBicycle")] Self::MotorizedBicycle(_) => String::from("motorizedbicycle"),
            #[cfg(feature = "PhysicalActivityCategory")] Self::PhysicalActivityCategory(_) => String::from("physicalactivitycategory"),
            #[cfg(feature = "MedicalTest")] Self::MedicalTest(_) => String::from("medicaltest"),
            #[cfg(feature = "ScholarlyArticle")] Self::ScholarlyArticle(_) => String::from("scholarlyarticle"),
            #[cfg(feature = "EmailMessage")] Self::EmailMessage(_) => String::from("emailmessage"),
            #[cfg(feature = "WearAction")] Self::WearAction(_) => String::from("wearaction"),
            #[cfg(feature = "BoardingPolicyType")] Self::BoardingPolicyType(_) => String::from("boardingpolicytype"),
            #[cfg(feature = "RsvpAction")] Self::RsvpAction(_) => String::from("rsvpaction"),
            #[cfg(feature = "MeasurementMethodEnum")] Self::MeasurementMethodEnum(_) => String::from("measurementmethodenum"),
            #[cfg(feature = "FoodEvent")] Self::FoodEvent(_) => String::from("foodevent"),
            #[cfg(feature = "CDCPMDRecord")] Self::CDCPMDRecord(_) => String::from("cdcpmdrecord"),
            #[cfg(feature = "Residence")] Self::Residence(_) => String::from("residence"),
            #[cfg(feature = "WantAction")] Self::WantAction(_) => String::from("wantaction"),
            #[cfg(feature = "EntryPoint")] Self::EntryPoint(_) => String::from("entrypoint"),
            #[cfg(feature = "MedicalIndication")] Self::MedicalIndication(_) => String::from("medicalindication"),
            #[cfg(feature = "GameAvailabilityEnumeration")] Self::GameAvailabilityEnumeration(_) => String::from("gameavailabilityenumeration"),
            #[cfg(feature = "IgnoreAction")] Self::IgnoreAction(_) => String::from("ignoreaction"),
            #[cfg(feature = "MedicalAudience")] Self::MedicalAudience(_) => String::from("medicalaudience"),
            #[cfg(feature = "LodgingReservation")] Self::LodgingReservation(_) => String::from("lodgingreservation"),
            #[cfg(feature = "MedicalTrial")] Self::MedicalTrial(_) => String::from("medicaltrial"),
            #[cfg(feature = "AutomotiveBusiness")] Self::AutomotiveBusiness(_) => String::from("automotivebusiness"),
            #[cfg(feature = "TVEpisode")] Self::TVEpisode(_) => String::from("tvepisode"),
            #[cfg(feature = "BusinessEntityType")] Self::BusinessEntityType(_) => String::from("businessentitytype"),
            #[cfg(feature = "MovieTheater")] Self::MovieTheater(_) => String::from("movietheater"),
            #[cfg(feature = "GolfCourse")] Self::GolfCourse(_) => String::from("golfcourse"),
            #[cfg(feature = "WebSite")] Self::WebSite(_) => String::from("website"),
            #[cfg(feature = "QuoteAction")] Self::QuoteAction(_) => String::from("quoteaction"),
            #[cfg(feature = "HealthPlanCostSharingSpecification")] Self::HealthPlanCostSharingSpecification(_) => String::from("healthplancostsharingspecification"),
            #[cfg(feature = "HobbyShop")] Self::HobbyShop(_) => String::from("hobbyshop"),
            #[cfg(feature = "CurrencyConversionService")] Self::CurrencyConversionService(_) => String::from("currencyconversionservice"),
            #[cfg(feature = "Rating")] Self::Rating(_) => String::from("rating"),
            #[cfg(feature = "OfficeEquipmentStore")] Self::OfficeEquipmentStore(_) => String::from("officeequipmentstore"),
            #[cfg(feature = "EnergyConsumptionDetails")] Self::EnergyConsumptionDetails(_) => String::from("energyconsumptiondetails"),
            #[cfg(feature = "WarrantyScope")] Self::WarrantyScope(_) => String::from("warrantyscope"),
            #[cfg(feature = "MusicPlaylist")] Self::MusicPlaylist(_) => String::from("musicplaylist"),
            #[cfg(feature = "Florist")] Self::Florist(_) => String::from("florist"),
            #[cfg(feature = "ImageObject")] Self::ImageObject(_) => String::from("imageobject"),
            #[cfg(feature = "MusicEvent")] Self::MusicEvent(_) => String::from("musicevent"),
            #[cfg(feature = "PreventionIndication")] Self::PreventionIndication(_) => String::from("preventionindication"),
            #[cfg(feature = "DisagreeAction")] Self::DisagreeAction(_) => String::from("disagreeaction"),
            #[cfg(feature = "GovernmentService")] Self::GovernmentService(_) => String::from("governmentservice"),
            #[cfg(feature = "FireStation")] Self::FireStation(_) => String::from("firestation"),
            #[cfg(feature = "Role")] Self::Role(_) => String::from("role"),
            #[cfg(feature = "LearningResource")] Self::LearningResource(_) => String::from("learningresource"),
            #[cfg(feature = "PropertyValue")] Self::PropertyValue(_) => String::from("propertyvalue"),
            #[cfg(feature = "TouristAttraction")] Self::TouristAttraction(_) => String::from("touristattraction"),
            #[cfg(feature = "DoseSchedule")] Self::DoseSchedule(_) => String::from("doseschedule"),
            #[cfg(feature = "FoodService")] Self::FoodService(_) => String::from("foodservice"),
            #[cfg(feature = "ThreeDModel")] Self::ThreeDModel(_) => String::from("threedmodel"),
            #[cfg(feature = "Canal")] Self::Canal(_) => String::from("canal"),
            #[cfg(feature = "MovingCompany")] Self::MovingCompany(_) => String::from("movingcompany"),
            #[cfg(feature = "SellAction")] Self::SellAction(_) => String::from("sellaction"),
            #[cfg(feature = "TipAction")] Self::TipAction(_) => String::from("tipaction"),
            #[cfg(feature = "TVSeries")] Self::TVSeries(_) => String::from("tvseries"),
            #[cfg(feature = "BrokerageAccount")] Self::BrokerageAccount(_) => String::from("brokerageaccount"),
            #[cfg(feature = "Episode")] Self::Episode(_) => String::from("episode"),
            #[cfg(feature = "ToyStore")] Self::ToyStore(_) => String::from("toystore"),
            #[cfg(feature = "DefinedTerm")] Self::DefinedTerm(_) => String::from("definedterm"),
            #[cfg(feature = "BikeStore")] Self::BikeStore(_) => String::from("bikestore"),
            #[cfg(feature = "ChooseAction")] Self::ChooseAction(_) => String::from("chooseaction"),
            #[cfg(feature = "Property")] Self::Property(_) => String::from("property"),
            #[cfg(feature = "HowToTool")] Self::HowToTool(_) => String::from("howtotool"),
            #[cfg(feature = "AutomatedTeller")] Self::AutomatedTeller(_) => String::from("automatedteller"),
            #[cfg(feature = "Zoo")] Self::Zoo(_) => String::from("zoo"),
            #[cfg(feature = "ChemicalSubstance")] Self::ChemicalSubstance(_) => String::from("chemicalsubstance"),
            #[cfg(feature = "InteractionCounter")] Self::InteractionCounter(_) => String::from("interactioncounter"),
            #[cfg(feature = "CableOrSatelliteService")] Self::CableOrSatelliteService(_) => String::from("cableorsatelliteservice"),
            #[cfg(feature = "NailSalon")] Self::NailSalon(_) => String::from("nailsalon"),
            #[cfg(feature = "EventVenue")] Self::EventVenue(_) => String::from("eventvenue"),
            #[cfg(feature = "ProductCollection")] Self::ProductCollection(_) => String::from("productcollection"),
            #[cfg(feature = "VeterinaryCare")] Self::VeterinaryCare(_) => String::from("veterinarycare"),
            #[cfg(feature = "TaxiService")] Self::TaxiService(_) => String::from("taxiservice"),
            #[cfg(feature = "ViewAction")] Self::ViewAction(_) => String::from("viewaction"),
            #[cfg(feature = "TireShop")] Self::TireShop(_) => String::from("tireshop"),
            #[cfg(feature = "WebAPI")] Self::WebAPI(_) => String::from("webapi"),
            #[cfg(feature = "RVPark")] Self::RVPark(_) => String::from("rvpark"),
            #[cfg(feature = "MusicRecording")] Self::MusicRecording(_) => String::from("musicrecording"),
            #[cfg(feature = "BookStore")] Self::BookStore(_) => String::from("bookstore"),
            #[cfg(feature = "OfferCatalog")] Self::OfferCatalog(_) => String::from("offercatalog"),
            #[cfg(feature = "TextObject")] Self::TextObject(_) => String::from("textobject"),
            #[cfg(feature = "DigitalDocumentPermissionType")] Self::DigitalDocumentPermissionType(_) => String::from("digitaldocumentpermissiontype"),
            #[cfg(feature = "BowlingAlley")] Self::BowlingAlley(_) => String::from("bowlingalley"),
            #[cfg(feature = "BoatTerminal")] Self::BoatTerminal(_) => String::from("boatterminal"),
            #[cfg(feature = "TVSeason")] Self::TVSeason(_) => String::from("tvseason"),
            #[cfg(feature = "AgreeAction")] Self::AgreeAction(_) => String::from("agreeaction"),
            #[cfg(feature = "MotorcycleRepair")] Self::MotorcycleRepair(_) => String::from("motorcyclerepair"),
            #[cfg(feature = "House")] Self::House(_) => String::from("house"),
            #[cfg(feature = "BoatReservation")] Self::BoatReservation(_) => String::from("boatreservation"),
            #[cfg(feature = "CreateAction")] Self::CreateAction(_) => String::from("createaction"),
            #[cfg(feature = "StatusEnumeration")] Self::StatusEnumeration(_) => String::from("statusenumeration"),
            #[cfg(feature = "SeekToAction")] Self::SeekToAction(_) => String::from("seektoaction"),
            #[cfg(feature = "Playground")] Self::Playground(_) => String::from("playground"),
            #[cfg(feature = "ParkingFacility")] Self::ParkingFacility(_) => String::from("parkingfacility"),
            #[cfg(feature = "LocationFeatureSpecification")] Self::LocationFeatureSpecification(_) => String::from("locationfeaturespecification"),
            #[cfg(feature = "VoteAction")] Self::VoteAction(_) => String::from("voteaction"),
            #[cfg(feature = "InformAction")] Self::InformAction(_) => String::from("informaction"),
            #[cfg(feature = "Enumeration")] Self::Enumeration(_) => String::from("enumeration"),
            #[cfg(feature = "ProductModel")] Self::ProductModel(_) => String::from("productmodel"),
            #[cfg(feature = "DeleteAction")] Self::DeleteAction(_) => String::from("deleteaction"),
            #[cfg(feature = "WarrantyPromise")] Self::WarrantyPromise(_) => String::from("warrantypromise"),
            #[cfg(feature = "DeactivateAction")] Self::DeactivateAction(_) => String::from("deactivateaction"),
            #[cfg(feature = "Menu")] Self::Menu(_) => String::from("menu"),
            #[cfg(feature = "MusicAlbumProductionType")] Self::MusicAlbumProductionType(_) => String::from("musicalbumproductiontype"),
            #[cfg(feature = "TouristDestination")] Self::TouristDestination(_) => String::from("touristdestination"),
            #[cfg(feature = "Thesis")] Self::Thesis(_) => String::from("thesis"),
            #[cfg(feature = "MoveAction")] Self::MoveAction(_) => String::from("moveaction"),
            #[cfg(feature = "MedicalSignOrSymptom")] Self::MedicalSignOrSymptom(_) => String::from("medicalsignorsymptom"),
            #[cfg(feature = "MonetaryAmountDistribution")] Self::MonetaryAmountDistribution(_) => String::from("monetaryamountdistribution"),
            #[cfg(feature = "EventStatusType")] Self::EventStatusType(_) => String::from("eventstatustype"),
            #[cfg(feature = "TennisComplex")] Self::TennisComplex(_) => String::from("tenniscomplex"),
            #[cfg(feature = "ArriveAction")] Self::ArriveAction(_) => String::from("arriveaction"),
            #[cfg(feature = "ReturnFeesEnumeration")] Self::ReturnFeesEnumeration(_) => String::from("returnfeesenumeration"),
            #[cfg(feature = "TaxiReservation")] Self::TaxiReservation(_) => String::from("taxireservation"),
            #[cfg(feature = "GovernmentOffice")] Self::GovernmentOffice(_) => String::from("governmentoffice"),
            #[cfg(feature = "WebPageElement")] Self::WebPageElement(_) => String::from("webpageelement"),
            #[cfg(feature = "ProgramMembership")] Self::ProgramMembership(_) => String::from("programmembership"),
            #[cfg(feature = "AudioObjectSnapshot")] Self::AudioObjectSnapshot(_) => String::from("audioobjectsnapshot"),
            #[cfg(feature = "MerchantReturnPolicySeasonalOverride")] Self::MerchantReturnPolicySeasonalOverride(_) => String::from("merchantreturnpolicyseasonaloverride"),
            #[cfg(feature = "SingleFamilyResidence")] Self::SingleFamilyResidence(_) => String::from("singlefamilyresidence"),
            #[cfg(feature = "Bridge")] Self::Bridge(_) => String::from("bridge"),
            #[cfg(feature = "Product")] Self::Product(_) => String::from("product"),
            #[cfg(feature = "Brand")] Self::Brand(_) => String::from("brand"),
            #[cfg(feature = "AnatomicalSystem")] Self::AnatomicalSystem(_) => String::from("anatomicalsystem"),
            #[cfg(feature = "EngineSpecification")] Self::EngineSpecification(_) => String::from("enginespecification"),
            #[cfg(feature = "PoliceStation")] Self::PoliceStation(_) => String::from("policestation"),
            #[cfg(feature = "MarryAction")] Self::MarryAction(_) => String::from("marryaction"),
            #[cfg(feature = "Plumber")] Self::Plumber(_) => String::from("plumber"),
            #[cfg(feature = "AddAction")] Self::AddAction(_) => String::from("addaction"),
            #[cfg(feature = "InviteAction")] Self::InviteAction(_) => String::from("inviteaction"),
            #[cfg(feature = "CreditCard")] Self::CreditCard(_) => String::from("creditcard"),
            #[cfg(feature = "Dataset")] Self::Dataset(_) => String::from("dataset"),
            #[cfg(feature = "PublicSwimmingPool")] Self::PublicSwimmingPool(_) => String::from("publicswimmingpool"),
            #[cfg(feature = "CourseInstance")] Self::CourseInstance(_) => String::from("courseinstance"),
            #[cfg(feature = "MediaReview")] Self::MediaReview(_) => String::from("mediareview"),
            #[cfg(feature = "Occupation")] Self::Occupation(_) => String::from("occupation"),
            #[cfg(feature = "MedicalIntangible")] Self::MedicalIntangible(_) => String::from("medicalintangible"),
            #[cfg(feature = "AuthorizeAction")] Self::AuthorizeAction(_) => String::from("authorizeaction"),
            #[cfg(feature = "Protein")] Self::Protein(_) => String::from("protein"),
            #[cfg(feature = "LymphaticVessel")] Self::LymphaticVessel(_) => String::from("lymphaticvessel"),
            #[cfg(feature = "DayOfWeek")] Self::DayOfWeek(_) => String::from("dayofweek"),
            #[cfg(feature = "PlaceOfWorship")] Self::PlaceOfWorship(_) => String::from("placeofworship"),
            #[cfg(feature = "ComedyEvent")] Self::ComedyEvent(_) => String::from("comedyevent"),
            #[cfg(feature = "GatedResidenceCommunity")] Self::GatedResidenceCommunity(_) => String::from("gatedresidencecommunity"),
            #[cfg(feature = "LiveBlogPosting")] Self::LiveBlogPosting(_) => String::from("liveblogposting"),
            #[cfg(feature = "AssignAction")] Self::AssignAction(_) => String::from("assignaction"),
            #[cfg(feature = "FMRadioChannel")] Self::FMRadioChannel(_) => String::from("fmradiochannel"),
            #[cfg(feature = "AMRadioChannel")] Self::AMRadioChannel(_) => String::from("amradiochannel"),
            #[cfg(feature = "PhysicalExam")] Self::PhysicalExam(_) => String::from("physicalexam"),
            #[cfg(feature = "PodcastSeries")] Self::PodcastSeries(_) => String::from("podcastseries"),
            #[cfg(feature = "AdvertiserContentArticle")] Self::AdvertiserContentArticle(_) => String::from("advertisercontentarticle"),
            #[cfg(feature = "ExercisePlan")] Self::ExercisePlan(_) => String::from("exerciseplan"),
            #[cfg(feature = "GeoCircle")] Self::GeoCircle(_) => String::from("geocircle"),
            #[cfg(feature = "PublicationIssue")] Self::PublicationIssue(_) => String::from("publicationissue"),
            #[cfg(feature = "CafeOrCoffeeShop")] Self::CafeOrCoffeeShop(_) => String::from("cafeorcoffeeshop"),
            #[cfg(feature = "PalliativeProcedure")] Self::PalliativeProcedure(_) => String::from("palliativeprocedure"),
            #[cfg(feature = "WearableSizeGroupEnumeration")] Self::WearableSizeGroupEnumeration(_) => String::from("wearablesizegroupenumeration"),
            #[cfg(feature = "HealthAndBeautyBusiness")] Self::HealthAndBeautyBusiness(_) => String::from("healthandbeautybusiness"),
            #[cfg(feature = "BioChemEntity")] Self::BioChemEntity(_) => String::from("biochementity"),
            #[cfg(feature = "Article")] Self::Article(_) => String::from("article"),
            #[cfg(feature = "Float")] Self::Float(_) => String::from("float"),
            #[cfg(feature = "Taxi")] Self::Taxi(_) => String::from("taxi"),
            #[cfg(feature = "Crematorium")] Self::Crematorium(_) => String::from("crematorium"),
            #[cfg(feature = "RadiationTherapy")] Self::RadiationTherapy(_) => String::from("radiationtherapy"),
            #[cfg(feature = "EducationalOccupationalProgram")] Self::EducationalOccupationalProgram(_) => String::from("educationaloccupationalprogram"),
            #[cfg(feature = "MedicalImagingTechnique")] Self::MedicalImagingTechnique(_) => String::from("medicalimagingtechnique"),
            #[cfg(feature = "Attorney")] Self::Attorney(_) => String::from("attorney"),
            #[cfg(feature = "BusinessAudience")] Self::BusinessAudience(_) => String::from("businessaudience"),
            #[cfg(feature = "ChildrensEvent")] Self::ChildrensEvent(_) => String::from("childrensevent"),
            #[cfg(feature = "GenderType")] Self::GenderType(_) => String::from("gendertype"),
            #[cfg(feature = "Quiz")] Self::Quiz(_) => String::from("quiz"),
            #[cfg(feature = "Demand")] Self::Demand(_) => String::from("demand"),
            #[cfg(feature = "Class")] Self::Class(_) => String::from("class"),
            #[cfg(feature = "Brewery")] Self::Brewery(_) => String::from("brewery"),
            #[cfg(feature = "HealthInsurancePlan")] Self::HealthInsurancePlan(_) => String::from("healthinsuranceplan"),
            #[cfg(feature = "JoinAction")] Self::JoinAction(_) => String::from("joinaction"),
            #[cfg(feature = "JewelryStore")] Self::JewelryStore(_) => String::from("jewelrystore"),
            #[cfg(feature = "AutoBodyShop")] Self::AutoBodyShop(_) => String::from("autobodyshop"),
            #[cfg(feature = "AmusementPark")] Self::AmusementPark(_) => String::from("amusementpark"),
            #[cfg(feature = "EmployerAggregateRating")] Self::EmployerAggregateRating(_) => String::from("employeraggregaterating"),
            #[cfg(feature = "SatiricalArticle")] Self::SatiricalArticle(_) => String::from("satiricalarticle"),
            #[cfg(feature = "UserCheckins")] Self::UserCheckins(_) => String::from("usercheckins"),
            #[cfg(feature = "InvestmentOrDeposit")] Self::InvestmentOrDeposit(_) => String::from("investmentordeposit"),
            #[cfg(feature = "HVACBusiness")] Self::HVACBusiness(_) => String::from("hvacbusiness"),
            #[cfg(feature = "ActionAccessSpecification")] Self::ActionAccessSpecification(_) => String::from("actionaccessspecification"),
            #[cfg(feature = "UserBlocks")] Self::UserBlocks(_) => String::from("userblocks"),
            #[cfg(feature = "LocalBusiness")] Self::LocalBusiness(_) => String::from("localbusiness"),
            #[cfg(feature = "TypeAndQuantityNode")] Self::TypeAndQuantityNode(_) => String::from("typeandquantitynode"),
            #[cfg(feature = "Library")] Self::Library(_) => String::from("library"),
            #[cfg(feature = "CategoryCodeSet")] Self::CategoryCodeSet(_) => String::from("categorycodeset"),
            #[cfg(feature = "HomeAndConstructionBusiness")] Self::HomeAndConstructionBusiness(_) => String::from("homeandconstructionbusiness"),
            #[cfg(feature = "ParcelDelivery")] Self::ParcelDelivery(_) => String::from("parceldelivery"),
            #[cfg(feature = "MedicalCode")] Self::MedicalCode(_) => String::from("medicalcode"),
            #[cfg(feature = "ReplyAction")] Self::ReplyAction(_) => String::from("replyaction"),
            #[cfg(feature = "TradeAction")] Self::TradeAction(_) => String::from("tradeaction"),
            #[cfg(feature = "CityHall")] Self::CityHall(_) => String::from("cityhall"),
            #[cfg(feature = "ElementarySchool")] Self::ElementarySchool(_) => String::from("elementaryschool"),
            #[cfg(feature = "Guide")] Self::Guide(_) => String::from("guide"),
            #[cfg(feature = "NutritionInformation")] Self::NutritionInformation(_) => String::from("nutritioninformation"),
            #[cfg(feature = "CommentAction")] Self::CommentAction(_) => String::from("commentaction"),
            #[cfg(feature = "InfectiousDisease")] Self::InfectiousDisease(_) => String::from("infectiousdisease"),
            #[cfg(feature = "MedicalTestPanel")] Self::MedicalTestPanel(_) => String::from("medicaltestpanel"),
            #[cfg(feature = "BeautySalon")] Self::BeautySalon(_) => String::from("beautysalon"),
            #[cfg(feature = "DryCleaningOrLaundry")] Self::DryCleaningOrLaundry(_) => String::from("drycleaningorlaundry"),
            #[cfg(feature = "VideoObjectSnapshot")] Self::VideoObjectSnapshot(_) => String::from("videoobjectsnapshot"),
            #[cfg(feature = "HowToTip")] Self::HowToTip(_) => String::from("howtotip"),
            #[cfg(feature = "SocialMediaPosting")] Self::SocialMediaPosting(_) => String::from("socialmediaposting"),
            #[cfg(feature = "Ligament")] Self::Ligament(_) => String::from("ligament"),
            #[cfg(feature = "ActionStatusType")] Self::ActionStatusType(_) => String::from("actionstatustype"),
            #[cfg(feature = "IndividualProduct")] Self::IndividualProduct(_) => String::from("individualproduct"),
            #[cfg(feature = "HowToItem")] Self::HowToItem(_) => String::from("howtoitem"),
            #[cfg(feature = "Report")] Self::Report(_) => String::from("report"),
            #[cfg(feature = "Museum")] Self::Museum(_) => String::from("museum"),
            #[cfg(feature = "ComicStory")] Self::ComicStory(_) => String::from("comicstory"),
            #[cfg(feature = "TrainReservation")] Self::TrainReservation(_) => String::from("trainreservation"),
            #[cfg(feature = "SubwayStation")] Self::SubwayStation(_) => String::from("subwaystation"),
            #[cfg(feature = "WPHeader")] Self::WPHeader(_) => String::from("wpheader"),
            #[cfg(feature = "EUEnergyEfficiencyEnumeration")] Self::EUEnergyEfficiencyEnumeration(_) => String::from("euenergyefficiencyenumeration"),
            #[cfg(feature = "Painting")] Self::Painting(_) => String::from("painting"),
            #[cfg(feature = "MedicalProcedure")] Self::MedicalProcedure(_) => String::from("medicalprocedure"),
            #[cfg(feature = "DietarySupplement")] Self::DietarySupplement(_) => String::from("dietarysupplement"),
            #[cfg(feature = "PaymentService")] Self::PaymentService(_) => String::from("paymentservice"),
            #[cfg(feature = "TextDigitalDocument")] Self::TextDigitalDocument(_) => String::from("textdigitaldocument"),
            #[cfg(feature = "TieAction")] Self::TieAction(_) => String::from("tieaction"),
            #[cfg(feature = "DrugPrescriptionStatus")] Self::DrugPrescriptionStatus(_) => String::from("drugprescriptionstatus"),
            #[cfg(feature = "MediaReviewItem")] Self::MediaReviewItem(_) => String::from("mediareviewitem"),
            #[cfg(feature = "ComputerLanguage")] Self::ComputerLanguage(_) => String::from("computerlanguage"),
            #[cfg(feature = "Locksmith")] Self::Locksmith(_) => String::from("locksmith"),
            #[cfg(feature = "SearchRescueOrganization")] Self::SearchRescueOrganization(_) => String::from("searchrescueorganization"),
            #[cfg(feature = "Distillery")] Self::Distillery(_) => String::from("distillery"),
            #[cfg(feature = "EventSeries")] Self::EventSeries(_) => String::from("eventseries"),
            #[cfg(feature = "RadioSeries")] Self::RadioSeries(_) => String::from("radioseries"),
            #[cfg(feature = "AdministrativeArea")] Self::AdministrativeArea(_) => String::from("administrativearea"),
            #[cfg(feature = "PoliticalParty")] Self::PoliticalParty(_) => String::from("politicalparty"),
            #[cfg(feature = "BedAndBreakfast")] Self::BedAndBreakfast(_) => String::from("bedandbreakfast"),
            #[cfg(feature = "VacationRental")] Self::VacationRental(_) => String::from("vacationrental"),
            #[cfg(feature = "HotelRoom")] Self::HotelRoom(_) => String::from("hotelroom"),
            #[cfg(feature = "Casino")] Self::Casino(_) => String::from("casino"),
            #[cfg(feature = "BookSeries")] Self::BookSeries(_) => String::from("bookseries"),
            #[cfg(feature = "MedicineSystem")] Self::MedicineSystem(_) => String::from("medicinesystem"),
            #[cfg(feature = "Airport")] Self::Airport(_) => String::from("airport"),
            #[cfg(feature = "CategoryCode")] Self::CategoryCode(_) => String::from("categorycode"),
            #[cfg(feature = "Corporation")] Self::Corporation(_) => String::from("corporation"),
            #[cfg(feature = "PreOrderAction")] Self::PreOrderAction(_) => String::from("preorderaction"),
            #[cfg(feature = "PodcastSeason")] Self::PodcastSeason(_) => String::from("podcastseason"),
            #[cfg(feature = "TrackAction")] Self::TrackAction(_) => String::from("trackaction"),
            #[cfg(feature = "AskAction")] Self::AskAction(_) => String::from("askaction"),
            #[cfg(feature = "RealEstateAgent")] Self::RealEstateAgent(_) => String::from("realestateagent"),
            #[cfg(feature = "AccountingService")] Self::AccountingService(_) => String::from("accountingservice"),
            #[cfg(feature = "TravelAgency")] Self::TravelAgency(_) => String::from("travelagency"),
            #[cfg(feature = "Optician")] Self::Optician(_) => String::from("optician"),
            #[cfg(feature = "SiteNavigationElement")] Self::SiteNavigationElement(_) => String::from("sitenavigationelement"),
            #[cfg(feature = "Church")] Self::Church(_) => String::from("church"),
            #[cfg(feature = "BookmarkAction")] Self::BookmarkAction(_) => String::from("bookmarkaction"),
            #[cfg(feature = "MenuItem")] Self::MenuItem(_) => String::from("menuitem"),
            #[cfg(feature = "InsertAction")] Self::InsertAction(_) => String::from("insertaction"),
            #[cfg(feature = "Pharmacy")] Self::Pharmacy(_) => String::from("pharmacy"),
            #[cfg(feature = "RadioSeason")] Self::RadioSeason(_) => String::from("radioseason"),
            #[cfg(feature = "SportsOrganization")] Self::SportsOrganization(_) => String::from("sportsorganization"),
            #[cfg(feature = "LegalService")] Self::LegalService(_) => String::from("legalservice"),
            #[cfg(feature = "DigitalDocumentPermission")] Self::DigitalDocumentPermission(_) => String::from("digitaldocumentpermission"),
            #[cfg(feature = "HardwareStore")] Self::HardwareStore(_) => String::from("hardwarestore"),
            #[cfg(feature = "Recipe")] Self::Recipe(_) => String::from("recipe"),
            #[cfg(feature = "MapCategoryType")] Self::MapCategoryType(_) => String::from("mapcategorytype"),
            #[cfg(feature = "AchieveAction")] Self::AchieveAction(_) => String::from("achieveaction"),
            #[cfg(feature = "PerformingGroup")] Self::PerformingGroup(_) => String::from("performinggroup"),
            #[cfg(feature = "InfectiousAgentClass")] Self::InfectiousAgentClass(_) => String::from("infectiousagentclass"),
            #[cfg(feature = "Event")] Self::Event(_) => String::from("event"),
            #[cfg(feature = "Room")] Self::Room(_) => String::from("room"),
            #[cfg(feature = "Gene")] Self::Gene(_) => String::from("gene"),
            #[cfg(feature = "ClothingStore")] Self::ClothingStore(_) => String::from("clothingstore"),
            #[cfg(feature = "VideoObject")] Self::VideoObject(_) => String::from("videoobject"),
            #[cfg(feature = "FinancialService")] Self::FinancialService(_) => String::from("financialservice"),
            #[cfg(feature = "Game")] Self::Game(_) => String::from("game"),
            #[cfg(feature = "CheckoutPage")] Self::CheckoutPage(_) => String::from("checkoutpage"),
            #[cfg(feature = "TakeAction")] Self::TakeAction(_) => String::from("takeaction"),
            #[cfg(feature = "PathologyTest")] Self::PathologyTest(_) => String::from("pathologytest"),
            #[cfg(feature = "AdultOrientedEnumeration")] Self::AdultOrientedEnumeration(_) => String::from("adultorientedenumeration"),
            #[cfg(feature = "RecommendedDoseSchedule")] Self::RecommendedDoseSchedule(_) => String::from("recommendeddoseschedule"),
            #[cfg(feature = "CovidTestingFacility")] Self::CovidTestingFacility(_) => String::from("covidtestingfacility"),
            #[cfg(feature = "SpecialAnnouncement")] Self::SpecialAnnouncement(_) => String::from("specialannouncement"),
            #[cfg(feature = "Legislation")] Self::Legislation(_) => String::from("legislation"),
            #[cfg(feature = "VideoGallery")] Self::VideoGallery(_) => String::from("videogallery"),
            #[cfg(feature = "MusicComposition")] Self::MusicComposition(_) => String::from("musiccomposition"),
            #[cfg(feature = "DonateAction")] Self::DonateAction(_) => String::from("donateaction"),
            #[cfg(feature = "ItemPage")] Self::ItemPage(_) => String::from("itempage"),
            #[cfg(feature = "ChildCare")] Self::ChildCare(_) => String::from("childcare"),
            #[cfg(feature = "ShippingRateSettings")] Self::ShippingRateSettings(_) => String::from("shippingratesettings"),
            #[cfg(feature = "UserInteraction")] Self::UserInteraction(_) => String::from("userinteraction"),
            #[cfg(feature = "CoverArt")] Self::CoverArt(_) => String::from("coverart"),
            #[cfg(feature = "StatisticalPopulation")] Self::StatisticalPopulation(_) => String::from("statisticalpopulation"),
            #[cfg(feature = "DataDownload")] Self::DataDownload(_) => String::from("datadownload"),
            #[cfg(feature = "ReviewAction")] Self::ReviewAction(_) => String::from("reviewaction"),
            #[cfg(feature = "Courthouse")] Self::Courthouse(_) => String::from("courthouse"),
            #[cfg(feature = "SheetMusic")] Self::SheetMusic(_) => String::from("sheetmusic"),
            #[cfg(feature = "AmpStory")] Self::AmpStory(_) => String::from("ampstory"),
            #[cfg(feature = "Hackathon")] Self::Hackathon(_) => String::from("hackathon"),
            #[cfg(feature = "CarUsageType")] Self::CarUsageType(_) => String::from("carusagetype"),
            #[cfg(feature = "LegalForceStatus")] Self::LegalForceStatus(_) => String::from("legalforcestatus"),
            #[cfg(feature = "ReturnMethodEnumeration")] Self::ReturnMethodEnumeration(_) => String::from("returnmethodenumeration"),
            #[cfg(feature = "ElectronicsStore")] Self::ElectronicsStore(_) => String::from("electronicsstore"),
            #[cfg(feature = "OceanBodyOfWater")] Self::OceanBodyOfWater(_) => String::from("oceanbodyofwater"),
            #[cfg(feature = "EventReservation")] Self::EventReservation(_) => String::from("eventreservation"),
            #[cfg(feature = "ConvenienceStore")] Self::ConvenienceStore(_) => String::from("conveniencestore"),
            #[cfg(feature = "ScheduleAction")] Self::ScheduleAction(_) => String::from("scheduleaction"),
            #[cfg(feature = "RefundTypeEnumeration")] Self::RefundTypeEnumeration(_) => String::from("refundtypeenumeration"),
            #[cfg(feature = "ContactPointOption")] Self::ContactPointOption(_) => String::from("contactpointoption"),
            #[cfg(feature = "PresentationDigitalDocument")] Self::PresentationDigitalDocument(_) => String::from("presentationdigitaldocument"),
            #[cfg(feature = "MusicStore")] Self::MusicStore(_) => String::from("musicstore"),
            #[cfg(feature = "OnDemandEvent")] Self::OnDemandEvent(_) => String::from("ondemandevent"),
            #[cfg(feature = "Poster")] Self::Poster(_) => String::from("poster"),
            #[cfg(feature = "DanceGroup")] Self::DanceGroup(_) => String::from("dancegroup"),
            #[cfg(feature = "DeliveryEvent")] Self::DeliveryEvent(_) => String::from("deliveryevent"),
            #[cfg(feature = "VideoGameClip")] Self::VideoGameClip(_) => String::from("videogameclip"),
            #[cfg(feature = "OwnershipInfo")] Self::OwnershipInfo(_) => String::from("ownershipinfo"),
            #[cfg(feature = "BusOrCoach")] Self::BusOrCoach(_) => String::from("busorcoach"),
            #[cfg(feature = "MedicalEntity")] Self::MedicalEntity(_) => String::from("medicalentity"),
            #[cfg(feature = "EndorseAction")] Self::EndorseAction(_) => String::from("endorseaction"),
            #[cfg(feature = "Photograph")] Self::Photograph(_) => String::from("photograph"),
            #[cfg(feature = "MovieRentalStore")] Self::MovieRentalStore(_) => String::from("movierentalstore"),
            #[cfg(feature = "SportingGoodsStore")] Self::SportingGoodsStore(_) => String::from("sportinggoodsstore"),
            #[cfg(feature = "EatAction")] Self::EatAction(_) => String::from("eataction"),
            #[cfg(feature = "LegislativeBuilding")] Self::LegislativeBuilding(_) => String::from("legislativebuilding"),
            #[cfg(feature = "MovieClip")] Self::MovieClip(_) => String::from("movieclip"),
            #[cfg(feature = "UnRegisterAction")] Self::UnRegisterAction(_) => String::from("unregisteraction"),
            #[cfg(feature = "CivicStructure")] Self::CivicStructure(_) => String::from("civicstructure"),
            #[cfg(feature = "ComicCoverArt")] Self::ComicCoverArt(_) => String::from("comiccoverart"),
            #[cfg(feature = "AutoDealer")] Self::AutoDealer(_) => String::from("autodealer"),
            #[cfg(feature = "EmploymentAgency")] Self::EmploymentAgency(_) => String::from("employmentagency"),
            #[cfg(feature = "SkiResort")] Self::SkiResort(_) => String::from("skiresort"),
            #[cfg(feature = "Consortium")] Self::Consortium(_) => String::from("consortium"),
            #[cfg(feature = "HighSchool")] Self::HighSchool(_) => String::from("highschool"),
            #[cfg(feature = "MedicalTrialDesign")] Self::MedicalTrialDesign(_) => String::from("medicaltrialdesign"),
            #[cfg(feature = "UKNonprofitType")] Self::UKNonprofitType(_) => String::from("uknonprofittype"),
            #[cfg(feature = "Store")] Self::Store(_) => String::from("store"),
            #[cfg(feature = "MedicalGuideline")] Self::MedicalGuideline(_) => String::from("medicalguideline"),
            #[cfg(feature = "PriceSpecification")] Self::PriceSpecification(_) => String::from("pricespecification"),
            #[cfg(feature = "MedicalContraindication")] Self::MedicalContraindication(_) => String::from("medicalcontraindication"),
            #[cfg(feature = "FollowAction")] Self::FollowAction(_) => String::from("followaction"),
            #[cfg(feature = "BloodTest")] Self::BloodTest(_) => String::from("bloodtest"),
            #[cfg(feature = "Park")] Self::Park(_) => String::from("park"),
            #[cfg(feature = "TVClip")] Self::TVClip(_) => String::from("tvclip"),
            #[cfg(feature = "OfferForLease")] Self::OfferForLease(_) => String::from("offerforlease"),
            #[cfg(feature = "ImagingTest")] Self::ImagingTest(_) => String::from("imagingtest"),
            #[cfg(feature = "City")] Self::City(_) => String::from("city"),
            #[cfg(feature = "WPSideBar")] Self::WPSideBar(_) => String::from("wpsidebar"),
            #[cfg(feature = "WatchAction")] Self::WatchAction(_) => String::from("watchaction"),
            #[cfg(feature = "MedicalEvidenceLevel")] Self::MedicalEvidenceLevel(_) => String::from("medicalevidencelevel"),
            #[cfg(feature = "ConfirmAction")] Self::ConfirmAction(_) => String::from("confirmaction"),
            #[cfg(feature = "BusStop")] Self::BusStop(_) => String::from("busstop"),
            #[cfg(feature = "Quotation")] Self::Quotation(_) => String::from("quotation"),
            #[cfg(feature = "ItemList")] Self::ItemList(_) => String::from("itemlist"),
            #[cfg(feature = "ControlAction")] Self::ControlAction(_) => String::from("controlaction"),
            #[cfg(feature = "SizeGroupEnumeration")] Self::SizeGroupEnumeration(_) => String::from("sizegroupenumeration"),
            #[cfg(feature = "GeospatialGeometry")] Self::GeospatialGeometry(_) => String::from("geospatialgeometry"),
            #[cfg(feature = "DrinkAction")] Self::DrinkAction(_) => String::from("drinkaction"),
            #[cfg(feature = "MedicalProcedureType")] Self::MedicalProcedureType(_) => String::from("medicalproceduretype"),
            #[cfg(feature = "ApprovedIndication")] Self::ApprovedIndication(_) => String::from("approvedindication"),
            #[cfg(feature = "OrderStatus")] Self::OrderStatus(_) => String::from("orderstatus"),
            #[cfg(feature = "Motorcycle")] Self::Motorcycle(_) => String::from("motorcycle"),
            #[cfg(feature = "DiscussionForumPosting")] Self::DiscussionForumPosting(_) => String::from("discussionforumposting"),
            #[cfg(feature = "UnitPriceSpecification")] Self::UnitPriceSpecification(_) => String::from("unitpricespecification"),
            #[cfg(feature = "UserPlays")] Self::UserPlays(_) => String::from("userplays"),
            #[cfg(feature = "Action")] Self::Action(_) => String::from("action"),
            #[cfg(feature = "LandmarksOrHistoricalBuildings")] Self::LandmarksOrHistoricalBuildings(_) => String::from("landmarksorhistoricalbuildings"),
            #[cfg(feature = "HomeGoodsStore")] Self::HomeGoodsStore(_) => String::from("homegoodsstore"),
            #[cfg(feature = "EnergyEfficiencyEnumeration")] Self::EnergyEfficiencyEnumeration(_) => String::from("energyefficiencyenumeration"),
            #[cfg(feature = "BuyAction")] Self::BuyAction(_) => String::from("buyaction"),
            #[cfg(feature = "RejectAction")] Self::RejectAction(_) => String::from("rejectaction"),
            #[cfg(feature = "Review")] Self::Review(_) => String::from("review"),
            #[cfg(feature = "HowToSupply")] Self::HowToSupply(_) => String::from("howtosupply"),
            #[cfg(feature = "BroadcastService")] Self::BroadcastService(_) => String::from("broadcastservice"),
            #[cfg(feature = "Conversation")] Self::Conversation(_) => String::from("conversation"),
            #[cfg(feature = "EducationalAudience")] Self::EducationalAudience(_) => String::from("educationalaudience"),
            #[cfg(feature = "MediaManipulationRatingEnumeration")] Self::MediaManipulationRatingEnumeration(_) => String::from("mediamanipulationratingenumeration"),
            #[cfg(feature = "VitalSign")] Self::VitalSign(_) => String::from("vitalsign"),
            #[cfg(feature = "MedicalCondition")] Self::MedicalCondition(_) => String::from("medicalcondition"),
            #[cfg(feature = "TheaterEvent")] Self::TheaterEvent(_) => String::from("theaterevent"),
            #[cfg(feature = "AllocateAction")] Self::AllocateAction(_) => String::from("allocateaction"),
            #[cfg(feature = "PriceTypeEnumeration")] Self::PriceTypeEnumeration(_) => String::from("pricetypeenumeration"),
            #[cfg(feature = "TreatmentIndication")] Self::TreatmentIndication(_) => String::from("treatmentindication"),
            #[cfg(feature = "ReplaceAction")] Self::ReplaceAction(_) => String::from("replaceaction"),
            #[cfg(feature = "MeasurementTypeEnumeration")] Self::MeasurementTypeEnumeration(_) => String::from("measurementtypeenumeration"),
            #[cfg(feature = "DefenceEstablishment")] Self::DefenceEstablishment(_) => String::from("defenceestablishment"),
            #[cfg(feature = "MolecularEntity")] Self::MolecularEntity(_) => String::from("molecularentity"),
            #[cfg(feature = "LiteraryEvent")] Self::LiteraryEvent(_) => String::from("literaryevent"),
            #[cfg(feature = "ComputerStore")] Self::ComputerStore(_) => String::from("computerstore"),
            #[cfg(feature = "PostalAddress")] Self::PostalAddress(_) => String::from("postaladdress"),
            #[cfg(feature = "ActivateAction")] Self::ActivateAction(_) => String::from("activateaction"),
            #[cfg(feature = "Offer")] Self::Offer(_) => String::from("offer"),
            #[cfg(feature = "PropertyValueSpecification")] Self::PropertyValueSpecification(_) => String::from("propertyvaluespecification"),
            #[cfg(feature = "Language")] Self::Language(_) => String::from("language"),
            #[cfg(feature = "RentAction")] Self::RentAction(_) => String::from("rentaction"),
            #[cfg(feature = "SearchResultsPage")] Self::SearchResultsPage(_) => String::from("searchresultspage"),
            #[cfg(feature = "Bone")] Self::Bone(_) => String::from("bone"),
            #[cfg(feature = "Movie")] Self::Movie(_) => String::from("movie"),
            #[cfg(feature = "VisualArtwork")] Self::VisualArtwork(_) => String::from("visualartwork"),
            #[cfg(feature = "MedicalStudy")] Self::MedicalStudy(_) => String::from("medicalstudy"),
            #[cfg(feature = "TouristInformationCenter")] Self::TouristInformationCenter(_) => String::from("touristinformationcenter"),
            #[cfg(feature = "RsvpResponseType")] Self::RsvpResponseType(_) => String::from("rsvpresponsetype"),
            #[cfg(feature = "Comment")] Self::Comment(_) => String::from("comment"),
            #[cfg(feature = "Series")] Self::Series(_) => String::from("series"),
            #[cfg(feature = "SportsActivityLocation")] Self::SportsActivityLocation(_) => String::from("sportsactivitylocation"),
            #[cfg(feature = "TransferAction")] Self::TransferAction(_) => String::from("transferaction"),
            #[cfg(feature = "NoteDigitalDocument")] Self::NoteDigitalDocument(_) => String::from("notedigitaldocument"),
            #[cfg(feature = "Specialty")] Self::Specialty(_) => String::from("specialty"),
            #[cfg(feature = "MusicVideoObject")] Self::MusicVideoObject(_) => String::from("musicvideoobject"),
            #[cfg(feature = "DDxElement")] Self::DDxElement(_) => String::from("ddxelement"),
            #[cfg(feature = "ContactPage")] Self::ContactPage(_) => String::from("contactpage"),
            #[cfg(feature = "Book")] Self::Book(_) => String::from("book"),
            #[cfg(feature = "FoodEstablishment")] Self::FoodEstablishment(_) => String::from("foodestablishment"),
            #[cfg(feature = "BankAccount")] Self::BankAccount(_) => String::from("bankaccount"),
            #[cfg(feature = "EducationalOrganization")] Self::EducationalOrganization(_) => String::from("educationalorganization"),
            #[cfg(feature = "VisualArtsEvent")] Self::VisualArtsEvent(_) => String::from("visualartsevent"),
            #[cfg(feature = "PublicationVolume")] Self::PublicationVolume(_) => String::from("publicationvolume"),
            #[cfg(feature = "ShortStory")] Self::ShortStory(_) => String::from("shortstory"),
            #[cfg(feature = "Campground")] Self::Campground(_) => String::from("campground"),
            #[cfg(feature = "Seat")] Self::Seat(_) => String::from("seat"),
            #[cfg(feature = "HealthClub")] Self::HealthClub(_) => String::from("healthclub"),
            #[cfg(feature = "MotorcycleDealer")] Self::MotorcycleDealer(_) => String::from("motorcycledealer"),
            #[cfg(feature = "ExhibitionEvent")] Self::ExhibitionEvent(_) => String::from("exhibitionevent"),
            #[cfg(feature = "Organization")] Self::Organization(_) => String::from("organization"),
            #[cfg(feature = "TrainTrip")] Self::TrainTrip(_) => String::from("traintrip"),
            #[cfg(feature = "RestrictedDiet")] Self::RestrictedDiet(_) => String::from("restricteddiet"),
            #[cfg(feature = "HealthPlanNetwork")] Self::HealthPlanNetwork(_) => String::from("healthplannetwork"),
            #[cfg(feature = "NewsMediaOrganization")] Self::NewsMediaOrganization(_) => String::from("newsmediaorganization"),
            #[cfg(feature = "Course")] Self::Course(_) => String::from("course"),
            #[cfg(feature = "RegisterAction")] Self::RegisterAction(_) => String::from("registeraction"),
            #[cfg(feature = "MedicalGuidelineRecommendation")] Self::MedicalGuidelineRecommendation(_) => String::from("medicalguidelinerecommendation"),
            #[cfg(feature = "DaySpa")] Self::DaySpa(_) => String::from("dayspa"),
            #[cfg(feature = "GovernmentPermit")] Self::GovernmentPermit(_) => String::from("governmentpermit"),
            #[cfg(feature = "PronounceableText")] Self::PronounceableText(_) => String::from("pronounceabletext"),
            #[cfg(feature = "Beach")] Self::Beach(_) => String::from("beach"),
            #[cfg(feature = "PriceComponentTypeEnumeration")] Self::PriceComponentTypeEnumeration(_) => String::from("pricecomponenttypeenumeration"),
            #[cfg(feature = "OfferShippingDetails")] Self::OfferShippingDetails(_) => String::from("offershippingdetails"),
            #[cfg(feature = "Aquarium")] Self::Aquarium(_) => String::from("aquarium"),
            #[cfg(feature = "ArchiveComponent")] Self::ArchiveComponent(_) => String::from("archivecomponent"),
            #[cfg(feature = "CompoundPriceSpecification")] Self::CompoundPriceSpecification(_) => String::from("compoundpricespecification"),
            #[cfg(feature = "Embassy")] Self::Embassy(_) => String::from("embassy"),
            #[cfg(feature = "MaximumDoseSchedule")] Self::MaximumDoseSchedule(_) => String::from("maximumdoseschedule"),
            #[cfg(feature = "HowToDirection")] Self::HowToDirection(_) => String::from("howtodirection"),
            #[cfg(feature = "PsychologicalTreatment")] Self::PsychologicalTreatment(_) => String::from("psychologicaltreatment"),
            #[cfg(feature = "MedicalBusiness")] Self::MedicalBusiness(_) => String::from("medicalbusiness"),
            #[cfg(feature = "SoftwareSourceCode")] Self::SoftwareSourceCode(_) => String::from("softwaresourcecode"),
            #[cfg(feature = "PaymentChargeSpecification")] Self::PaymentChargeSpecification(_) => String::from("paymentchargespecification"),
            #[cfg(feature = "DrugCostCategory")] Self::DrugCostCategory(_) => String::from("drugcostcategory"),
            #[cfg(feature = "Table")] Self::Table(_) => String::from("table"),
            #[cfg(feature = "GovernmentOrganization")] Self::GovernmentOrganization(_) => String::from("governmentorganization"),
            #[cfg(feature = "FilmAction")] Self::FilmAction(_) => String::from("filmaction"),
            #[cfg(feature = "WriteAction")] Self::WriteAction(_) => String::from("writeaction"),
            #[cfg(feature = "MedicalSymptom")] Self::MedicalSymptom(_) => String::from("medicalsymptom"),
            #[cfg(feature = "InternetCafe")] Self::InternetCafe(_) => String::from("internetcafe"),
            #[cfg(feature = "VirtualLocation")] Self::VirtualLocation(_) => String::from("virtuallocation"),
            #[cfg(feature = "AnatomicalStructure")] Self::AnatomicalStructure(_) => String::from("anatomicalstructure"),
            #[cfg(feature = "QualitativeValue")] Self::QualitativeValue(_) => String::from("qualitativevalue"),
            #[cfg(feature = "DiscoverAction")] Self::DiscoverAction(_) => String::from("discoveraction"),
            #[cfg(feature = "OccupationalTherapy")] Self::OccupationalTherapy(_) => String::from("occupationaltherapy"),
            #[cfg(feature = "DownloadAction")] Self::DownloadAction(_) => String::from("downloadaction"),
            #[cfg(feature = "AnalysisNewsArticle")] Self::AnalysisNewsArticle(_) => String::from("analysisnewsarticle"),
            #[cfg(feature = "VideoGame")] Self::VideoGame(_) => String::from("videogame"),
            #[cfg(feature = "MeetingRoom")] Self::MeetingRoom(_) => String::from("meetingroom"),
            #[cfg(feature = "RoofingContractor")] Self::RoofingContractor(_) => String::from("roofingcontractor"),
            #[cfg(feature = "DefinedTermSet")] Self::DefinedTermSet(_) => String::from("definedtermset"),
            #[cfg(feature = "HowTo")] Self::HowTo(_) => String::from("howto"),
            #[cfg(feature = "ComicIssue")] Self::ComicIssue(_) => String::from("comicissue"),
            #[cfg(feature = "Vehicle")] Self::Vehicle(_) => String::from("vehicle"),
            #[cfg(feature = "ExerciseAction")] Self::ExerciseAction(_) => String::from("exerciseaction"),
            #[cfg(feature = "GiveAction")] Self::GiveAction(_) => String::from("giveaction"),
            #[cfg(feature = "Synagogue")] Self::Synagogue(_) => String::from("synagogue"),
            #[cfg(feature = "HowToStep")] Self::HowToStep(_) => String::from("howtostep"),
            #[cfg(feature = "ItemAvailability")] Self::ItemAvailability(_) => String::from("itemavailability"),
            #[cfg(feature = "GovernmentBuilding")] Self::GovernmentBuilding(_) => String::from("governmentbuilding"),
            #[cfg(feature = "Play")] Self::Play(_) => String::from("play"),
            #[cfg(feature = "Suite")] Self::Suite(_) => String::from("suite"),
            #[cfg(feature = "SomeProducts")] Self::SomeProducts(_) => String::from("someproducts"),
            #[cfg(feature = "DrugLegalStatus")] Self::DrugLegalStatus(_) => String::from("druglegalstatus"),
            #[cfg(feature = "USNonprofitType")] Self::USNonprofitType(_) => String::from("usnonprofittype"),
            #[cfg(feature = "TheaterGroup")] Self::TheaterGroup(_) => String::from("theatergroup"),
            #[cfg(feature = "Apartment")] Self::Apartment(_) => String::from("apartment"),
            #[cfg(feature = "HealthAspectEnumeration")] Self::HealthAspectEnumeration(_) => String::from("healthaspectenumeration"),
            #[cfg(feature = "MedicalObservationalStudy")] Self::MedicalObservationalStudy(_) => String::from("medicalobservationalstudy"),
            #[cfg(feature = "Hostel")] Self::Hostel(_) => String::from("hostel"),
            #[cfg(feature = "Invoice")] Self::Invoice(_) => String::from("invoice"),
            #[cfg(feature = "SolveMathAction")] Self::SolveMathAction(_) => String::from("solvemathaction"),
            #[cfg(feature = "Trip")] Self::Trip(_) => String::from("trip"),
            #[cfg(feature = "OrganizeAction")] Self::OrganizeAction(_) => String::from("organizeaction"),
            #[cfg(feature = "MensClothingStore")] Self::MensClothingStore(_) => String::from("mensclothingstore"),
            #[cfg(feature = "PawnShop")] Self::PawnShop(_) => String::from("pawnshop"),
            #[cfg(feature = "GeoCoordinates")] Self::GeoCoordinates(_) => String::from("geocoordinates"),
            #[cfg(feature = "Airline")] Self::Airline(_) => String::from("airline"),
            #[cfg(feature = "RadioChannel")] Self::RadioChannel(_) => String::from("radiochannel"),
            #[cfg(feature = "Syllabus")] Self::Syllabus(_) => String::from("syllabus"),
            #[cfg(feature = "WinAction")] Self::WinAction(_) => String::from("winaction"),
            #[cfg(feature = "Prion")] Self::Prion(_) => String::from("prion"),
            #[cfg(feature = "Hotel")] Self::Hotel(_) => String::from("hotel"),
            #[cfg(feature = "Answer")] Self::Answer(_) => String::from("answer"),
            #[cfg(feature = "MedicalRiskFactor")] Self::MedicalRiskFactor(_) => String::from("medicalriskfactor"),
            #[cfg(feature = "WebContent")] Self::WebContent(_) => String::from("webcontent"),
            #[cfg(feature = "BarOrPub")] Self::BarOrPub(_) => String::from("barorpub"),
            #[cfg(feature = "OutletStore")] Self::OutletStore(_) => String::from("outletstore"),
            #[cfg(feature = "Periodical")] Self::Periodical(_) => String::from("periodical"),
            #[cfg(feature = "PerformingArtsTheater")] Self::PerformingArtsTheater(_) => String::from("performingartstheater"),
            #[cfg(feature = "Hospital")] Self::Hospital(_) => String::from("hospital"),
            #[cfg(feature = "State")] Self::State(_) => String::from("state"),
            #[cfg(feature = "Schedule")] Self::Schedule(_) => String::from("schedule"),
            #[cfg(feature = "ServiceChannel")] Self::ServiceChannel(_) => String::from("servicechannel"),
            #[cfg(feature = "OrganizationRole")] Self::OrganizationRole(_) => String::from("organizationrole"),
            #[cfg(feature = "Reservation")] Self::Reservation(_) => String::from("reservation"),
            #[cfg(feature = "DrawAction")] Self::DrawAction(_) => String::from("drawaction"),
            #[cfg(feature = "Person")] Self::Person(_) => String::from("person"),
            #[cfg(feature = "GeneralContractor")] Self::GeneralContractor(_) => String::from("generalcontractor"),
            #[cfg(feature = "Nerve")] Self::Nerve(_) => String::from("nerve"),
            #[cfg(feature = "Volcano")] Self::Volcano(_) => String::from("volcano"),
            #[cfg(feature = "Reservoir")] Self::Reservoir(_) => String::from("reservoir"),
            #[cfg(feature = "CollectionPage")] Self::CollectionPage(_) => String::from("collectionpage"),
            #[cfg(feature = "Question")] Self::Question(_) => String::from("question"),
            #[cfg(feature = "WPAdBlock")] Self::WPAdBlock(_) => String::from("wpadblock"),
            #[cfg(feature = "TechArticle")] Self::TechArticle(_) => String::from("techarticle"),
            #[cfg(feature = "Mosque")] Self::Mosque(_) => String::from("mosque"),
            #[cfg(feature = "GasStation")] Self::GasStation(_) => String::from("gasstation"),
            #[cfg(feature = "SportsClub")] Self::SportsClub(_) => String::from("sportsclub"),
            #[cfg(feature = "UserPlusOnes")] Self::UserPlusOnes(_) => String::from("userplusones"),
            #[cfg(feature = "DrugClass")] Self::DrugClass(_) => String::from("drugclass"),
            #[cfg(feature = "QAPage")] Self::QAPage(_) => String::from("qapage"),
            #[cfg(feature = "EventAttendanceModeEnumeration")] Self::EventAttendanceModeEnumeration(_) => String::from("eventattendancemodeenumeration"),
            #[cfg(feature = "InvestmentFund")] Self::InvestmentFund(_) => String::from("investmentfund"),
            #[cfg(feature = "MusicVenue")] Self::MusicVenue(_) => String::from("musicvenue"),
            _ => String::from("none"),
        }
    }
}