aboutsummaryrefslogtreecommitdiffhomepage
path: root/json/vk.json
blob: f8451019f5d4339193c590245e391e63cd3a9ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
{
"$schema": "http://json-schema.org/draft-04/schema#", 
"id": "https://schema.khronos.org/vulkan/vk.json#",
"title": "JSON schema for Vulkan SC",
"description": "Schema for representing entire vk.xml as a schema.",
"type": "object",
"additionalProperties": true,
"definitions": {
    "$schema": {"type": "string", "format": "uri"},
    "uint8_t": {"type": "integer", "minimum": 0, "maximum": 255},
    "int32_t": {"type": "integer", "minimum": -2147483648, "maximum": 2147483647},
    "uint32_t": {"type": "integer", "minimum": 0, "maximum": 4294967295},
    "uint64_t": {"oneOf": [{"enum": [""]},{"type": "integer"}]},
    "char": {"type": "string"},
    "float": {"type": "number"},
    "size_t": {"$ref": "#/definitions/uint32_t"},
    "enum": {"type": "string"},
    "void": {"enum": ["NULL", ""]},
    "VkBuffer": {"$ref": "#/definitions/uint64_t"},
    "VkImage": {"$ref": "#/definitions/uint64_t"},
    "VkInstance": {"$ref": "#/definitions/uint64_t"},
    "VkPhysicalDevice": {"$ref": "#/definitions/uint64_t"},
    "VkDevice": {"$ref": "#/definitions/uint64_t"},
    "VkQueue": {"$ref": "#/definitions/uint64_t"},
    "VkSemaphore": {"$ref": "#/definitions/uint64_t"},
    "VkCommandBuffer": {"$ref": "#/definitions/uint64_t"},
    "VkFence": {"$ref": "#/definitions/uint64_t"},
    "VkDeviceMemory": {"$ref": "#/definitions/uint64_t"},
    "VkEvent": {"$ref": "#/definitions/uint64_t"},
    "VkQueryPool": {"$ref": "#/definitions/uint64_t"},
    "VkBufferView": {"$ref": "#/definitions/uint64_t"},
    "VkImageView": {"$ref": "#/definitions/uint64_t"},
    "VkShaderModule": {"$ref": "#/definitions/uint64_t"},
    "VkPipelineCache": {"$ref": "#/definitions/uint64_t"},
    "VkPipelineLayout": {"$ref": "#/definitions/uint64_t"},
    "VkPipeline": {"$ref": "#/definitions/uint64_t"},
    "VkRenderPass": {"$ref": "#/definitions/uint64_t"},
    "VkDescriptorSetLayout": {"$ref": "#/definitions/uint64_t"},
    "VkSampler": {"$ref": "#/definitions/uint64_t"},
    "VkDescriptorSet": {"$ref": "#/definitions/uint64_t"},
    "VkDescriptorPool": {"$ref": "#/definitions/uint64_t"},
    "VkFramebuffer": {"$ref": "#/definitions/uint64_t"},
    "VkCommandPool": {"$ref": "#/definitions/uint64_t"},
    "VkResult": {"$ref": "#/definitions/enum"},
    "VkStructureType": {"$ref": "#/definitions/enum"},
    "VkAccessFlagBits": {"$ref": "#/definitions/enum"},
    "VkImageLayout": {"$ref": "#/definitions/enum"},
    "VkImageAspectFlagBits": {"$ref": "#/definitions/enum"},
    "VkObjectType": {"$ref": "#/definitions/enum"},
    "VkPipelineCacheHeaderVersion": {"$ref": "#/definitions/enum"},
    "VkVendorId": {"$ref": "#/definitions/enum"},
    "VkSystemAllocationScope": {"$ref": "#/definitions/enum"},
    "VkInternalAllocationType": {"$ref": "#/definitions/enum"},
    "VkFormat": {"$ref": "#/definitions/enum"},
    "VkFormatFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkImageCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkSampleCountFlagBits": {"$ref": "#/definitions/enum"},
    "VkImageTiling": {"$ref": "#/definitions/enum"},
    "VkImageType": {"$ref": "#/definitions/enum"},
    "VkImageUsageFlagBits": {"$ref": "#/definitions/enum"},
    "VkMemoryHeapFlagBits": {"$ref": "#/definitions/enum"},
    "VkMemoryPropertyFlagBits": {"$ref": "#/definitions/enum"},
    "VkPhysicalDeviceType": {"$ref": "#/definitions/enum"},
    "VkQueueFlagBits": {"$ref": "#/definitions/enum"},
    "VkDeviceQueueCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkPipelineStageFlagBits": {"$ref": "#/definitions/enum"},
    "VkFenceCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkEventCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkQueryPipelineStatisticFlagBits": {"$ref": "#/definitions/enum"},
    "VkQueryType": {"$ref": "#/definitions/enum"},
    "VkQueryResultFlagBits": {"$ref": "#/definitions/enum"},
    "VkBufferCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkBufferUsageFlagBits": {"$ref": "#/definitions/enum"},
    "VkSharingMode": {"$ref": "#/definitions/enum"},
    "VkComponentSwizzle": {"$ref": "#/definitions/enum"},
    "VkImageViewCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkImageViewType": {"$ref": "#/definitions/enum"},
    "VkPipelineCacheCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkBlendFactor": {"$ref": "#/definitions/enum"},
    "VkBlendOp": {"$ref": "#/definitions/enum"},
    "VkColorComponentFlagBits": {"$ref": "#/definitions/enum"},
    "VkCompareOp": {"$ref": "#/definitions/enum"},
    "VkPipelineCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkPipelineShaderStageCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkShaderStageFlagBits": {"$ref": "#/definitions/enum"},
    "VkCullModeFlagBits": {"$ref": "#/definitions/enum"},
    "VkDynamicState": {"$ref": "#/definitions/enum"},
    "VkFrontFace": {"$ref": "#/definitions/enum"},
    "VkVertexInputRate": {"$ref": "#/definitions/enum"},
    "VkPrimitiveTopology": {"$ref": "#/definitions/enum"},
    "VkPolygonMode": {"$ref": "#/definitions/enum"},
    "VkStencilOp": {"$ref": "#/definitions/enum"},
    "VkLogicOp": {"$ref": "#/definitions/enum"},
    "VkBorderColor": {"$ref": "#/definitions/enum"},
    "VkFilter": {"$ref": "#/definitions/enum"},
    "VkSamplerAddressMode": {"$ref": "#/definitions/enum"},
    "VkSamplerCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkSamplerMipmapMode": {"$ref": "#/definitions/enum"},
    "VkDescriptorPoolCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkDescriptorType": {"$ref": "#/definitions/enum"},
    "VkDescriptorSetLayoutCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkAttachmentDescriptionFlagBits": {"$ref": "#/definitions/enum"},
    "VkAttachmentLoadOp": {"$ref": "#/definitions/enum"},
    "VkAttachmentStoreOp": {"$ref": "#/definitions/enum"},
    "VkDependencyFlagBits": {"$ref": "#/definitions/enum"},
    "VkFramebufferCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkPipelineBindPoint": {"$ref": "#/definitions/enum"},
    "VkRenderPassCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkSubpassDescriptionFlagBits": {"$ref": "#/definitions/enum"},
    "VkCommandPoolCreateFlagBits": {"$ref": "#/definitions/enum"},
    "VkCommandPoolResetFlagBits": {"$ref": "#/definitions/enum"},
    "VkCommandBufferLevel": {"$ref": "#/definitions/enum"},
    "VkCommandBufferUsageFlagBits": {"$ref": "#/definitions/enum"},
    "VkQueryControlFlagBits": {"$ref": "#/definitions/enum"},
    "VkCommandBufferResetFlagBits": {"$ref": "#/definitions/enum"},
    "VkIndexType": {"$ref": "#/definitions/enum"},
    "VkStencilFaceFlagBits": {"$ref": "#/definitions/enum"},
    "VkSubpassContents": {"$ref": "#/definitions/enum"},
    "VkBool32": {"oneOf": [{"$ref": "#/definitions/uint32_t"},{"enum": ["VK_TRUE", "VK_FALSE"]}]},
    "VkDeviceAddress": {"$ref": "#/definitions/uint64_t"},
    "VkDeviceSize": {"$ref": "#/definitions/uint64_t"},
    "VkFlags": {"oneOf": [{"$ref": "#/definitions/uint32_t"},{"$ref": "#/definitions/enum"}]},
    "VkAccessFlags": {"$ref": "#/definitions/VkFlags"},
    "VkImageAspectFlags": {"$ref": "#/definitions/VkFlags"},
    "VkFormatFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkImageCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSampleCountFlags": {"$ref": "#/definitions/VkFlags"},
    "VkImageUsageFlags": {"$ref": "#/definitions/VkFlags"},
    "VkInstanceCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkMemoryHeapFlags": {"$ref": "#/definitions/VkFlags"},
    "VkMemoryPropertyFlags": {"$ref": "#/definitions/VkFlags"},
    "VkQueueFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDeviceCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDeviceQueueCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineStageFlags": {"$ref": "#/definitions/VkFlags"},
    "VkMemoryMapFlags": {"$ref": "#/definitions/VkFlags"},
    "VkFenceCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSemaphoreCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkEventCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkQueryPipelineStatisticFlags": {"$ref": "#/definitions/VkFlags"},
    "VkQueryPoolCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkQueryResultFlags": {"$ref": "#/definitions/VkFlags"},
    "VkBufferCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkBufferUsageFlags": {"$ref": "#/definitions/VkFlags"},
    "VkBufferViewCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkImageViewCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineCacheCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkColorComponentFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineShaderStageCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkCullModeFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineVertexInputStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineInputAssemblyStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineTessellationStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineViewportStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineRasterizationStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineMultisampleStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSampleMask": {"$ref": "#/definitions/uint32_t"},
    "VkPipelineDepthStencilStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineColorBlendStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineDynamicStateCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPipelineLayoutCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkShaderStageFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSamplerCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDescriptorPoolCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDescriptorPoolResetFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDescriptorSetLayoutCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkAttachmentDescriptionFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDependencyFlags": {"$ref": "#/definitions/VkFlags"},
    "VkFramebufferCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkRenderPassCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSubpassDescriptionFlags": {"$ref": "#/definitions/VkFlags"},
    "VkCommandPoolCreateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkCommandPoolResetFlags": {"$ref": "#/definitions/VkFlags"},
    "VkCommandBufferUsageFlags": {"$ref": "#/definitions/VkFlags"},
    "VkQueryControlFlags": {"$ref": "#/definitions/VkFlags"},
    "VkCommandBufferResetFlags": {"$ref": "#/definitions/VkFlags"},
    "VkStencilFaceFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExtent2D": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "width": {"$ref": "#/definitions/uint32_t"},
            "height": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkExtent3D": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "width": {"$ref": "#/definitions/uint32_t"},
            "height": {"$ref": "#/definitions/uint32_t"},
            "depth": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkOffset2D": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/int32_t"},
            "y": {"$ref": "#/definitions/int32_t"}
        }
    },

    "VkOffset3D": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/int32_t"},
            "y": {"$ref": "#/definitions/int32_t"},
            "z": {"$ref": "#/definitions/int32_t"}
        }
    },

    "VkRect2D": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "offset": {"$ref": "#/definitions/VkOffset2D"},
            "extent": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkBaseInStructure": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/VkBaseInStructure"}
        }
    },

    "VkBaseOutStructure": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/VkBaseOutStructure"}
        }
    },

    "VkBufferMemoryBarrier": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "srcQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "dstQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "buffer": {"$ref": "#/definitions/VkBuffer"},
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkDispatchIndirectCommand": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/uint32_t"},
            "y": {"$ref": "#/definitions/uint32_t"},
            "z": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDrawIndexedIndirectCommand": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "indexCount": {"$ref": "#/definitions/uint32_t"},
            "instanceCount": {"$ref": "#/definitions/uint32_t"},
            "firstIndex": {"$ref": "#/definitions/uint32_t"},
            "vertexOffset": {"$ref": "#/definitions/int32_t"},
            "firstInstance": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDrawIndirectCommand": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "vertexCount": {"$ref": "#/definitions/uint32_t"},
            "instanceCount": {"$ref": "#/definitions/uint32_t"},
            "firstVertex": {"$ref": "#/definitions/uint32_t"},
            "firstInstance": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkImageSubresourceRange": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"},
            "baseMipLevel": {"$ref": "#/definitions/uint32_t"},
            "levelCount": {"$ref": "#/definitions/uint32_t"},
            "baseArrayLayer": {"$ref": "#/definitions/uint32_t"},
            "layerCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkImageMemoryBarrier": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "oldLayout": {"$ref": "#/definitions/VkImageLayout"},
            "newLayout": {"$ref": "#/definitions/VkImageLayout"},
            "srcQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "dstQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "image": {"$ref": "#/definitions/VkImage"},
            "subresourceRange": {"$ref": "#/definitions/VkImageSubresourceRange"}
        }
    },

    "VkMemoryBarrier": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags"}
        }
    },

    "VkPipelineCacheHeaderVersionOne": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "headerSize": {"$ref": "#/definitions/uint32_t"},
            "headerVersion": {"$ref": "#/definitions/VkPipelineCacheHeaderVersion"},
            "vendorID": {"$ref": "#/definitions/uint32_t"},
            "deviceID": {"$ref": "#/definitions/uint32_t"},
            "pipelineCacheUUID": {"$ref": "#/definitions/uint8_t"}
        }
    },

    "VkAllocationCallbacks": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "pUserData": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/void"}]},
            "pfnAllocation": {"$ref": "#/definitions/PFN_vkAllocationFunction"},
            "pfnReallocation": {"$ref": "#/definitions/PFN_vkReallocationFunction"},
            "pfnFree": {"$ref": "#/definitions/PFN_vkFreeFunction"},
            "pfnInternalAllocation": {"$ref": "#/definitions/PFN_vkInternalAllocationNotification"},
            "pfnInternalFree": {"$ref": "#/definitions/PFN_vkInternalFreeNotification"}
        }
    },

    "VkApplicationInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pApplicationName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "applicationVersion": {"$ref": "#/definitions/uint32_t"},
            "pEngineName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "engineVersion": {"$ref": "#/definitions/uint32_t"},
            "apiVersion": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkFormatProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "linearTilingFeatures": {"$ref": "#/definitions/VkFormatFeatureFlags"},
            "optimalTilingFeatures": {"$ref": "#/definitions/VkFormatFeatureFlags"},
            "bufferFeatures": {"$ref": "#/definitions/VkFormatFeatureFlags"}
        }
    },

    "VkImageFormatProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "maxExtent": {"$ref": "#/definitions/VkExtent3D"},
            "maxMipLevels": {"$ref": "#/definitions/uint32_t"},
            "maxArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "sampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "maxResourceSize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkInstanceCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkInstanceCreateFlags"},
            "pApplicationInfo": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkApplicationInfo"}]},
            "enabledLayerCount": {"$ref": "#/definitions/uint32_t"},
            "ppEnabledLayerNames": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]},
            "enabledExtensionCount": {"$ref": "#/definitions/uint32_t"},
            "ppEnabledExtensionNames": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]}
        }
    },

    "VkMemoryHeap": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "size": {"$ref": "#/definitions/VkDeviceSize"},
            "flags": {"$ref": "#/definitions/VkMemoryHeapFlags"}
        }
    },

    "VkMemoryType": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "propertyFlags": {"$ref": "#/definitions/VkMemoryPropertyFlags"},
            "heapIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "robustBufferAccess": {"$ref": "#/definitions/VkBool32"},
            "fullDrawIndexUint32": {"$ref": "#/definitions/VkBool32"},
            "imageCubeArray": {"$ref": "#/definitions/VkBool32"},
            "independentBlend": {"$ref": "#/definitions/VkBool32"},
            "geometryShader": {"$ref": "#/definitions/VkBool32"},
            "tessellationShader": {"$ref": "#/definitions/VkBool32"},
            "sampleRateShading": {"$ref": "#/definitions/VkBool32"},
            "dualSrcBlend": {"$ref": "#/definitions/VkBool32"},
            "logicOp": {"$ref": "#/definitions/VkBool32"},
            "multiDrawIndirect": {"$ref": "#/definitions/VkBool32"},
            "drawIndirectFirstInstance": {"$ref": "#/definitions/VkBool32"},
            "depthClamp": {"$ref": "#/definitions/VkBool32"},
            "depthBiasClamp": {"$ref": "#/definitions/VkBool32"},
            "fillModeNonSolid": {"$ref": "#/definitions/VkBool32"},
            "depthBounds": {"$ref": "#/definitions/VkBool32"},
            "wideLines": {"$ref": "#/definitions/VkBool32"},
            "largePoints": {"$ref": "#/definitions/VkBool32"},
            "alphaToOne": {"$ref": "#/definitions/VkBool32"},
            "multiViewport": {"$ref": "#/definitions/VkBool32"},
            "samplerAnisotropy": {"$ref": "#/definitions/VkBool32"},
            "textureCompressionETC2": {"$ref": "#/definitions/VkBool32"},
            "textureCompressionASTC_LDR": {"$ref": "#/definitions/VkBool32"},
            "textureCompressionBC": {"$ref": "#/definitions/VkBool32"},
            "occlusionQueryPrecise": {"$ref": "#/definitions/VkBool32"},
            "pipelineStatisticsQuery": {"$ref": "#/definitions/VkBool32"},
            "vertexPipelineStoresAndAtomics": {"$ref": "#/definitions/VkBool32"},
            "fragmentStoresAndAtomics": {"$ref": "#/definitions/VkBool32"},
            "shaderTessellationAndGeometryPointSize": {"$ref": "#/definitions/VkBool32"},
            "shaderImageGatherExtended": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageExtendedFormats": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageMultisample": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageReadWithoutFormat": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageWriteWithoutFormat": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderSampledImageArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderClipDistance": {"$ref": "#/definitions/VkBool32"},
            "shaderCullDistance": {"$ref": "#/definitions/VkBool32"},
            "shaderFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderInt64": {"$ref": "#/definitions/VkBool32"},
            "shaderInt16": {"$ref": "#/definitions/VkBool32"},
            "shaderResourceResidency": {"$ref": "#/definitions/VkBool32"},
            "shaderResourceMinLod": {"$ref": "#/definitions/VkBool32"},
            "sparseBinding": {"$ref": "#/definitions/VkBool32"},
            "sparseResidencyBuffer": {"$ref": "#/definitions/VkBool32"},
            "sparseResidencyImage2D": {"$ref": "#/definitions/VkBool32"},
            "sparseResidencyImage3D": {"$ref": "#/definitions/VkBool32"},
            "sparseResidency2Samples": {"$ref": "#/definitions/VkBool32"},
            "sparseResidency4Samples": {"$ref": "#/definitions/VkBool32"},
            "sparseResidency8Samples": {"$ref": "#/definitions/VkBool32"},
            "sparseResidency16Samples": {"$ref": "#/definitions/VkBool32"},
            "sparseResidencyAliased": {"$ref": "#/definitions/VkBool32"},
            "variableMultisampleRate": {"$ref": "#/definitions/VkBool32"},
            "inheritedQueries": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceLimits": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "maxImageDimension1D": {"$ref": "#/definitions/uint32_t"},
            "maxImageDimension2D": {"$ref": "#/definitions/uint32_t"},
            "maxImageDimension3D": {"$ref": "#/definitions/uint32_t"},
            "maxImageDimensionCube": {"$ref": "#/definitions/uint32_t"},
            "maxImageArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "maxTexelBufferElements": {"$ref": "#/definitions/uint32_t"},
            "maxUniformBufferRange": {"$ref": "#/definitions/uint32_t"},
            "maxStorageBufferRange": {"$ref": "#/definitions/uint32_t"},
            "maxPushConstantsSize": {"$ref": "#/definitions/uint32_t"},
            "maxMemoryAllocationCount": {"$ref": "#/definitions/uint32_t"},
            "maxSamplerAllocationCount": {"$ref": "#/definitions/uint32_t"},
            "bufferImageGranularity": {"$ref": "#/definitions/VkDeviceSize"},
            "sparseAddressSpaceSize": {"$ref": "#/definitions/VkDeviceSize"},
            "maxBoundDescriptorSets": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageResources": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUniformBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetStorageBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxVertexInputAttributes": {"$ref": "#/definitions/uint32_t"},
            "maxVertexInputBindings": {"$ref": "#/definitions/uint32_t"},
            "maxVertexInputAttributeOffset": {"$ref": "#/definitions/uint32_t"},
            "maxVertexInputBindingStride": {"$ref": "#/definitions/uint32_t"},
            "maxVertexOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationGenerationLevel": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationPatchSize": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationControlPerVertexInputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationControlPerVertexOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationControlPerPatchOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationControlTotalOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationEvaluationInputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxTessellationEvaluationOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxGeometryShaderInvocations": {"$ref": "#/definitions/uint32_t"},
            "maxGeometryInputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxGeometryOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxGeometryOutputVertices": {"$ref": "#/definitions/uint32_t"},
            "maxGeometryTotalOutputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentInputComponents": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentOutputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentDualSrcAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentCombinedOutputResources": {"$ref": "#/definitions/uint32_t"},
            "maxComputeSharedMemorySize": {"$ref": "#/definitions/uint32_t"},
            "maxComputeWorkGroupCount":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}},
            "maxComputeWorkGroupInvocations": {"$ref": "#/definitions/uint32_t"},
            "maxComputeWorkGroupSize":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}},
            "subPixelPrecisionBits": {"$ref": "#/definitions/uint32_t"},
            "subTexelPrecisionBits": {"$ref": "#/definitions/uint32_t"},
            "mipmapPrecisionBits": {"$ref": "#/definitions/uint32_t"},
            "maxDrawIndexedIndexValue": {"$ref": "#/definitions/uint32_t"},
            "maxDrawIndirectCount": {"$ref": "#/definitions/uint32_t"},
            "maxSamplerLodBias": {"$ref": "#/definitions/float"},
            "maxSamplerAnisotropy": {"$ref": "#/definitions/float"},
            "maxViewports": {"$ref": "#/definitions/uint32_t"},
            "maxViewportDimensions":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}},
            "viewportBoundsRange":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}},
            "viewportSubPixelBits": {"$ref": "#/definitions/uint32_t"},
            "minMemoryMapAlignment": {"$ref": "#/definitions/size_t"},
            "minTexelBufferOffsetAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "minUniformBufferOffsetAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "minStorageBufferOffsetAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "minTexelOffset": {"$ref": "#/definitions/int32_t"},
            "maxTexelOffset": {"$ref": "#/definitions/uint32_t"},
            "minTexelGatherOffset": {"$ref": "#/definitions/int32_t"},
            "maxTexelGatherOffset": {"$ref": "#/definitions/uint32_t"},
            "minInterpolationOffset": {"$ref": "#/definitions/float"},
            "maxInterpolationOffset": {"$ref": "#/definitions/float"},
            "subPixelInterpolationOffsetBits": {"$ref": "#/definitions/uint32_t"},
            "maxFramebufferWidth": {"$ref": "#/definitions/uint32_t"},
            "maxFramebufferHeight": {"$ref": "#/definitions/uint32_t"},
            "maxFramebufferLayers": {"$ref": "#/definitions/uint32_t"},
            "framebufferColorSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "framebufferDepthSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "framebufferStencilSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "framebufferNoAttachmentsSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "maxColorAttachments": {"$ref": "#/definitions/uint32_t"},
            "sampledImageColorSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "sampledImageIntegerSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "sampledImageDepthSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "sampledImageStencilSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "storageImageSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "maxSampleMaskWords": {"$ref": "#/definitions/uint32_t"},
            "timestampComputeAndGraphics": {"$ref": "#/definitions/VkBool32"},
            "timestampPeriod": {"$ref": "#/definitions/float"},
            "maxClipDistances": {"$ref": "#/definitions/uint32_t"},
            "maxCullDistances": {"$ref": "#/definitions/uint32_t"},
            "maxCombinedClipAndCullDistances": {"$ref": "#/definitions/uint32_t"},
            "discreteQueuePriorities": {"$ref": "#/definitions/uint32_t"},
            "pointSizeRange":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}},
            "lineWidthRange":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}},
            "pointSizeGranularity": {"$ref": "#/definitions/float"},
            "lineWidthGranularity": {"$ref": "#/definitions/float"},
            "strictLines": {"$ref": "#/definitions/VkBool32"},
            "standardSampleLocations": {"$ref": "#/definitions/VkBool32"},
            "optimalBufferCopyOffsetAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "optimalBufferCopyRowPitchAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "nonCoherentAtomSize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkPhysicalDeviceMemoryProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "memoryTypeCount": {"$ref": "#/definitions/uint32_t"},
            "memoryTypes": {"$ref": "#/definitions/VkMemoryType"},
            "memoryHeapCount": {"$ref": "#/definitions/uint32_t"},
            "memoryHeaps": {"$ref": "#/definitions/VkMemoryHeap"}
        }
    },

    "VkPhysicalDeviceSparseProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "residencyStandard2DBlockShape": {"$ref": "#/definitions/VkBool32"},
            "residencyStandard2DMultisampleBlockShape": {"$ref": "#/definitions/VkBool32"},
            "residencyStandard3DBlockShape": {"$ref": "#/definitions/VkBool32"},
            "residencyAlignedMipSize": {"$ref": "#/definitions/VkBool32"},
            "residencyNonResidentStrict": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "apiVersion": {"$ref": "#/definitions/uint32_t"},
            "driverVersion": {"$ref": "#/definitions/uint32_t"},
            "vendorID": {"$ref": "#/definitions/uint32_t"},
            "deviceID": {"$ref": "#/definitions/uint32_t"},
            "deviceType": {"$ref": "#/definitions/VkPhysicalDeviceType"},
            "deviceName": {"$ref": "#/definitions/char"},
            "pipelineCacheUUID": {"$ref": "#/definitions/uint8_t"},
            "limits": {"$ref": "#/definitions/VkPhysicalDeviceLimits"},
            "sparseProperties": {"$ref": "#/definitions/VkPhysicalDeviceSparseProperties"}
        }
    },

    "VkQueueFamilyProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "queueFlags": {"$ref": "#/definitions/VkQueueFlags"},
            "queueCount": {"$ref": "#/definitions/uint32_t"},
            "timestampValidBits": {"$ref": "#/definitions/uint32_t"},
            "minImageTransferGranularity": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkDeviceQueueCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDeviceQueueCreateFlags"},
            "queueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "queueCount": {"$ref": "#/definitions/uint32_t"},
            "pQueuePriorities": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}}]}
        }
    },

    "VkDeviceCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDeviceCreateFlags"},
            "queueCreateInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueCreateInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDeviceQueueCreateInfo"}}]},
            "enabledLayerCount": {"$ref": "#/definitions/uint32_t"},
            "ppEnabledLayerNames": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]},
            "enabledExtensionCount": {"$ref": "#/definitions/uint32_t"},
            "ppEnabledExtensionNames": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]},
            "pEnabledFeatures": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPhysicalDeviceFeatures"}]}
        }
    },

    "VkExtensionProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "extensionName": {"$ref": "#/definitions/char"},
            "specVersion": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkLayerProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "layerName": {"$ref": "#/definitions/char"},
            "specVersion": {"$ref": "#/definitions/uint32_t"},
            "implementationVersion": {"$ref": "#/definitions/uint32_t"},
            "description": {"$ref": "#/definitions/char"}
        }
    },

    "VkSubmitInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "waitSemaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pWaitSemaphores": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphore"}}]},
            "pWaitDstStageMask": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPipelineStageFlags"}}]},
            "commandBufferCount": {"$ref": "#/definitions/uint32_t"},
            "pCommandBuffers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkCommandBuffer"}}]},
            "signalSemaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pSignalSemaphores": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphore"}}]}
        }
    },

    "VkMappedMemoryRange": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memory": {"$ref": "#/definitions/VkDeviceMemory"},
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkMemoryAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "allocationSize": {"$ref": "#/definitions/VkDeviceSize"},
            "memoryTypeIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkMemoryRequirements": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "size": {"$ref": "#/definitions/VkDeviceSize"},
            "alignment": {"$ref": "#/definitions/VkDeviceSize"},
            "memoryTypeBits": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkImageSubresource": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"},
            "mipLevel": {"$ref": "#/definitions/uint32_t"},
            "arrayLayer": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkFenceCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkFenceCreateFlags"}
        }
    },

    "VkSemaphoreCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSemaphoreCreateFlags"}
        }
    },

    "VkEventCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkEventCreateFlags"}
        }
    },

    "VkQueryPoolCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkQueryPoolCreateFlags"},
            "queryType": {"$ref": "#/definitions/VkQueryType"},
            "queryCount": {"$ref": "#/definitions/uint32_t"},
            "pipelineStatistics": {"$ref": "#/definitions/VkQueryPipelineStatisticFlags"}
        }
    },

    "VkBufferCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkBufferCreateFlags"},
            "size": {"$ref": "#/definitions/VkDeviceSize"},
            "usage": {"$ref": "#/definitions/VkBufferUsageFlags"},
            "sharingMode": {"$ref": "#/definitions/VkSharingMode"},
            "queueFamilyIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueFamilyIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkBufferViewCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkBufferViewCreateFlags"},
            "buffer": {"$ref": "#/definitions/VkBuffer"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "range": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkImageCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkImageCreateFlags"},
            "imageType": {"$ref": "#/definitions/VkImageType"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "extent": {"$ref": "#/definitions/VkExtent3D"},
            "mipLevels": {"$ref": "#/definitions/uint32_t"},
            "arrayLayers": {"$ref": "#/definitions/uint32_t"},
            "samples": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "tiling": {"$ref": "#/definitions/VkImageTiling"},
            "usage": {"$ref": "#/definitions/VkImageUsageFlags"},
            "sharingMode": {"$ref": "#/definitions/VkSharingMode"},
            "queueFamilyIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueFamilyIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "initialLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkSubresourceLayout": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"},
            "rowPitch": {"$ref": "#/definitions/VkDeviceSize"},
            "arrayPitch": {"$ref": "#/definitions/VkDeviceSize"},
            "depthPitch": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkComponentMapping": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "r": {"$ref": "#/definitions/VkComponentSwizzle"},
            "g": {"$ref": "#/definitions/VkComponentSwizzle"},
            "b": {"$ref": "#/definitions/VkComponentSwizzle"},
            "a": {"$ref": "#/definitions/VkComponentSwizzle"}
        }
    },

    "VkImageViewCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkImageViewCreateFlags"},
            "image": {"$ref": "#/definitions/VkImage"},
            "viewType": {"$ref": "#/definitions/VkImageViewType"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "components": {"$ref": "#/definitions/VkComponentMapping"},
            "subresourceRange": {"$ref": "#/definitions/VkImageSubresourceRange"}
        }
    },

    "VkPipelineCacheCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineCacheCreateFlags"},
            "initialDataSize": {"$ref": "#/definitions/size_t"},
            "pInitialData": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/void"}}]}
        }
    },

    "VkSpecializationMapEntry": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "constantID": {"$ref": "#/definitions/uint32_t"},
            "offset": {"$ref": "#/definitions/uint32_t"},
            "size": {"$ref": "#/definitions/size_t"}
        }
    },

    "VkSpecializationInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "mapEntryCount": {"$ref": "#/definitions/uint32_t"},
            "pMapEntries": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSpecializationMapEntry"}}]},
            "dataSize": {"$ref": "#/definitions/size_t"},
            "pData": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/void"}}]}
        }
    },

    "VkPipelineShaderStageCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineShaderStageCreateFlags"},
            "stage": {"$ref": "#/definitions/VkShaderStageFlagBits"},
            "module": {"$ref": "#/definitions/VkShaderModule"},
            "pName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "pSpecializationInfo": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkSpecializationInfo"}]}
        }
    },

    "VkComputePipelineCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineCreateFlags"},
            "stage": {"$ref": "#/definitions/VkPipelineShaderStageCreateInfo"},
            "layout": {"$ref": "#/definitions/VkPipelineLayout"},
            "basePipelineHandle": {"$ref": "#/definitions/VkPipeline"},
            "basePipelineIndex": {"$ref": "#/definitions/int32_t"}
        }
    },

    "VkVertexInputBindingDescription": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "binding": {"$ref": "#/definitions/uint32_t"},
            "stride": {"$ref": "#/definitions/uint32_t"},
            "inputRate": {"$ref": "#/definitions/VkVertexInputRate"}
        }
    },

    "VkVertexInputAttributeDescription": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "location": {"$ref": "#/definitions/uint32_t"},
            "binding": {"$ref": "#/definitions/uint32_t"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "offset": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineVertexInputStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineVertexInputStateCreateFlags"},
            "vertexBindingDescriptionCount": {"$ref": "#/definitions/uint32_t"},
            "pVertexBindingDescriptions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkVertexInputBindingDescription"}}]},
            "vertexAttributeDescriptionCount": {"$ref": "#/definitions/uint32_t"},
            "pVertexAttributeDescriptions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkVertexInputAttributeDescription"}}]}
        }
    },

    "VkPipelineInputAssemblyStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineInputAssemblyStateCreateFlags"},
            "topology": {"$ref": "#/definitions/VkPrimitiveTopology"},
            "primitiveRestartEnable": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPipelineTessellationStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineTessellationStateCreateFlags"},
            "patchControlPoints": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkViewport": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/float"},
            "y": {"$ref": "#/definitions/float"},
            "width": {"$ref": "#/definitions/float"},
            "height": {"$ref": "#/definitions/float"},
            "minDepth": {"$ref": "#/definitions/float"},
            "maxDepth": {"$ref": "#/definitions/float"}
        }
    },

    "VkPipelineViewportStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineViewportStateCreateFlags"},
            "viewportCount": {"$ref": "#/definitions/uint32_t"},
            "pViewports": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkViewport"}}]},
            "scissorCount": {"$ref": "#/definitions/uint32_t"},
            "pScissors": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRect2D"}}]}
        }
    },

    "VkPipelineRasterizationStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineRasterizationStateCreateFlags"},
            "depthClampEnable": {"$ref": "#/definitions/VkBool32"},
            "rasterizerDiscardEnable": {"$ref": "#/definitions/VkBool32"},
            "polygonMode": {"$ref": "#/definitions/VkPolygonMode"},
            "cullMode": {"$ref": "#/definitions/VkCullModeFlags"},
            "frontFace": {"$ref": "#/definitions/VkFrontFace"},
            "depthBiasEnable": {"$ref": "#/definitions/VkBool32"},
            "depthBiasConstantFactor": {"$ref": "#/definitions/float"},
            "depthBiasClamp": {"$ref": "#/definitions/float"},
            "depthBiasSlopeFactor": {"$ref": "#/definitions/float"},
            "lineWidth": {"$ref": "#/definitions/float"}
        }
    },

    "VkPipelineMultisampleStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineMultisampleStateCreateFlags"},
            "rasterizationSamples": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "sampleShadingEnable": {"$ref": "#/definitions/VkBool32"},
            "minSampleShading": {"$ref": "#/definitions/float"},
            "pSampleMask": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSampleMask"}}]},
            "alphaToCoverageEnable": {"$ref": "#/definitions/VkBool32"},
            "alphaToOneEnable": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkStencilOpState": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "failOp": {"$ref": "#/definitions/VkStencilOp"},
            "passOp": {"$ref": "#/definitions/VkStencilOp"},
            "depthFailOp": {"$ref": "#/definitions/VkStencilOp"},
            "compareOp": {"$ref": "#/definitions/VkCompareOp"},
            "compareMask": {"$ref": "#/definitions/uint32_t"},
            "writeMask": {"$ref": "#/definitions/uint32_t"},
            "reference": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineDepthStencilStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineDepthStencilStateCreateFlags"},
            "depthTestEnable": {"$ref": "#/definitions/VkBool32"},
            "depthWriteEnable": {"$ref": "#/definitions/VkBool32"},
            "depthCompareOp": {"$ref": "#/definitions/VkCompareOp"},
            "depthBoundsTestEnable": {"$ref": "#/definitions/VkBool32"},
            "stencilTestEnable": {"$ref": "#/definitions/VkBool32"},
            "front": {"$ref": "#/definitions/VkStencilOpState"},
            "back": {"$ref": "#/definitions/VkStencilOpState"},
            "minDepthBounds": {"$ref": "#/definitions/float"},
            "maxDepthBounds": {"$ref": "#/definitions/float"}
        }
    },

    "VkPipelineColorBlendAttachmentState": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "blendEnable": {"$ref": "#/definitions/VkBool32"},
            "srcColorBlendFactor": {"$ref": "#/definitions/VkBlendFactor"},
            "dstColorBlendFactor": {"$ref": "#/definitions/VkBlendFactor"},
            "colorBlendOp": {"$ref": "#/definitions/VkBlendOp"},
            "srcAlphaBlendFactor": {"$ref": "#/definitions/VkBlendFactor"},
            "dstAlphaBlendFactor": {"$ref": "#/definitions/VkBlendFactor"},
            "alphaBlendOp": {"$ref": "#/definitions/VkBlendOp"},
            "colorWriteMask": {"$ref": "#/definitions/VkColorComponentFlags"}
        }
    },

    "VkPipelineColorBlendStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineColorBlendStateCreateFlags"},
            "logicOpEnable": {"$ref": "#/definitions/VkBool32"},
            "logicOp": {"$ref": "#/definitions/VkLogicOp"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPipelineColorBlendAttachmentState"}}]},
            "blendConstants":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}}
        }
    },

    "VkPipelineDynamicStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineDynamicStateCreateFlags"},
            "dynamicStateCount": {"$ref": "#/definitions/uint32_t"},
            "pDynamicStates": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDynamicState"}}]}
        }
    },

    "VkGraphicsPipelineCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineCreateFlags"},
            "stageCount": {"$ref": "#/definitions/uint32_t"},
            "pStages": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPipelineShaderStageCreateInfo"}}]},
            "pVertexInputState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineVertexInputStateCreateInfo"}]},
            "pInputAssemblyState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineInputAssemblyStateCreateInfo"}]},
            "pTessellationState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineTessellationStateCreateInfo"}]},
            "pViewportState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineViewportStateCreateInfo"}]},
            "pRasterizationState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineRasterizationStateCreateInfo"}]},
            "pMultisampleState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineMultisampleStateCreateInfo"}]},
            "pDepthStencilState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineDepthStencilStateCreateInfo"}]},
            "pColorBlendState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineColorBlendStateCreateInfo"}]},
            "pDynamicState": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkPipelineDynamicStateCreateInfo"}]},
            "layout": {"$ref": "#/definitions/VkPipelineLayout"},
            "renderPass": {"$ref": "#/definitions/VkRenderPass"},
            "subpass": {"$ref": "#/definitions/uint32_t"},
            "basePipelineHandle": {"$ref": "#/definitions/VkPipeline"},
            "basePipelineIndex": {"$ref": "#/definitions/int32_t"}
        }
    },

    "VkPushConstantRange": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "stageFlags": {"$ref": "#/definitions/VkShaderStageFlags"},
            "offset": {"$ref": "#/definitions/uint32_t"},
            "size": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineLayoutCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineLayoutCreateFlags"},
            "setLayoutCount": {"$ref": "#/definitions/uint32_t"},
            "pSetLayouts": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]},
            "pushConstantRangeCount": {"$ref": "#/definitions/uint32_t"},
            "pPushConstantRanges": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPushConstantRange"}}]}
        }
    },

    "VkSamplerCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSamplerCreateFlags"},
            "magFilter": {"$ref": "#/definitions/VkFilter"},
            "minFilter": {"$ref": "#/definitions/VkFilter"},
            "mipmapMode": {"$ref": "#/definitions/VkSamplerMipmapMode"},
            "addressModeU": {"$ref": "#/definitions/VkSamplerAddressMode"},
            "addressModeV": {"$ref": "#/definitions/VkSamplerAddressMode"},
            "addressModeW": {"$ref": "#/definitions/VkSamplerAddressMode"},
            "mipLodBias": {"$ref": "#/definitions/float"},
            "anisotropyEnable": {"$ref": "#/definitions/VkBool32"},
            "maxAnisotropy": {"$ref": "#/definitions/float"},
            "compareEnable": {"$ref": "#/definitions/VkBool32"},
            "compareOp": {"$ref": "#/definitions/VkCompareOp"},
            "minLod": {"$ref": "#/definitions/float"},
            "maxLod": {"$ref": "#/definitions/float"},
            "borderColor": {"$ref": "#/definitions/VkBorderColor"},
            "unnormalizedCoordinates": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkCopyDescriptorSet": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcSet": {"$ref": "#/definitions/VkDescriptorSet"},
            "srcBinding": {"$ref": "#/definitions/uint32_t"},
            "srcArrayElement": {"$ref": "#/definitions/uint32_t"},
            "dstSet": {"$ref": "#/definitions/VkDescriptorSet"},
            "dstBinding": {"$ref": "#/definitions/uint32_t"},
            "dstArrayElement": {"$ref": "#/definitions/uint32_t"},
            "descriptorCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDescriptorBufferInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "buffer": {"$ref": "#/definitions/VkBuffer"},
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "range": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkDescriptorImageInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sampler": {"$ref": "#/definitions/VkSampler"},
            "imageView": {"$ref": "#/definitions/VkImageView"},
            "imageLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkDescriptorPoolSize": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "type": {"$ref": "#/definitions/VkDescriptorType"},
            "descriptorCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDescriptorPoolCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDescriptorPoolCreateFlags"},
            "maxSets": {"$ref": "#/definitions/uint32_t"},
            "poolSizeCount": {"$ref": "#/definitions/uint32_t"},
            "pPoolSizes": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorPoolSize"}}]}
        }
    },

    "VkDescriptorSetAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "descriptorPool": {"$ref": "#/definitions/VkDescriptorPool"},
            "descriptorSetCount": {"$ref": "#/definitions/uint32_t"},
            "pSetLayouts": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorSetLayout"}}]}
        }
    },

    "VkDescriptorSetLayoutBinding": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "binding": {"$ref": "#/definitions/uint32_t"},
            "descriptorType": {"$ref": "#/definitions/VkDescriptorType"},
            "descriptorCount": {"$ref": "#/definitions/uint32_t"},
            "stageFlags": {"$ref": "#/definitions/VkShaderStageFlags"},
            "pImmutableSamplers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/char"}}]}
        }
    },

    "VkDescriptorSetLayoutCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDescriptorSetLayoutCreateFlags"},
            "bindingCount": {"$ref": "#/definitions/uint32_t"},
            "pBindings": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorSetLayoutBinding"}}]}
        }
    },

    "VkWriteDescriptorSet": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "dstSet": {"$ref": "#/definitions/VkDescriptorSet"},
            "dstBinding": {"$ref": "#/definitions/uint32_t"},
            "dstArrayElement": {"$ref": "#/definitions/uint32_t"},
            "descriptorCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorType": {"$ref": "#/definitions/VkDescriptorType"},
            "pImageInfo": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorImageInfo"}}]},
            "pBufferInfo": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorBufferInfo"}}]},
            "pTexelBufferView": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBufferView"}}]}
        }
    },

    "VkAttachmentDescription": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "flags": {"$ref": "#/definitions/VkAttachmentDescriptionFlags"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "samples": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "loadOp": {"$ref": "#/definitions/VkAttachmentLoadOp"},
            "storeOp": {"$ref": "#/definitions/VkAttachmentStoreOp"},
            "stencilLoadOp": {"$ref": "#/definitions/VkAttachmentLoadOp"},
            "stencilStoreOp": {"$ref": "#/definitions/VkAttachmentStoreOp"},
            "initialLayout": {"$ref": "#/definitions/VkImageLayout"},
            "finalLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkAttachmentReference": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "attachment": {"$ref": "#/definitions/uint32_t"},
            "layout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkFramebufferCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkFramebufferCreateFlags"},
            "renderPass": {"$ref": "#/definitions/VkRenderPass"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageView"}}]},
            "width": {"$ref": "#/definitions/uint32_t"},
            "height": {"$ref": "#/definitions/uint32_t"},
            "layers": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkSubpassDescription": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "flags": {"$ref": "#/definitions/VkSubpassDescriptionFlags"},
            "pipelineBindPoint": {"$ref": "#/definitions/VkPipelineBindPoint"},
            "inputAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pInputAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference"}}]},
            "colorAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pColorAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference"}}]},
            "pResolveAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference"}}]},
            "pDepthStencilAttachment": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkAttachmentReference"}]},
            "preserveAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pPreserveAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkSubpassDependency": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "srcSubpass": {"$ref": "#/definitions/uint32_t"},
            "dstSubpass": {"$ref": "#/definitions/uint32_t"},
            "srcStageMask": {"$ref": "#/definitions/VkPipelineStageFlags"},
            "dstStageMask": {"$ref": "#/definitions/VkPipelineStageFlags"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dependencyFlags": {"$ref": "#/definitions/VkDependencyFlags"}
        }
    },

    "VkRenderPassCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkRenderPassCreateFlags"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentDescription"}}]},
            "subpassCount": {"$ref": "#/definitions/uint32_t"},
            "pSubpasses": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubpassDescription"}}]},
            "dependencyCount": {"$ref": "#/definitions/uint32_t"},
            "pDependencies": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubpassDependency"}}]}
        }
    },

    "VkCommandPoolCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkCommandPoolCreateFlags"},
            "queueFamilyIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkCommandBufferAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "commandPool": {"$ref": "#/definitions/VkCommandPool"},
            "level": {"$ref": "#/definitions/VkCommandBufferLevel"},
            "commandBufferCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkCommandBufferInheritanceInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "renderPass": {"$ref": "#/definitions/VkRenderPass"},
            "subpass": {"$ref": "#/definitions/uint32_t"},
            "framebuffer": {"$ref": "#/definitions/VkFramebuffer"},
            "occlusionQueryEnable": {"$ref": "#/definitions/VkBool32"},
            "queryFlags": {"$ref": "#/definitions/VkQueryControlFlags"},
            "pipelineStatistics": {"$ref": "#/definitions/VkQueryPipelineStatisticFlags"}
        }
    },

    "VkCommandBufferBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkCommandBufferUsageFlags"},
            "pInheritanceInfo": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkCommandBufferInheritanceInfo"}]}
        }
    },

    "VkBufferCopy": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "srcOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "dstOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkImageSubresourceLayers": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"},
            "mipLevel": {"$ref": "#/definitions/uint32_t"},
            "baseArrayLayer": {"$ref": "#/definitions/uint32_t"},
            "layerCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkBufferImageCopy": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "bufferOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "bufferRowLength": {"$ref": "#/definitions/uint32_t"},
            "bufferImageHeight": {"$ref": "#/definitions/uint32_t"},
            "imageSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "imageOffset": {"$ref": "#/definitions/VkOffset3D"},
            "imageExtent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkClearColorValue": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "float32":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}},
            "int32":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/int32_t"}},
            "uint32":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}
        }
    },

    "VkClearDepthStencilValue": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "depth": {"$ref": "#/definitions/float"},
            "stencil": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkClearValue": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "color": {"$ref": "#/definitions/VkClearColorValue"},
            "depthStencil": {"$ref": "#/definitions/VkClearDepthStencilValue"}
        }
    },

    "VkClearAttachment": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"},
            "colorAttachment": {"$ref": "#/definitions/uint32_t"},
            "clearValue": {"$ref": "#/definitions/VkClearValue"}
        }
    },

    "VkClearRect": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "rect": {"$ref": "#/definitions/VkRect2D"},
            "baseArrayLayer": {"$ref": "#/definitions/uint32_t"},
            "layerCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkImageBlit": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffsets":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkOffset3D"}},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffsets":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkOffset3D"}}
        }
    },

    "VkImageCopy": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffset": {"$ref": "#/definitions/VkOffset3D"},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffset": {"$ref": "#/definitions/VkOffset3D"},
            "extent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkImageResolve": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffset": {"$ref": "#/definitions/VkOffset3D"},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffset": {"$ref": "#/definitions/VkOffset3D"},
            "extent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkRenderPassBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "renderPass": {"$ref": "#/definitions/VkRenderPass"},
            "framebuffer": {"$ref": "#/definitions/VkFramebuffer"},
            "renderArea": {"$ref": "#/definitions/VkRect2D"},
            "clearValueCount": {"$ref": "#/definitions/uint32_t"},
            "pClearValues": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkClearValue"}}]}
        }
    },

    "VkSamplerYcbcrConversion": {"$ref": "#/definitions/uint64_t"},
    "VkSubgroupFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkPeerMemoryFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkMemoryAllocateFlagBits": {"$ref": "#/definitions/enum"},
    "VkPointClippingBehavior": {"$ref": "#/definitions/enum"},
    "VkTessellationDomainOrigin": {"$ref": "#/definitions/enum"},
    "VkSamplerYcbcrModelConversion": {"$ref": "#/definitions/enum"},
    "VkSamplerYcbcrRange": {"$ref": "#/definitions/enum"},
    "VkChromaLocation": {"$ref": "#/definitions/enum"},
    "VkExternalMemoryHandleTypeFlagBits": {"$ref": "#/definitions/enum"},
    "VkExternalMemoryFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkExternalFenceHandleTypeFlagBits": {"$ref": "#/definitions/enum"},
    "VkExternalFenceFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkFenceImportFlagBits": {"$ref": "#/definitions/enum"},
    "VkSemaphoreImportFlagBits": {"$ref": "#/definitions/enum"},
    "VkExternalSemaphoreHandleTypeFlagBits": {"$ref": "#/definitions/enum"},
    "VkExternalSemaphoreFeatureFlagBits": {"$ref": "#/definitions/enum"},
    "VkSubgroupFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPeerMemoryFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkMemoryAllocateFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalMemoryHandleTypeFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalMemoryFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalFenceHandleTypeFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalFenceFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkFenceImportFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSemaphoreImportFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalSemaphoreHandleTypeFlags": {"$ref": "#/definitions/VkFlags"},
    "VkExternalSemaphoreFeatureFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDeviceSubgroupProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "subgroupSize": {"$ref": "#/definitions/uint32_t"},
            "supportedStages": {"$ref": "#/definitions/VkShaderStageFlags"},
            "supportedOperations": {"$ref": "#/definitions/VkSubgroupFeatureFlags"},
            "quadOperationsInAllStages": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkBindBufferMemoryInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "buffer": {"$ref": "#/definitions/VkBuffer"},
            "memory": {"$ref": "#/definitions/VkDeviceMemory"},
            "memoryOffset": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkBindImageMemoryInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "image": {"$ref": "#/definitions/VkImage"},
            "memory": {"$ref": "#/definitions/VkDeviceMemory"},
            "memoryOffset": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkPhysicalDevice16BitStorageFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "storageBuffer16BitAccess": {"$ref": "#/definitions/VkBool32"},
            "uniformAndStorageBuffer16BitAccess": {"$ref": "#/definitions/VkBool32"},
            "storagePushConstant16": {"$ref": "#/definitions/VkBool32"},
            "storageInputOutput16": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkMemoryDedicatedRequirements": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "prefersDedicatedAllocation": {"$ref": "#/definitions/VkBool32"},
            "requiresDedicatedAllocation": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkMemoryDedicatedAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "image": {"$ref": "#/definitions/VkImage"},
            "buffer": {"$ref": "#/definitions/VkBuffer"}
        }
    },

    "VkMemoryAllocateFlagsInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkMemoryAllocateFlags"},
            "deviceMask": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDeviceGroupRenderPassBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceMask": {"$ref": "#/definitions/uint32_t"},
            "deviceRenderAreaCount": {"$ref": "#/definitions/uint32_t"},
            "pDeviceRenderAreas": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRect2D"}}]}
        }
    },

    "VkDeviceGroupCommandBufferBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceMask": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDeviceGroupSubmitInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "waitSemaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pWaitSemaphoreDeviceIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "commandBufferCount": {"$ref": "#/definitions/uint32_t"},
            "pCommandBufferDeviceMasks": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "signalSemaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pSignalSemaphoreDeviceIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkBindBufferMemoryDeviceGroupInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pDeviceIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkBindImageMemoryDeviceGroupInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pDeviceIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "splitInstanceBindRegionCount": {"$ref": "#/definitions/uint32_t"},
            "pSplitInstanceBindRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRect2D"}}]}
        }
    },

    "VkPhysicalDeviceGroupProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "physicalDeviceCount": {"$ref": "#/definitions/uint32_t"},
            "physicalDevices": {"$ref": "#/definitions/VkPhysicalDevice"},
            "subsetAllocation": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkDeviceGroupDeviceCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "physicalDeviceCount": {"$ref": "#/definitions/uint32_t"},
            "pPhysicalDevices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPhysicalDevice"}}]}
        }
    },

    "VkBufferMemoryRequirementsInfo2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "buffer": {"$ref": "#/definitions/VkBuffer"}
        }
    },

    "VkImageMemoryRequirementsInfo2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "image": {"$ref": "#/definitions/VkImage"}
        }
    },

    "VkMemoryRequirements2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memoryRequirements": {"$ref": "#/definitions/VkMemoryRequirements"}
        }
    },

    "VkPhysicalDeviceFeatures2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "features": {"$ref": "#/definitions/VkPhysicalDeviceFeatures"}
        }
    },

    "VkPhysicalDeviceProperties2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "properties": {"$ref": "#/definitions/VkPhysicalDeviceProperties"}
        }
    },

    "VkFormatProperties2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "formatProperties": {"$ref": "#/definitions/VkFormatProperties"}
        }
    },

    "VkImageFormatProperties2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "imageFormatProperties": {"$ref": "#/definitions/VkImageFormatProperties"}
        }
    },

    "VkPhysicalDeviceImageFormatInfo2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "type": {"$ref": "#/definitions/VkImageType"},
            "tiling": {"$ref": "#/definitions/VkImageTiling"},
            "usage": {"$ref": "#/definitions/VkImageUsageFlags"},
            "flags": {"$ref": "#/definitions/VkImageCreateFlags"}
        }
    },

    "VkQueueFamilyProperties2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "queueFamilyProperties": {"$ref": "#/definitions/VkQueueFamilyProperties"}
        }
    },

    "VkPhysicalDeviceMemoryProperties2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memoryProperties": {"$ref": "#/definitions/VkPhysicalDeviceMemoryProperties"}
        }
    },

    "VkPhysicalDevicePointClippingProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pointClippingBehavior": {"$ref": "#/definitions/VkPointClippingBehavior"}
        }
    },

    "VkInputAttachmentAspectReference": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "subpass": {"$ref": "#/definitions/uint32_t"},
            "inputAttachmentIndex": {"$ref": "#/definitions/uint32_t"},
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"}
        }
    },

    "VkRenderPassInputAttachmentAspectCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "aspectReferenceCount": {"$ref": "#/definitions/uint32_t"},
            "pAspectReferences": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkInputAttachmentAspectReference"}}]}
        }
    },

    "VkImageViewUsageCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "usage": {"$ref": "#/definitions/VkImageUsageFlags"}
        }
    },

    "VkPipelineTessellationDomainOriginStateCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "domainOrigin": {"$ref": "#/definitions/VkTessellationDomainOrigin"}
        }
    },

    "VkRenderPassMultiviewCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "subpassCount": {"$ref": "#/definitions/uint32_t"},
            "pViewMasks": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "dependencyCount": {"$ref": "#/definitions/uint32_t"},
            "pViewOffsets": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/int32_t"}}]},
            "correlationMaskCount": {"$ref": "#/definitions/uint32_t"},
            "pCorrelationMasks": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkPhysicalDeviceMultiviewFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "multiview": {"$ref": "#/definitions/VkBool32"},
            "multiviewGeometryShader": {"$ref": "#/definitions/VkBool32"},
            "multiviewTessellationShader": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceMultiviewProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxMultiviewViewCount": {"$ref": "#/definitions/uint32_t"},
            "maxMultiviewInstanceIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceVariablePointersFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "variablePointersStorageBuffer": {"$ref": "#/definitions/VkBool32"},
            "variablePointers": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceProtectedMemoryFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "protectedMemory": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceProtectedMemoryProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "protectedNoFault": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkDeviceQueueInfo2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDeviceQueueCreateFlags"},
            "queueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "queueIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkProtectedSubmitInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "protectedSubmit": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkSamplerYcbcrConversionCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "ycbcrModel": {"$ref": "#/definitions/VkSamplerYcbcrModelConversion"},
            "ycbcrRange": {"$ref": "#/definitions/VkSamplerYcbcrRange"},
            "components": {"$ref": "#/definitions/VkComponentMapping"},
            "xChromaOffset": {"$ref": "#/definitions/VkChromaLocation"},
            "yChromaOffset": {"$ref": "#/definitions/VkChromaLocation"},
            "chromaFilter": {"$ref": "#/definitions/VkFilter"},
            "forceExplicitReconstruction": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkSamplerYcbcrConversionInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "conversion": {"$ref": "#/definitions/VkSamplerYcbcrConversion"}
        }
    },

    "VkBindImagePlaneMemoryInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "planeAspect": {"$ref": "#/definitions/VkImageAspectFlagBits"}
        }
    },

    "VkImagePlaneMemoryRequirementsInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "planeAspect": {"$ref": "#/definitions/VkImageAspectFlagBits"}
        }
    },

    "VkPhysicalDeviceSamplerYcbcrConversionFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "samplerYcbcrConversion": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkSamplerYcbcrConversionImageFormatProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "combinedImageSamplerDescriptorCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkExternalMemoryProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "externalMemoryFeatures": {"$ref": "#/definitions/VkExternalMemoryFeatureFlags"},
            "exportFromImportedHandleTypes": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlags"},
            "compatibleHandleTypes": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlags"}
        }
    },

    "VkPhysicalDeviceExternalImageFormatInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleType": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlagBits"}
        }
    },

    "VkExternalImageFormatProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "externalMemoryProperties": {"$ref": "#/definitions/VkExternalMemoryProperties"}
        }
    },

    "VkPhysicalDeviceExternalBufferInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkBufferCreateFlags"},
            "usage": {"$ref": "#/definitions/VkBufferUsageFlags"},
            "handleType": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlagBits"}
        }
    },

    "VkExternalBufferProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "externalMemoryProperties": {"$ref": "#/definitions/VkExternalMemoryProperties"}
        }
    },

    "VkPhysicalDeviceIDProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceUUID": {"$ref": "#/definitions/uint8_t"},
            "driverUUID": {"$ref": "#/definitions/uint8_t"},
            "deviceLUID": {"$ref": "#/definitions/uint8_t"},
            "deviceNodeMask": {"$ref": "#/definitions/uint32_t"},
            "deviceLUIDValid": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkExternalMemoryImageCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleTypes": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlags"}
        }
    },

    "VkExternalMemoryBufferCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleTypes": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlags"}
        }
    },

    "VkExportMemoryAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleTypes": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlags"}
        }
    },

    "VkPhysicalDeviceExternalFenceInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleType": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlagBits"}
        }
    },

    "VkExternalFenceProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "exportFromImportedHandleTypes": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlags"},
            "compatibleHandleTypes": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlags"},
            "externalFenceFeatures": {"$ref": "#/definitions/VkExternalFenceFeatureFlags"}
        }
    },

    "VkExportFenceCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleTypes": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlags"}
        }
    },

    "VkExportSemaphoreCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleTypes": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlags"}
        }
    },

    "VkPhysicalDeviceExternalSemaphoreInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleType": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlagBits"}
        }
    },

    "VkExternalSemaphoreProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "exportFromImportedHandleTypes": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlags"},
            "compatibleHandleTypes": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlags"},
            "externalSemaphoreFeatures": {"$ref": "#/definitions/VkExternalSemaphoreFeatureFlags"}
        }
    },

    "VkPhysicalDeviceMaintenance3Properties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxPerSetDescriptors": {"$ref": "#/definitions/uint32_t"},
            "maxMemoryAllocationSize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkDescriptorSetLayoutSupport": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "supported": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceShaderDrawParametersFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderDrawParameters": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkDriverId": {"$ref": "#/definitions/enum"},
    "VkShaderFloatControlsIndependence": {"$ref": "#/definitions/enum"},
    "VkResolveModeFlagBits": {"$ref": "#/definitions/enum"},
    "VkDescriptorBindingFlagBits": {"$ref": "#/definitions/enum"},
    "VkSamplerReductionMode": {"$ref": "#/definitions/enum"},
    "VkSemaphoreType": {"$ref": "#/definitions/enum"},
    "VkSemaphoreWaitFlagBits": {"$ref": "#/definitions/enum"},
    "VkResolveModeFlags": {"$ref": "#/definitions/VkFlags"},
    "VkDescriptorBindingFlags": {"$ref": "#/definitions/VkFlags"},
    "VkSemaphoreWaitFlags": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDeviceVulkan11Features": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "storageBuffer16BitAccess": {"$ref": "#/definitions/VkBool32"},
            "uniformAndStorageBuffer16BitAccess": {"$ref": "#/definitions/VkBool32"},
            "storagePushConstant16": {"$ref": "#/definitions/VkBool32"},
            "storageInputOutput16": {"$ref": "#/definitions/VkBool32"},
            "multiview": {"$ref": "#/definitions/VkBool32"},
            "multiviewGeometryShader": {"$ref": "#/definitions/VkBool32"},
            "multiviewTessellationShader": {"$ref": "#/definitions/VkBool32"},
            "variablePointersStorageBuffer": {"$ref": "#/definitions/VkBool32"},
            "variablePointers": {"$ref": "#/definitions/VkBool32"},
            "protectedMemory": {"$ref": "#/definitions/VkBool32"},
            "samplerYcbcrConversion": {"$ref": "#/definitions/VkBool32"},
            "shaderDrawParameters": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceVulkan11Properties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceUUID": {"$ref": "#/definitions/uint8_t"},
            "driverUUID": {"$ref": "#/definitions/uint8_t"},
            "deviceLUID": {"$ref": "#/definitions/uint8_t"},
            "deviceNodeMask": {"$ref": "#/definitions/uint32_t"},
            "deviceLUIDValid": {"$ref": "#/definitions/VkBool32"},
            "subgroupSize": {"$ref": "#/definitions/uint32_t"},
            "subgroupSupportedStages": {"$ref": "#/definitions/VkShaderStageFlags"},
            "subgroupSupportedOperations": {"$ref": "#/definitions/VkSubgroupFeatureFlags"},
            "subgroupQuadOperationsInAllStages": {"$ref": "#/definitions/VkBool32"},
            "pointClippingBehavior": {"$ref": "#/definitions/VkPointClippingBehavior"},
            "maxMultiviewViewCount": {"$ref": "#/definitions/uint32_t"},
            "maxMultiviewInstanceIndex": {"$ref": "#/definitions/uint32_t"},
            "protectedNoFault": {"$ref": "#/definitions/VkBool32"},
            "maxPerSetDescriptors": {"$ref": "#/definitions/uint32_t"},
            "maxMemoryAllocationSize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkPhysicalDeviceVulkan12Features": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "samplerMirrorClampToEdge": {"$ref": "#/definitions/VkBool32"},
            "drawIndirectCount": {"$ref": "#/definitions/VkBool32"},
            "storageBuffer8BitAccess": {"$ref": "#/definitions/VkBool32"},
            "uniformAndStorageBuffer8BitAccess": {"$ref": "#/definitions/VkBool32"},
            "storagePushConstant8": {"$ref": "#/definitions/VkBool32"},
            "shaderBufferInt64Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedInt64Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderInt8": {"$ref": "#/definitions/VkBool32"},
            "descriptorIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderInputAttachmentArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformTexelBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageTexelBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderSampledImageArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderInputAttachmentArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformTexelBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageTexelBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUniformBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingSampledImageUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageImageUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUniformTexelBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageTexelBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUpdateUnusedWhilePending": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingPartiallyBound": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingVariableDescriptorCount": {"$ref": "#/definitions/VkBool32"},
            "runtimeDescriptorArray": {"$ref": "#/definitions/VkBool32"},
            "samplerFilterMinmax": {"$ref": "#/definitions/VkBool32"},
            "scalarBlockLayout": {"$ref": "#/definitions/VkBool32"},
            "imagelessFramebuffer": {"$ref": "#/definitions/VkBool32"},
            "uniformBufferStandardLayout": {"$ref": "#/definitions/VkBool32"},
            "shaderSubgroupExtendedTypes": {"$ref": "#/definitions/VkBool32"},
            "separateDepthStencilLayouts": {"$ref": "#/definitions/VkBool32"},
            "hostQueryReset": {"$ref": "#/definitions/VkBool32"},
            "timelineSemaphore": {"$ref": "#/definitions/VkBool32"},
            "bufferDeviceAddress": {"$ref": "#/definitions/VkBool32"},
            "bufferDeviceAddressCaptureReplay": {"$ref": "#/definitions/VkBool32"},
            "bufferDeviceAddressMultiDevice": {"$ref": "#/definitions/VkBool32"},
            "vulkanMemoryModel": {"$ref": "#/definitions/VkBool32"},
            "vulkanMemoryModelDeviceScope": {"$ref": "#/definitions/VkBool32"},
            "vulkanMemoryModelAvailabilityVisibilityChains": {"$ref": "#/definitions/VkBool32"},
            "shaderOutputViewportIndex": {"$ref": "#/definitions/VkBool32"},
            "shaderOutputLayer": {"$ref": "#/definitions/VkBool32"},
            "subgroupBroadcastDynamicId": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkConformanceVersion": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "major": {"$ref": "#/definitions/uint8_t"},
            "minor": {"$ref": "#/definitions/uint8_t"},
            "subminor": {"$ref": "#/definitions/uint8_t"},
            "patch": {"$ref": "#/definitions/uint8_t"}
        }
    },

    "VkPhysicalDeviceVulkan12Properties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "driverID": {"$ref": "#/definitions/VkDriverId"},
            "driverName": {"$ref": "#/definitions/char"},
            "driverInfo": {"$ref": "#/definitions/char"},
            "conformanceVersion": {"$ref": "#/definitions/VkConformanceVersion"},
            "denormBehaviorIndependence": {"$ref": "#/definitions/VkShaderFloatControlsIndependence"},
            "roundingModeIndependence": {"$ref": "#/definitions/VkShaderFloatControlsIndependence"},
            "shaderSignedZeroInfNanPreserveFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderSignedZeroInfNanPreserveFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderSignedZeroInfNanPreserveFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat64": {"$ref": "#/definitions/VkBool32"},
            "maxUpdateAfterBindDescriptorsInAllPools": {"$ref": "#/definitions/uint32_t"},
            "shaderUniformBufferArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderSampledImageArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageBufferArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderInputAttachmentArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "robustBufferAccessUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "quadDivergentImplicitLod": {"$ref": "#/definitions/VkBool32"},
            "maxPerStageDescriptorUpdateAfterBindSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageUpdateAfterBindResources": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindUniformBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "supportedDepthResolveModes": {"$ref": "#/definitions/VkResolveModeFlags"},
            "supportedStencilResolveModes": {"$ref": "#/definitions/VkResolveModeFlags"},
            "independentResolveNone": {"$ref": "#/definitions/VkBool32"},
            "independentResolve": {"$ref": "#/definitions/VkBool32"},
            "filterMinmaxSingleComponentFormats": {"$ref": "#/definitions/VkBool32"},
            "filterMinmaxImageComponentMapping": {"$ref": "#/definitions/VkBool32"},
            "maxTimelineSemaphoreValueDifference": {"$ref": "#/definitions/uint64_t"},
            "framebufferIntegerColorSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"}
        }
    },

    "VkImageFormatListCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "viewFormatCount": {"$ref": "#/definitions/uint32_t"},
            "pViewFormats": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkFormat"}}]}
        }
    },

    "VkAttachmentDescription2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkAttachmentDescriptionFlags"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "samples": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "loadOp": {"$ref": "#/definitions/VkAttachmentLoadOp"},
            "storeOp": {"$ref": "#/definitions/VkAttachmentStoreOp"},
            "stencilLoadOp": {"$ref": "#/definitions/VkAttachmentLoadOp"},
            "stencilStoreOp": {"$ref": "#/definitions/VkAttachmentStoreOp"},
            "initialLayout": {"$ref": "#/definitions/VkImageLayout"},
            "finalLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkAttachmentReference2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "attachment": {"$ref": "#/definitions/uint32_t"},
            "layout": {"$ref": "#/definitions/VkImageLayout"},
            "aspectMask": {"$ref": "#/definitions/VkImageAspectFlags"}
        }
    },

    "VkSubpassDescription2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSubpassDescriptionFlags"},
            "pipelineBindPoint": {"$ref": "#/definitions/VkPipelineBindPoint"},
            "viewMask": {"$ref": "#/definitions/uint32_t"},
            "inputAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pInputAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference2"}}]},
            "colorAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pColorAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference2"}}]},
            "pResolveAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentReference2"}}]},
            "pDepthStencilAttachment": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkAttachmentReference2"}]},
            "preserveAttachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pPreserveAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkSubpassDependency2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcSubpass": {"$ref": "#/definitions/uint32_t"},
            "dstSubpass": {"$ref": "#/definitions/uint32_t"},
            "srcStageMask": {"$ref": "#/definitions/VkPipelineStageFlags"},
            "dstStageMask": {"$ref": "#/definitions/VkPipelineStageFlags"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags"},
            "dependencyFlags": {"$ref": "#/definitions/VkDependencyFlags"},
            "viewOffset": {"$ref": "#/definitions/int32_t"}
        }
    },

    "VkRenderPassCreateInfo2": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkRenderPassCreateFlags"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentDescription2"}}]},
            "subpassCount": {"$ref": "#/definitions/uint32_t"},
            "pSubpasses": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubpassDescription2"}}]},
            "dependencyCount": {"$ref": "#/definitions/uint32_t"},
            "pDependencies": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubpassDependency2"}}]},
            "correlatedViewMaskCount": {"$ref": "#/definitions/uint32_t"},
            "pCorrelatedViewMasks": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkSubpassBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "contents": {"$ref": "#/definitions/VkSubpassContents"}
        }
    },

    "VkSubpassEndInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"}
        }
    },

    "VkPhysicalDevice8BitStorageFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "storageBuffer8BitAccess": {"$ref": "#/definitions/VkBool32"},
            "uniformAndStorageBuffer8BitAccess": {"$ref": "#/definitions/VkBool32"},
            "storagePushConstant8": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceDriverProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "driverID": {"$ref": "#/definitions/VkDriverId"},
            "driverName": {"$ref": "#/definitions/char"},
            "driverInfo": {"$ref": "#/definitions/char"},
            "conformanceVersion": {"$ref": "#/definitions/VkConformanceVersion"}
        }
    },

    "VkPhysicalDeviceShaderAtomicInt64Features": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderBufferInt64Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedInt64Atomics": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceShaderFloat16Int8Features": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderInt8": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceFloatControlsProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "denormBehaviorIndependence": {"$ref": "#/definitions/VkShaderFloatControlsIndependence"},
            "roundingModeIndependence": {"$ref": "#/definitions/VkShaderFloatControlsIndependence"},
            "shaderSignedZeroInfNanPreserveFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderSignedZeroInfNanPreserveFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderSignedZeroInfNanPreserveFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormPreserveFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderDenormFlushToZeroFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTEFloat64": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat16": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat32": {"$ref": "#/definitions/VkBool32"},
            "shaderRoundingModeRTZFloat64": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkDescriptorSetLayoutBindingFlagsCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "bindingCount": {"$ref": "#/definitions/uint32_t"},
            "pBindingFlags": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDescriptorBindingFlags"}}]}
        }
    },

    "VkPhysicalDeviceDescriptorIndexingFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderInputAttachmentArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformTexelBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageTexelBufferArrayDynamicIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderSampledImageArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderInputAttachmentArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderUniformTexelBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageTexelBufferArrayNonUniformIndexing": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUniformBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingSampledImageUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageImageUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUniformTexelBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingStorageTexelBufferUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingUpdateUnusedWhilePending": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingPartiallyBound": {"$ref": "#/definitions/VkBool32"},
            "descriptorBindingVariableDescriptorCount": {"$ref": "#/definitions/VkBool32"},
            "runtimeDescriptorArray": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceDescriptorIndexingProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxUpdateAfterBindDescriptorsInAllPools": {"$ref": "#/definitions/uint32_t"},
            "shaderUniformBufferArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderSampledImageArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageBufferArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderStorageImageArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "shaderInputAttachmentArrayNonUniformIndexingNative": {"$ref": "#/definitions/VkBool32"},
            "robustBufferAccessUpdateAfterBind": {"$ref": "#/definitions/VkBool32"},
            "quadDivergentImplicitLod": {"$ref": "#/definitions/VkBool32"},
            "maxPerStageDescriptorUpdateAfterBindSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageDescriptorUpdateAfterBindInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxPerStageUpdateAfterBindResources": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindSamplers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindUniformBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindUniformBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageBuffersDynamic": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindSampledImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindStorageImages": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetUpdateAfterBindInputAttachments": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDescriptorSetVariableDescriptorCountAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "descriptorSetCount": {"$ref": "#/definitions/uint32_t"},
            "pDescriptorCounts": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkDescriptorSetVariableDescriptorCountLayoutSupport": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxVariableDescriptorCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkSubpassDescriptionDepthStencilResolve": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "depthResolveMode": {"$ref": "#/definitions/VkResolveModeFlagBits"},
            "stencilResolveMode": {"$ref": "#/definitions/VkResolveModeFlagBits"},
            "pDepthStencilResolveAttachment": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkAttachmentReference2"}]}
        }
    },

    "VkPhysicalDeviceDepthStencilResolveProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "supportedDepthResolveModes": {"$ref": "#/definitions/VkResolveModeFlags"},
            "supportedStencilResolveModes": {"$ref": "#/definitions/VkResolveModeFlags"},
            "independentResolveNone": {"$ref": "#/definitions/VkBool32"},
            "independentResolve": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceScalarBlockLayoutFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "scalarBlockLayout": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkImageStencilUsageCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "stencilUsage": {"$ref": "#/definitions/VkImageUsageFlags"}
        }
    },

    "VkSamplerReductionModeCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "reductionMode": {"$ref": "#/definitions/VkSamplerReductionMode"}
        }
    },

    "VkPhysicalDeviceSamplerFilterMinmaxProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "filterMinmaxSingleComponentFormats": {"$ref": "#/definitions/VkBool32"},
            "filterMinmaxImageComponentMapping": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceVulkanMemoryModelFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "vulkanMemoryModel": {"$ref": "#/definitions/VkBool32"},
            "vulkanMemoryModelDeviceScope": {"$ref": "#/definitions/VkBool32"},
            "vulkanMemoryModelAvailabilityVisibilityChains": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceImagelessFramebufferFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "imagelessFramebuffer": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkFramebufferAttachmentImageInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkImageCreateFlags"},
            "usage": {"$ref": "#/definitions/VkImageUsageFlags"},
            "width": {"$ref": "#/definitions/uint32_t"},
            "height": {"$ref": "#/definitions/uint32_t"},
            "layerCount": {"$ref": "#/definitions/uint32_t"},
            "viewFormatCount": {"$ref": "#/definitions/uint32_t"},
            "pViewFormats": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkFormat"}}]}
        }
    },

    "VkFramebufferAttachmentsCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "attachmentImageInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachmentImageInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkFramebufferAttachmentImageInfo"}}]}
        }
    },

    "VkRenderPassAttachmentBeginInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachments": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageView"}}]}
        }
    },

    "VkPhysicalDeviceUniformBufferStandardLayoutFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "uniformBufferStandardLayout": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceShaderSubgroupExtendedTypesFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderSubgroupExtendedTypes": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceSeparateDepthStencilLayoutsFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "separateDepthStencilLayouts": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkAttachmentReferenceStencilLayout": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "stencilLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkAttachmentDescriptionStencilLayout": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "stencilInitialLayout": {"$ref": "#/definitions/VkImageLayout"},
            "stencilFinalLayout": {"$ref": "#/definitions/VkImageLayout"}
        }
    },

    "VkPhysicalDeviceHostQueryResetFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "hostQueryReset": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceTimelineSemaphoreFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "timelineSemaphore": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceTimelineSemaphoreProperties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxTimelineSemaphoreValueDifference": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkSemaphoreTypeCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "semaphoreType": {"$ref": "#/definitions/VkSemaphoreType"},
            "initialValue": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkTimelineSemaphoreSubmitInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "waitSemaphoreValueCount": {"$ref": "#/definitions/uint32_t"},
            "pWaitSemaphoreValues": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint64_t"}}]},
            "signalSemaphoreValueCount": {"$ref": "#/definitions/uint32_t"},
            "pSignalSemaphoreValues": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint64_t"}}]}
        }
    },

    "VkSemaphoreWaitInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSemaphoreWaitFlags"},
            "semaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pSemaphores": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphore"}}]},
            "pValues": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint64_t"}}]}
        }
    },

    "VkSemaphoreSignalInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "semaphore": {"$ref": "#/definitions/VkSemaphore"},
            "value": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkPhysicalDeviceBufferDeviceAddressFeatures": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "bufferDeviceAddress": {"$ref": "#/definitions/VkBool32"},
            "bufferDeviceAddressCaptureReplay": {"$ref": "#/definitions/VkBool32"},
            "bufferDeviceAddressMultiDevice": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkBufferDeviceAddressInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "buffer": {"$ref": "#/definitions/VkBuffer"}
        }
    },

    "VkBufferOpaqueCaptureAddressCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "opaqueCaptureAddress": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkMemoryOpaqueCaptureAddressAllocateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "opaqueCaptureAddress": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkDeviceMemoryOpaqueCaptureAddressInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memory": {"$ref": "#/definitions/VkDeviceMemory"}
        }
    },

    "VkFaultLevel": {"$ref": "#/definitions/enum"},
    "VkFaultType": {"$ref": "#/definitions/enum"},
    "VkFaultQueryBehavior": {"$ref": "#/definitions/enum"},
    "VkPipelineMatchControl": {"$ref": "#/definitions/enum"},
    "VkPipelineCacheValidationVersion": {"$ref": "#/definitions/enum"},
    "VkPhysicalDeviceVulkanSC10Features": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderAtomicInstructions": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceVulkanSC10Properties": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceNoDynamicHostAllocations": {"$ref": "#/definitions/VkBool32"},
            "deviceDestroyFreesMemory": {"$ref": "#/definitions/VkBool32"},
            "commandPoolMultipleCommandBuffersRecording": {"$ref": "#/definitions/VkBool32"},
            "commandPoolResetCommandBuffer": {"$ref": "#/definitions/VkBool32"},
            "commandBufferSimultaneousUse": {"$ref": "#/definitions/VkBool32"},
            "secondaryCommandBufferNullOrImagelessFramebuffer": {"$ref": "#/definitions/VkBool32"},
            "recycleDescriptorSetMemory": {"$ref": "#/definitions/VkBool32"},
            "recyclePipelineMemory": {"$ref": "#/definitions/VkBool32"},
            "maxRenderPassSubpasses": {"$ref": "#/definitions/uint32_t"},
            "maxRenderPassDependencies": {"$ref": "#/definitions/uint32_t"},
            "maxSubpassInputAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxSubpassPreserveAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxFramebufferAttachments": {"$ref": "#/definitions/uint32_t"},
            "maxDescriptorSetLayoutBindings": {"$ref": "#/definitions/uint32_t"},
            "maxQueryFaultCount": {"$ref": "#/definitions/uint32_t"},
            "maxCallbackFaultCount": {"$ref": "#/definitions/uint32_t"},
            "maxCommandPoolCommandBuffers": {"$ref": "#/definitions/uint32_t"},
            "maxCommandBufferSize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkPipelinePoolSize": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "poolEntrySize": {"$ref": "#/definitions/VkDeviceSize"},
            "poolEntryCount": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDeviceObjectReservationCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pipelineCacheCreateInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pPipelineCacheCreateInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPipelineCacheCreateInfo"}}]},
            "pipelinePoolSizeCount": {"$ref": "#/definitions/uint32_t"},
            "pPipelinePoolSizes": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPipelinePoolSize"}}]},
            "semaphoreRequestCount": {"$ref": "#/definitions/uint32_t"},
            "commandBufferRequestCount": {"$ref": "#/definitions/uint32_t"},
            "fenceRequestCount": {"$ref": "#/definitions/uint32_t"},
            "deviceMemoryRequestCount": {"$ref": "#/definitions/uint32_t"},
            "bufferRequestCount": {"$ref": "#/definitions/uint32_t"},
            "imageRequestCount": {"$ref": "#/definitions/uint32_t"},
            "eventRequestCount": {"$ref": "#/definitions/uint32_t"},
            "queryPoolRequestCount": {"$ref": "#/definitions/uint32_t"},
            "bufferViewRequestCount": {"$ref": "#/definitions/uint32_t"},
            "imageViewRequestCount": {"$ref": "#/definitions/uint32_t"},
            "layeredImageViewRequestCount": {"$ref": "#/definitions/uint32_t"},
            "pipelineCacheRequestCount": {"$ref": "#/definitions/uint32_t"},
            "pipelineLayoutRequestCount": {"$ref": "#/definitions/uint32_t"},
            "renderPassRequestCount": {"$ref": "#/definitions/uint32_t"},
            "graphicsPipelineRequestCount": {"$ref": "#/definitions/uint32_t"},
            "computePipelineRequestCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorSetLayoutRequestCount": {"$ref": "#/definitions/uint32_t"},
            "samplerRequestCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorPoolRequestCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorSetRequestCount": {"$ref": "#/definitions/uint32_t"},
            "framebufferRequestCount": {"$ref": "#/definitions/uint32_t"},
            "commandPoolRequestCount": {"$ref": "#/definitions/uint32_t"},
            "samplerYcbcrConversionRequestCount": {"$ref": "#/definitions/uint32_t"},
            "surfaceRequestCount": {"$ref": "#/definitions/uint32_t"},
            "swapchainRequestCount": {"$ref": "#/definitions/uint32_t"},
            "displayModeRequestCount": {"$ref": "#/definitions/uint32_t"},
            "subpassDescriptionRequestCount": {"$ref": "#/definitions/uint32_t"},
            "attachmentDescriptionRequestCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorSetLayoutBindingRequestCount": {"$ref": "#/definitions/uint32_t"},
            "descriptorSetLayoutBindingLimit": {"$ref": "#/definitions/uint32_t"},
            "maxImageViewMipLevels": {"$ref": "#/definitions/uint32_t"},
            "maxImageViewArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "maxLayeredImageViewMipLevels": {"$ref": "#/definitions/uint32_t"},
            "maxOcclusionQueriesPerPool": {"$ref": "#/definitions/uint32_t"},
            "maxPipelineStatisticsQueriesPerPool": {"$ref": "#/definitions/uint32_t"},
            "maxTimestampQueriesPerPool": {"$ref": "#/definitions/uint32_t"},
            "maxImmutableSamplersPerDescriptorSetLayout": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkCommandPoolMemoryReservationCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "commandPoolReservedSize": {"$ref": "#/definitions/VkDeviceSize"},
            "commandPoolMaxCommandBuffers": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkCommandPoolMemoryConsumption": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "commandPoolAllocated": {"$ref": "#/definitions/VkDeviceSize"},
            "commandPoolReservedSize": {"$ref": "#/definitions/VkDeviceSize"},
            "commandBufferAllocated": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkFaultData": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "faultLevel": {"$ref": "#/definitions/VkFaultLevel"},
            "faultType": {"$ref": "#/definitions/VkFaultType"}
        }
    },

    "VkFaultCallbackInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "faultCount": {"$ref": "#/definitions/uint32_t"},
            "pFaults": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkFaultData"}}]},
            "pfnFaultCallback": {"$ref": "#/definitions/PFN_vkFaultCallbackFunction"}
        }
    },

    "VkPipelineOfflineCreateInfo": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pipelineIdentifier": {"$ref": "#/definitions/uint8_t"},
            "matchControl": {"$ref": "#/definitions/VkPipelineMatchControl"},
            "poolEntrySize": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkPipelineCacheStageValidationIndexEntry": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "codeSize": {"$ref": "#/definitions/uint64_t"},
            "codeOffset": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkPipelineCacheSafetyCriticalIndexEntry": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "pipelineIdentifier": {"$ref": "#/definitions/uint8_t"},
            "pipelineMemorySize": {"$ref": "#/definitions/uint64_t"},
            "jsonSize": {"$ref": "#/definitions/uint64_t"},
            "jsonOffset": {"$ref": "#/definitions/uint64_t"},
            "stageIndexCount": {"$ref": "#/definitions/uint32_t"},
            "stageIndexStride": {"$ref": "#/definitions/uint32_t"},
            "stageIndexOffset": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkPipelineCacheHeaderVersionSafetyCriticalOne": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "headerVersionOne": {"$ref": "#/definitions/VkPipelineCacheHeaderVersionOne"},
            "validationVersion": {"$ref": "#/definitions/VkPipelineCacheValidationVersion"},
            "implementationData": {"$ref": "#/definitions/uint32_t"},
            "pipelineIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pipelineIndexStride": {"$ref": "#/definitions/uint32_t"},
            "pipelineIndexOffset": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkSurfaceKHR": {"$ref": "#/definitions/uint64_t"},
    "VkSurfaceTransformFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkPresentModeKHR": {"$ref": "#/definitions/enum"},
    "VkColorSpaceKHR": {"$ref": "#/definitions/enum"},
    "VkCompositeAlphaFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkCompositeAlphaFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkSurfaceTransformFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkSurfaceCapabilitiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "minImageCount": {"$ref": "#/definitions/uint32_t"},
            "maxImageCount": {"$ref": "#/definitions/uint32_t"},
            "currentExtent": {"$ref": "#/definitions/VkExtent2D"},
            "minImageExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxImageExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxImageArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "supportedTransforms": {"$ref": "#/definitions/VkSurfaceTransformFlagsKHR"},
            "currentTransform": {"$ref": "#/definitions/VkSurfaceTransformFlagBitsKHR"},
            "supportedCompositeAlpha": {"$ref": "#/definitions/VkCompositeAlphaFlagsKHR"},
            "supportedUsageFlags": {"$ref": "#/definitions/VkImageUsageFlags"}
        }
    },

    "VkSurfaceFormatKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "format": {"$ref": "#/definitions/VkFormat"},
            "colorSpace": {"$ref": "#/definitions/VkColorSpaceKHR"}
        }
    },

    "VkSwapchainKHR": {"$ref": "#/definitions/uint64_t"},
    "VkSwapchainCreateFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkDeviceGroupPresentModeFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkSwapchainCreateFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkDeviceGroupPresentModeFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkSwapchainCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSwapchainCreateFlagsKHR"},
            "surface": {"$ref": "#/definitions/VkSurfaceKHR"},
            "minImageCount": {"$ref": "#/definitions/uint32_t"},
            "imageFormat": {"$ref": "#/definitions/VkFormat"},
            "imageColorSpace": {"$ref": "#/definitions/VkColorSpaceKHR"},
            "imageExtent": {"$ref": "#/definitions/VkExtent2D"},
            "imageArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "imageUsage": {"$ref": "#/definitions/VkImageUsageFlags"},
            "imageSharingMode": {"$ref": "#/definitions/VkSharingMode"},
            "queueFamilyIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueFamilyIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "preTransform": {"$ref": "#/definitions/VkSurfaceTransformFlagBitsKHR"},
            "compositeAlpha": {"$ref": "#/definitions/VkCompositeAlphaFlagBitsKHR"},
            "presentMode": {"$ref": "#/definitions/VkPresentModeKHR"},
            "clipped": {"$ref": "#/definitions/VkBool32"},
            "oldSwapchain": {"$ref": "#/definitions/VkSwapchainKHR"}
        }
    },

    "VkPresentInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "waitSemaphoreCount": {"$ref": "#/definitions/uint32_t"},
            "pWaitSemaphores": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphore"}}]},
            "swapchainCount": {"$ref": "#/definitions/uint32_t"},
            "pSwapchains": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSwapchainKHR"}}]},
            "pImageIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "pResults": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkResult"}}]}
        }
    },

    "VkImageSwapchainCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "swapchain": {"$ref": "#/definitions/VkSwapchainKHR"}
        }
    },

    "VkBindImageMemorySwapchainInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "swapchain": {"$ref": "#/definitions/VkSwapchainKHR"},
            "imageIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkAcquireNextImageInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "swapchain": {"$ref": "#/definitions/VkSwapchainKHR"},
            "timeout": {"$ref": "#/definitions/uint64_t"},
            "semaphore": {"$ref": "#/definitions/VkSemaphore"},
            "fence": {"$ref": "#/definitions/VkFence"},
            "deviceMask": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDeviceGroupPresentCapabilitiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "presentMask": {"$ref": "#/definitions/uint32_t"},
            "modes": {"$ref": "#/definitions/VkDeviceGroupPresentModeFlagsKHR"}
        }
    },

    "VkDeviceGroupPresentInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "swapchainCount": {"$ref": "#/definitions/uint32_t"},
            "pDeviceMasks": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]},
            "mode": {"$ref": "#/definitions/VkDeviceGroupPresentModeFlagBitsKHR"}
        }
    },

    "VkDeviceGroupSwapchainCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "modes": {"$ref": "#/definitions/VkDeviceGroupPresentModeFlagsKHR"}
        }
    },

    "VkDisplayKHR": {"$ref": "#/definitions/uint64_t"},
    "VkDisplayModeKHR": {"$ref": "#/definitions/uint64_t"},
    "VkDisplayPlaneAlphaFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkDisplayModeCreateFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkDisplayPlaneAlphaFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkDisplaySurfaceCreateFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkDisplayModeParametersKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "visibleRegion": {"$ref": "#/definitions/VkExtent2D"},
            "refreshRate": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDisplayModeCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDisplayModeCreateFlagsKHR"},
            "parameters": {"$ref": "#/definitions/VkDisplayModeParametersKHR"}
        }
    },

    "VkDisplayModePropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "displayMode": {"$ref": "#/definitions/VkDisplayModeKHR"},
            "parameters": {"$ref": "#/definitions/VkDisplayModeParametersKHR"}
        }
    },

    "VkDisplayPlaneCapabilitiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "supportedAlpha": {"$ref": "#/definitions/VkDisplayPlaneAlphaFlagsKHR"},
            "minSrcPosition": {"$ref": "#/definitions/VkOffset2D"},
            "maxSrcPosition": {"$ref": "#/definitions/VkOffset2D"},
            "minSrcExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxSrcExtent": {"$ref": "#/definitions/VkExtent2D"},
            "minDstPosition": {"$ref": "#/definitions/VkOffset2D"},
            "maxDstPosition": {"$ref": "#/definitions/VkOffset2D"},
            "minDstExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxDstExtent": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkDisplayPlanePropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "currentDisplay": {"$ref": "#/definitions/VkDisplayKHR"},
            "currentStackIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDisplayPropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "display": {"$ref": "#/definitions/VkDisplayKHR"},
            "displayName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "physicalDimensions": {"$ref": "#/definitions/VkExtent2D"},
            "physicalResolution": {"$ref": "#/definitions/VkExtent2D"},
            "supportedTransforms": {"$ref": "#/definitions/VkSurfaceTransformFlagsKHR"},
            "planeReorderPossible": {"$ref": "#/definitions/VkBool32"},
            "persistentContent": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkDisplaySurfaceCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDisplaySurfaceCreateFlagsKHR"},
            "displayMode": {"$ref": "#/definitions/VkDisplayModeKHR"},
            "planeIndex": {"$ref": "#/definitions/uint32_t"},
            "planeStackIndex": {"$ref": "#/definitions/uint32_t"},
            "transform": {"$ref": "#/definitions/VkSurfaceTransformFlagBitsKHR"},
            "globalAlpha": {"$ref": "#/definitions/float"},
            "alphaMode": {"$ref": "#/definitions/VkDisplayPlaneAlphaFlagBitsKHR"},
            "imageExtent": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkDisplayPresentInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcRect": {"$ref": "#/definitions/VkRect2D"},
            "dstRect": {"$ref": "#/definitions/VkRect2D"},
            "persistent": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkImportMemoryFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleType": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlagBits"},
            "fd": {"$ref": "#/definitions/int"}
        }
    },

    "VkMemoryFdPropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memoryTypeBits": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkMemoryGetFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memory": {"$ref": "#/definitions/VkDeviceMemory"},
            "handleType": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlagBits"}
        }
    },

    "VkImportSemaphoreFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "semaphore": {"$ref": "#/definitions/VkSemaphore"},
            "flags": {"$ref": "#/definitions/VkSemaphoreImportFlags"},
            "handleType": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlagBits"},
            "fd": {"$ref": "#/definitions/int"}
        }
    },

    "VkSemaphoreGetFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "semaphore": {"$ref": "#/definitions/VkSemaphore"},
            "handleType": {"$ref": "#/definitions/VkExternalSemaphoreHandleTypeFlagBits"}
        }
    },

    "VkRectLayerKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "offset": {"$ref": "#/definitions/VkOffset2D"},
            "extent": {"$ref": "#/definitions/VkExtent2D"},
            "layer": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPresentRegionKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "rectangleCount": {"$ref": "#/definitions/uint32_t"},
            "pRectangles": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRectLayerKHR"}}]}
        }
    },

    "VkPresentRegionsKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "swapchainCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkPresentRegionKHR"}}]}
        }
    },

    "VkSharedPresentSurfaceCapabilitiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "sharedPresentSupportedUsageFlags": {"$ref": "#/definitions/VkImageUsageFlags"}
        }
    },

    "VkImportFenceFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "fence": {"$ref": "#/definitions/VkFence"},
            "flags": {"$ref": "#/definitions/VkFenceImportFlags"},
            "handleType": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlagBits"},
            "fd": {"$ref": "#/definitions/int"}
        }
    },

    "VkFenceGetFdInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "fence": {"$ref": "#/definitions/VkFence"},
            "handleType": {"$ref": "#/definitions/VkExternalFenceHandleTypeFlagBits"}
        }
    },

    "VkPerformanceCounterUnitKHR": {"$ref": "#/definitions/enum"},
    "VkPerformanceCounterScopeKHR": {"$ref": "#/definitions/enum"},
    "VkPerformanceCounterStorageKHR": {"$ref": "#/definitions/enum"},
    "VkPerformanceCounterDescriptionFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkAcquireProfilingLockFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkPerformanceCounterDescriptionFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkAcquireProfilingLockFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDevicePerformanceQueryFeaturesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "performanceCounterQueryPools": {"$ref": "#/definitions/VkBool32"},
            "performanceCounterMultipleQueryPools": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDevicePerformanceQueryPropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "allowCommandBufferQueryCopies": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPerformanceCounterKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "unit": {"$ref": "#/definitions/VkPerformanceCounterUnitKHR"},
            "scope": {"$ref": "#/definitions/VkPerformanceCounterScopeKHR"},
            "storage": {"$ref": "#/definitions/VkPerformanceCounterStorageKHR"},
            "uuid": {"$ref": "#/definitions/uint8_t"}
        }
    },

    "VkPerformanceCounterDescriptionKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPerformanceCounterDescriptionFlagsKHR"},
            "name": {"$ref": "#/definitions/char"},
            "category": {"$ref": "#/definitions/char"},
            "description": {"$ref": "#/definitions/char"}
        }
    },

    "VkQueryPoolPerformanceCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "queueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "counterIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pCounterIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkPerformanceCounterResultKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "int32": {"$ref": "#/definitions/int32_t"},
            "int64": {"$ref": "#/definitions/int64_t"},
            "uint32": {"$ref": "#/definitions/uint32_t"},
            "uint64": {"$ref": "#/definitions/uint64_t"},
            "float32": {"$ref": "#/definitions/float"},
            "float64": {"$ref": "#/definitions/double"}
        }
    },

    "VkAcquireProfilingLockInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkAcquireProfilingLockFlagsKHR"},
            "timeout": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkPerformanceQuerySubmitInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "counterPassIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPerformanceQueryReservationInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxPerformanceQueriesPerPool": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceSurfaceInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "surface": {"$ref": "#/definitions/VkSurfaceKHR"}
        }
    },

    "VkSurfaceCapabilities2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "surfaceCapabilities": {"$ref": "#/definitions/VkSurfaceCapabilitiesKHR"}
        }
    },

    "VkSurfaceFormat2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "surfaceFormat": {"$ref": "#/definitions/VkSurfaceFormatKHR"}
        }
    },

    "VkDisplayProperties2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "displayProperties": {"$ref": "#/definitions/VkDisplayPropertiesKHR"}
        }
    },

    "VkDisplayPlaneProperties2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "displayPlaneProperties": {"$ref": "#/definitions/VkDisplayPlanePropertiesKHR"}
        }
    },

    "VkDisplayModeProperties2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "displayModeProperties": {"$ref": "#/definitions/VkDisplayModePropertiesKHR"}
        }
    },

    "VkDisplayPlaneInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "mode": {"$ref": "#/definitions/VkDisplayModeKHR"},
            "planeIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkDisplayPlaneCapabilities2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "capabilities": {"$ref": "#/definitions/VkDisplayPlaneCapabilitiesKHR"}
        }
    },

    "VkPhysicalDeviceShaderClockFeaturesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderSubgroupClock": {"$ref": "#/definitions/VkBool32"},
            "shaderDeviceClock": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceShaderTerminateInvocationFeaturesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderTerminateInvocation": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkFragmentShadingRateCombinerOpKHR": {"$ref": "#/definitions/enum"},
    "VkFragmentShadingRateAttachmentInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pFragmentShadingRateAttachment": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/VkAttachmentReference2"}]},
            "shadingRateAttachmentTexelSize": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkPipelineFragmentShadingRateStateCreateInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "fragmentSize": {"$ref": "#/definitions/VkExtent2D"},
            "combinerOps":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkFragmentShadingRateCombinerOpKHR"}}
        }
    },

    "VkPhysicalDeviceFragmentShadingRateFeaturesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pipelineFragmentShadingRate": {"$ref": "#/definitions/VkBool32"},
            "primitiveFragmentShadingRate": {"$ref": "#/definitions/VkBool32"},
            "attachmentFragmentShadingRate": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceFragmentShadingRatePropertiesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "minFragmentShadingRateAttachmentTexelSize": {"$ref": "#/definitions/VkExtent2D"},
            "maxFragmentShadingRateAttachmentTexelSize": {"$ref": "#/definitions/VkExtent2D"},
            "maxFragmentShadingRateAttachmentTexelSizeAspectRatio": {"$ref": "#/definitions/uint32_t"},
            "primitiveFragmentShadingRateWithMultipleViewports": {"$ref": "#/definitions/VkBool32"},
            "layeredShadingRateAttachments": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateNonTrivialCombinerOps": {"$ref": "#/definitions/VkBool32"},
            "maxFragmentSize": {"$ref": "#/definitions/VkExtent2D"},
            "maxFragmentSizeAspectRatio": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentShadingRateCoverageSamples": {"$ref": "#/definitions/uint32_t"},
            "maxFragmentShadingRateRasterizationSamples": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "fragmentShadingRateWithShaderDepthStencilWrites": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateWithSampleMask": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateWithShaderSampleMask": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateWithConservativeRasterization": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateWithFragmentShaderInterlock": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateWithCustomSampleLocations": {"$ref": "#/definitions/VkBool32"},
            "fragmentShadingRateStrictMultiplyCombiner": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceFragmentShadingRateKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "sampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "fragmentSize": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkRefreshObjectFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkRefreshObjectFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkRefreshObjectKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "objectType": {"$ref": "#/definitions/VkObjectType"},
            "objectHandle": {"$ref": "#/definitions/uint64_t"},
            "flags": {"$ref": "#/definitions/VkRefreshObjectFlagsKHR"}
        }
    },

    "VkRefreshObjectListKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "objectCount": {"$ref": "#/definitions/uint32_t"},
            "pObjects": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRefreshObjectKHR"}}]}
        }
    },

    "VkPipelineStageFlagBits2KHR": {"$ref": "#/definitions/enum"},
    "VkAccessFlagBits2KHR": {"$ref": "#/definitions/enum"},
    "VkSubmitFlagBitsKHR": {"$ref": "#/definitions/enum"},
    "VkFlags64": {"$ref": "#/definitions/uint64_t"},
    "VkPipelineStageFlags2KHR": {"$ref": "#/definitions/VkFlags64"},
    "VkAccessFlags2KHR": {"$ref": "#/definitions/VkFlags64"},
    "VkSubmitFlagsKHR": {"$ref": "#/definitions/VkFlags"},
    "VkMemoryBarrier2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"},
            "dstStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"}
        }
    },

    "VkBufferMemoryBarrier2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"},
            "dstStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"},
            "srcQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "dstQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "buffer": {"$ref": "#/definitions/VkBuffer"},
            "offset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkImageMemoryBarrier2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "srcAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"},
            "dstStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "dstAccessMask": {"$ref": "#/definitions/VkAccessFlags2KHR"},
            "oldLayout": {"$ref": "#/definitions/VkImageLayout"},
            "newLayout": {"$ref": "#/definitions/VkImageLayout"},
            "srcQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "dstQueueFamilyIndex": {"$ref": "#/definitions/uint32_t"},
            "image": {"$ref": "#/definitions/VkImage"},
            "subresourceRange": {"$ref": "#/definitions/VkImageSubresourceRange"}
        }
    },

    "VkDependencyInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "dependencyFlags": {"$ref": "#/definitions/VkDependencyFlags"},
            "memoryBarrierCount": {"$ref": "#/definitions/uint32_t"},
            "pMemoryBarriers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkMemoryBarrier2KHR"}}]},
            "bufferMemoryBarrierCount": {"$ref": "#/definitions/uint32_t"},
            "pBufferMemoryBarriers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBufferMemoryBarrier2KHR"}}]},
            "imageMemoryBarrierCount": {"$ref": "#/definitions/uint32_t"},
            "pImageMemoryBarriers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageMemoryBarrier2KHR"}}]}
        }
    },

    "VkSemaphoreSubmitInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "semaphore": {"$ref": "#/definitions/VkSemaphore"},
            "value": {"$ref": "#/definitions/uint64_t"},
            "stageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "deviceIndex": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkCommandBufferSubmitInfoKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "commandBuffer": {"$ref": "#/definitions/VkCommandBuffer"},
            "deviceMask": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkSubmitInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkSubmitFlagsKHR"},
            "waitSemaphoreInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pWaitSemaphoreInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphoreSubmitInfoKHR"}}]},
            "commandBufferInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pCommandBufferInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkCommandBufferSubmitInfoKHR"}}]},
            "signalSemaphoreInfoCount": {"$ref": "#/definitions/uint32_t"},
            "pSignalSemaphoreInfos": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSemaphoreSubmitInfoKHR"}}]}
        }
    },

    "VkPhysicalDeviceSynchronization2FeaturesKHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "synchronization2": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkQueueFamilyCheckpointProperties2NV": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "checkpointExecutionStageMask": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"}
        }
    },

    "VkCheckpointData2NV": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "stage": {"$ref": "#/definitions/VkPipelineStageFlags2KHR"},
            "pCheckpointMarker": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/void"}]}
        }
    },

    "VkBufferCopy2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "dstOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "size": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkCopyBufferInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcBuffer": {"$ref": "#/definitions/VkBuffer"},
            "dstBuffer": {"$ref": "#/definitions/VkBuffer"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBufferCopy2KHR"}}]}
        }
    },

    "VkImageCopy2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffset": {"$ref": "#/definitions/VkOffset3D"},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffset": {"$ref": "#/definitions/VkOffset3D"},
            "extent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkCopyImageInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcImage": {"$ref": "#/definitions/VkImage"},
            "srcImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "dstImage": {"$ref": "#/definitions/VkImage"},
            "dstImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageCopy2KHR"}}]}
        }
    },

    "VkBufferImageCopy2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "bufferOffset": {"$ref": "#/definitions/VkDeviceSize"},
            "bufferRowLength": {"$ref": "#/definitions/uint32_t"},
            "bufferImageHeight": {"$ref": "#/definitions/uint32_t"},
            "imageSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "imageOffset": {"$ref": "#/definitions/VkOffset3D"},
            "imageExtent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkCopyBufferToImageInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcBuffer": {"$ref": "#/definitions/VkBuffer"},
            "dstImage": {"$ref": "#/definitions/VkImage"},
            "dstImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBufferImageCopy2KHR"}}]}
        }
    },

    "VkCopyImageToBufferInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcImage": {"$ref": "#/definitions/VkImage"},
            "srcImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "dstBuffer": {"$ref": "#/definitions/VkBuffer"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBufferImageCopy2KHR"}}]}
        }
    },

    "VkImageBlit2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffsets":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkOffset3D"}},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffsets":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkOffset3D"}}
        }
    },

    "VkBlitImageInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcImage": {"$ref": "#/definitions/VkImage"},
            "srcImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "dstImage": {"$ref": "#/definitions/VkImage"},
            "dstImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageBlit2KHR"}}]},
            "filter": {"$ref": "#/definitions/VkFilter"}
        }
    },

    "VkImageResolve2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "srcOffset": {"$ref": "#/definitions/VkOffset3D"},
            "dstSubresource": {"$ref": "#/definitions/VkImageSubresourceLayers"},
            "dstOffset": {"$ref": "#/definitions/VkOffset3D"},
            "extent": {"$ref": "#/definitions/VkExtent3D"}
        }
    },

    "VkResolveImageInfo2KHR": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcImage": {"$ref": "#/definitions/VkImage"},
            "srcImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "dstImage": {"$ref": "#/definitions/VkImage"},
            "dstImageLayout": {"$ref": "#/definitions/VkImageLayout"},
            "regionCount": {"$ref": "#/definitions/uint32_t"},
            "pRegions": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkImageResolve2KHR"}}]}
        }
    },

    "VkPhysicalDeviceTextureCompressionASTCHDRFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "textureCompressionASTC_HDR": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkImageViewASTCDecodeModeEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "decodeMode": {"$ref": "#/definitions/VkFormat"}
        }
    },

    "VkPhysicalDeviceASTCDecodeFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "decodeModeSharedExponent": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkSurfaceCounterFlagBitsEXT": {"$ref": "#/definitions/enum"},
    "VkSurfaceCounterFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkSurfaceCapabilities2EXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "minImageCount": {"$ref": "#/definitions/uint32_t"},
            "maxImageCount": {"$ref": "#/definitions/uint32_t"},
            "currentExtent": {"$ref": "#/definitions/VkExtent2D"},
            "minImageExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxImageExtent": {"$ref": "#/definitions/VkExtent2D"},
            "maxImageArrayLayers": {"$ref": "#/definitions/uint32_t"},
            "supportedTransforms": {"$ref": "#/definitions/VkSurfaceTransformFlagsKHR"},
            "currentTransform": {"$ref": "#/definitions/VkSurfaceTransformFlagBitsKHR"},
            "supportedCompositeAlpha": {"$ref": "#/definitions/VkCompositeAlphaFlagsKHR"},
            "supportedUsageFlags": {"$ref": "#/definitions/VkImageUsageFlags"},
            "supportedSurfaceCounters": {"$ref": "#/definitions/VkSurfaceCounterFlagsEXT"}
        }
    },

    "VkDisplayPowerStateEXT": {"$ref": "#/definitions/enum"},
    "VkDeviceEventTypeEXT": {"$ref": "#/definitions/enum"},
    "VkDisplayEventTypeEXT": {"$ref": "#/definitions/enum"},
    "VkDisplayPowerInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "powerState": {"$ref": "#/definitions/VkDisplayPowerStateEXT"}
        }
    },

    "VkDeviceEventInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "deviceEvent": {"$ref": "#/definitions/VkDeviceEventTypeEXT"}
        }
    },

    "VkDisplayEventInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "displayEvent": {"$ref": "#/definitions/VkDisplayEventTypeEXT"}
        }
    },

    "VkSwapchainCounterCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "surfaceCounters": {"$ref": "#/definitions/VkSurfaceCounterFlagsEXT"}
        }
    },

    "VkDiscardRectangleModeEXT": {"$ref": "#/definitions/enum"},
    "VkPipelineDiscardRectangleStateCreateFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDeviceDiscardRectanglePropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxDiscardRectangles": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineDiscardRectangleStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineDiscardRectangleStateCreateFlagsEXT"},
            "discardRectangleMode": {"$ref": "#/definitions/VkDiscardRectangleModeEXT"},
            "discardRectangleCount": {"$ref": "#/definitions/uint32_t"},
            "pDiscardRectangles": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkRect2D"}}]}
        }
    },

    "VkConservativeRasterizationModeEXT": {"$ref": "#/definitions/enum"},
    "VkPipelineRasterizationConservativeStateCreateFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDeviceConservativeRasterizationPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "primitiveOverestimationSize": {"$ref": "#/definitions/float"},
            "maxExtraPrimitiveOverestimationSize": {"$ref": "#/definitions/float"},
            "extraPrimitiveOverestimationSizeGranularity": {"$ref": "#/definitions/float"},
            "primitiveUnderestimation": {"$ref": "#/definitions/VkBool32"},
            "conservativePointAndLineRasterization": {"$ref": "#/definitions/VkBool32"},
            "degenerateTrianglesRasterized": {"$ref": "#/definitions/VkBool32"},
            "degenerateLinesRasterized": {"$ref": "#/definitions/VkBool32"},
            "fullyCoveredFragmentShaderInputVariable": {"$ref": "#/definitions/VkBool32"},
            "conservativeRasterizationPostDepthCoverage": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPipelineRasterizationConservativeStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineRasterizationConservativeStateCreateFlagsEXT"},
            "conservativeRasterizationMode": {"$ref": "#/definitions/VkConservativeRasterizationModeEXT"},
            "extraPrimitiveOverestimationSize": {"$ref": "#/definitions/float"}
        }
    },

    "VkPipelineRasterizationDepthClipStateCreateFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkPhysicalDeviceDepthClipEnableFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "depthClipEnable": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPipelineRasterizationDepthClipStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkPipelineRasterizationDepthClipStateCreateFlagsEXT"},
            "depthClipEnable": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkXYColorEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/float"},
            "y": {"$ref": "#/definitions/float"}
        }
    },

    "VkHdrMetadataEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "displayPrimaryRed": {"$ref": "#/definitions/VkXYColorEXT"},
            "displayPrimaryGreen": {"$ref": "#/definitions/VkXYColorEXT"},
            "displayPrimaryBlue": {"$ref": "#/definitions/VkXYColorEXT"},
            "whitePoint": {"$ref": "#/definitions/VkXYColorEXT"},
            "maxLuminance": {"$ref": "#/definitions/float"},
            "minLuminance": {"$ref": "#/definitions/float"},
            "maxContentLightLevel": {"$ref": "#/definitions/float"},
            "maxFrameAverageLightLevel": {"$ref": "#/definitions/float"}
        }
    },

    "VkDebugUtilsMessengerEXT": {"$ref": "#/definitions/uint64_t"},
    "VkDebugUtilsMessageSeverityFlagBitsEXT": {"$ref": "#/definitions/enum"},
    "VkDebugUtilsMessageTypeFlagBitsEXT": {"$ref": "#/definitions/enum"},
    "VkDebugUtilsMessengerCallbackDataFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkDebugUtilsMessageTypeFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkDebugUtilsMessageSeverityFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkDebugUtilsMessengerCreateFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkDebugUtilsLabelEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pLabelName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "color":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}}
        }
    },

    "VkDebugUtilsObjectNameInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "objectType": {"$ref": "#/definitions/VkObjectType"},
            "objectHandle": {"$ref": "#/definitions/uint64_t"},
            "pObjectName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]}
        }
    },

    "VkDebugUtilsMessengerCallbackDataEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDebugUtilsMessengerCallbackDataFlagsEXT"},
            "pMessageIdName": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "messageIdNumber": {"$ref": "#/definitions/int32_t"},
            "pMessage": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/char"}]},
            "queueLabelCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueLabels": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDebugUtilsLabelEXT"}}]},
            "cmdBufLabelCount": {"$ref": "#/definitions/uint32_t"},
            "pCmdBufLabels": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDebugUtilsLabelEXT"}}]},
            "objectCount": {"$ref": "#/definitions/uint32_t"},
            "pObjects": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDebugUtilsObjectNameInfoEXT"}}]}
        }
    },

    "VkDebugUtilsMessengerCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkDebugUtilsMessengerCreateFlagsEXT"},
            "messageSeverity": {"$ref": "#/definitions/VkDebugUtilsMessageSeverityFlagsEXT"},
            "messageType": {"$ref": "#/definitions/VkDebugUtilsMessageTypeFlagsEXT"},
            "pfnUserCallback": {"$ref": "#/definitions/PFN_vkDebugUtilsMessengerCallbackEXT"},
            "pUserData": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/void"}]}
        }
    },

    "VkDebugUtilsObjectTagInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "objectType": {"$ref": "#/definitions/VkObjectType"},
            "objectHandle": {"$ref": "#/definitions/uint64_t"},
            "tagName": {"$ref": "#/definitions/uint64_t"},
            "tagSize": {"$ref": "#/definitions/size_t"},
            "pTag": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/void"}}]}
        }
    },

    "VkSampleLocationEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "x": {"$ref": "#/definitions/float"},
            "y": {"$ref": "#/definitions/float"}
        }
    },

    "VkSampleLocationsInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "sampleLocationsPerPixel": {"$ref": "#/definitions/VkSampleCountFlagBits"},
            "sampleLocationGridSize": {"$ref": "#/definitions/VkExtent2D"},
            "sampleLocationsCount": {"$ref": "#/definitions/uint32_t"},
            "pSampleLocations": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSampleLocationEXT"}}]}
        }
    },

    "VkAttachmentSampleLocationsEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "attachmentIndex": {"$ref": "#/definitions/uint32_t"},
            "sampleLocationsInfo": {"$ref": "#/definitions/VkSampleLocationsInfoEXT"}
        }
    },

    "VkSubpassSampleLocationsEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "subpassIndex": {"$ref": "#/definitions/uint32_t"},
            "sampleLocationsInfo": {"$ref": "#/definitions/VkSampleLocationsInfoEXT"}
        }
    },

    "VkRenderPassSampleLocationsBeginInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "attachmentInitialSampleLocationsCount": {"$ref": "#/definitions/uint32_t"},
            "pAttachmentInitialSampleLocations": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkAttachmentSampleLocationsEXT"}}]},
            "postSubpassSampleLocationsCount": {"$ref": "#/definitions/uint32_t"},
            "pPostSubpassSampleLocations": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubpassSampleLocationsEXT"}}]}
        }
    },

    "VkPipelineSampleLocationsStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "sampleLocationsEnable": {"$ref": "#/definitions/VkBool32"},
            "sampleLocationsInfo": {"$ref": "#/definitions/VkSampleLocationsInfoEXT"}
        }
    },

    "VkPhysicalDeviceSampleLocationsPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "sampleLocationSampleCounts": {"$ref": "#/definitions/VkSampleCountFlags"},
            "maxSampleLocationGridSize": {"$ref": "#/definitions/VkExtent2D"},
            "sampleLocationCoordinateRange":  {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/float"}},
            "sampleLocationSubPixelBits": {"$ref": "#/definitions/uint32_t"},
            "variableSampleLocations": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkMultisamplePropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxSampleLocationGridSize": {"$ref": "#/definitions/VkExtent2D"}
        }
    },

    "VkBlendOverlapEXT": {"$ref": "#/definitions/enum"},
    "VkPhysicalDeviceBlendOperationAdvancedFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "advancedBlendCoherentOperations": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "advancedBlendMaxColorAttachments": {"$ref": "#/definitions/uint32_t"},
            "advancedBlendIndependentBlend": {"$ref": "#/definitions/VkBool32"},
            "advancedBlendNonPremultipliedSrcColor": {"$ref": "#/definitions/VkBool32"},
            "advancedBlendNonPremultipliedDstColor": {"$ref": "#/definitions/VkBool32"},
            "advancedBlendCorrelatedOverlap": {"$ref": "#/definitions/VkBool32"},
            "advancedBlendAllOperations": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPipelineColorBlendAdvancedStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "srcPremultiplied": {"$ref": "#/definitions/VkBool32"},
            "dstPremultiplied": {"$ref": "#/definitions/VkBool32"},
            "blendOverlap": {"$ref": "#/definitions/VkBlendOverlapEXT"}
        }
    },

    "VkFormatFeatureFlagBits2KHR": {"$ref": "#/definitions/enum"},
    "VkFormatFeatureFlags2KHR": {"$ref": "#/definitions/VkFlags64"},
    "VkDrmFormatModifierPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "drmFormatModifier": {"$ref": "#/definitions/uint64_t"},
            "drmFormatModifierPlaneCount": {"$ref": "#/definitions/uint32_t"},
            "drmFormatModifierTilingFeatures": {"$ref": "#/definitions/VkFormatFeatureFlags"}
        }
    },

    "VkDrmFormatModifierPropertiesListEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifierCount": {"$ref": "#/definitions/uint32_t"},
            "pDrmFormatModifierProperties": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDrmFormatModifierPropertiesEXT"}}]}
        }
    },

    "VkPhysicalDeviceImageDrmFormatModifierInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifier": {"$ref": "#/definitions/uint64_t"},
            "sharingMode": {"$ref": "#/definitions/VkSharingMode"},
            "queueFamilyIndexCount": {"$ref": "#/definitions/uint32_t"},
            "pQueueFamilyIndices": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint32_t"}}]}
        }
    },

    "VkImageDrmFormatModifierListCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifierCount": {"$ref": "#/definitions/uint32_t"},
            "pDrmFormatModifiers": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/uint64_t"}}]}
        }
    },

    "VkImageDrmFormatModifierExplicitCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifier": {"$ref": "#/definitions/uint64_t"},
            "drmFormatModifierPlaneCount": {"$ref": "#/definitions/uint32_t"},
            "pPlaneLayouts": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkSubresourceLayout"}}]}
        }
    },

    "VkImageDrmFormatModifierPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifier": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkDrmFormatModifierProperties2EXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "drmFormatModifier": {"$ref": "#/definitions/uint64_t"},
            "drmFormatModifierPlaneCount": {"$ref": "#/definitions/uint32_t"},
            "drmFormatModifierTilingFeatures": {"$ref": "#/definitions/VkFormatFeatureFlags2KHR"}
        }
    },

    "VkDrmFormatModifierPropertiesList2EXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "drmFormatModifierCount": {"$ref": "#/definitions/uint32_t"},
            "pDrmFormatModifierProperties": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkDrmFormatModifierProperties2EXT"}}]}
        }
    },

    "VkPhysicalDeviceImageViewImageFormatInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "imageViewType": {"$ref": "#/definitions/VkImageViewType"}
        }
    },

    "VkFilterCubicImageViewImageFormatPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "filterCubic": {"$ref": "#/definitions/VkBool32"},
            "filterCubicMinmax": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkQueueGlobalPriorityEXT": {"$ref": "#/definitions/enum"},
    "VkDeviceQueueGlobalPriorityCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "globalPriority": {"$ref": "#/definitions/VkQueueGlobalPriorityEXT"}
        }
    },

    "VkImportMemoryHostPointerInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "handleType": {"$ref": "#/definitions/VkExternalMemoryHandleTypeFlagBits"},
            "pHostPointer": {"oneOf": [{"$ref": "#/definitions/void"},{"$ref": "#/definitions/void"}]}
        }
    },

    "VkMemoryHostPointerPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "memoryTypeBits": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceExternalMemoryHostPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "minImportedHostPointerAlignment": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkTimeDomainEXT": {"$ref": "#/definitions/enum"},
    "VkCalibratedTimestampInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "timeDomain": {"$ref": "#/definitions/VkTimeDomainEXT"}
        }
    },

    "VkPhysicalDeviceVertexAttributeDivisorPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxVertexAttribDivisor": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkVertexInputBindingDivisorDescriptionEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "binding": {"$ref": "#/definitions/uint32_t"},
            "divisor": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineVertexInputDivisorStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "vertexBindingDivisorCount": {"$ref": "#/definitions/uint32_t"},
            "pVertexBindingDivisors": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkVertexInputBindingDivisorDescriptionEXT"}}]}
        }
    },

    "VkPhysicalDeviceVertexAttributeDivisorFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "vertexAttributeInstanceRateDivisor": {"$ref": "#/definitions/VkBool32"},
            "vertexAttributeInstanceRateZeroDivisor": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDevicePCIBusInfoPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "pciDomain": {"$ref": "#/definitions/uint32_t"},
            "pciBus": {"$ref": "#/definitions/uint32_t"},
            "pciDevice": {"$ref": "#/definitions/uint32_t"},
            "pciFunction": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceSubgroupSizeControlFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "subgroupSizeControl": {"$ref": "#/definitions/VkBool32"},
            "computeFullSubgroups": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceSubgroupSizeControlPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "minSubgroupSize": {"$ref": "#/definitions/uint32_t"},
            "maxSubgroupSize": {"$ref": "#/definitions/uint32_t"},
            "maxComputeWorkgroupSubgroups": {"$ref": "#/definitions/uint32_t"},
            "requiredSubgroupSizeStages": {"$ref": "#/definitions/VkShaderStageFlags"}
        }
    },

    "VkPipelineShaderStageRequiredSubgroupSizeCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "requiredSubgroupSize": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceShaderImageAtomicInt64FeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderImageInt64Atomics": {"$ref": "#/definitions/VkBool32"},
            "sparseImageInt64Atomics": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceMemoryBudgetPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "heapBudget": {"$ref": "#/definitions/VkDeviceSize"},
            "heapUsage": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkValidationFeatureEnableEXT": {"$ref": "#/definitions/enum"},
    "VkValidationFeatureDisableEXT": {"$ref": "#/definitions/enum"},
    "VkValidationFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "enabledValidationFeatureCount": {"$ref": "#/definitions/uint32_t"},
            "pEnabledValidationFeatures": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkValidationFeatureEnableEXT"}}]},
            "disabledValidationFeatureCount": {"$ref": "#/definitions/uint32_t"},
            "pDisabledValidationFeatures": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkValidationFeatureDisableEXT"}}]}
        }
    },

    "VkPhysicalDeviceFragmentShaderInterlockFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "fragmentShaderSampleInterlock": {"$ref": "#/definitions/VkBool32"},
            "fragmentShaderPixelInterlock": {"$ref": "#/definitions/VkBool32"},
            "fragmentShaderShadingRateInterlock": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceYcbcrImageArraysFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "ycbcrImageArrays": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkHeadlessSurfaceCreateFlagsEXT": {"$ref": "#/definitions/VkFlags"},
    "VkHeadlessSurfaceCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "flags": {"$ref": "#/definitions/VkHeadlessSurfaceCreateFlagsEXT"}
        }
    },

    "VkLineRasterizationModeEXT": {"$ref": "#/definitions/enum"},
    "VkPhysicalDeviceLineRasterizationFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "rectangularLines": {"$ref": "#/definitions/VkBool32"},
            "bresenhamLines": {"$ref": "#/definitions/VkBool32"},
            "smoothLines": {"$ref": "#/definitions/VkBool32"},
            "stippledRectangularLines": {"$ref": "#/definitions/VkBool32"},
            "stippledBresenhamLines": {"$ref": "#/definitions/VkBool32"},
            "stippledSmoothLines": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceLineRasterizationPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "lineSubPixelPrecisionBits": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPipelineRasterizationLineStateCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "lineRasterizationMode": {"$ref": "#/definitions/VkLineRasterizationModeEXT"},
            "stippledLineEnable": {"$ref": "#/definitions/VkBool32"},
            "lineStippleFactor": {"$ref": "#/definitions/uint32_t"},
            "lineStipplePattern": {"$ref": "#/definitions/uint16_t"}
        }
    },

    "VkPhysicalDeviceShaderAtomicFloatFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderBufferFloat32Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderBufferFloat32AtomicAdd": {"$ref": "#/definitions/VkBool32"},
            "shaderBufferFloat64Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderBufferFloat64AtomicAdd": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedFloat32Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedFloat32AtomicAdd": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedFloat64Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderSharedFloat64AtomicAdd": {"$ref": "#/definitions/VkBool32"},
            "shaderImageFloat32Atomics": {"$ref": "#/definitions/VkBool32"},
            "shaderImageFloat32AtomicAdd": {"$ref": "#/definitions/VkBool32"},
            "sparseImageFloat32Atomics": {"$ref": "#/definitions/VkBool32"},
            "sparseImageFloat32AtomicAdd": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceIndexTypeUint8FeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "indexTypeUint8": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceExtendedDynamicStateFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "extendedDynamicState": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "shaderDemoteToHelperInvocation": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceTexelBufferAlignmentFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "texelBufferAlignment": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceTexelBufferAlignmentPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "storageTexelBufferOffsetAlignmentBytes": {"$ref": "#/definitions/VkDeviceSize"},
            "storageTexelBufferOffsetSingleTexelAlignment": {"$ref": "#/definitions/VkBool32"},
            "uniformTexelBufferOffsetAlignmentBytes": {"$ref": "#/definitions/VkDeviceSize"},
            "uniformTexelBufferOffsetSingleTexelAlignment": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceRobustness2FeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "robustBufferAccess2": {"$ref": "#/definitions/VkBool32"},
            "robustImageAccess2": {"$ref": "#/definitions/VkBool32"},
            "nullDescriptor": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceRobustness2PropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "robustStorageBufferAccessSizeAlignment": {"$ref": "#/definitions/VkDeviceSize"},
            "robustUniformBufferAccessSizeAlignment": {"$ref": "#/definitions/VkDeviceSize"}
        }
    },

    "VkSamplerCustomBorderColorCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "customBorderColor": {"$ref": "#/definitions/VkClearColorValue"},
            "format": {"$ref": "#/definitions/VkFormat"}
        }
    },

    "VkPhysicalDeviceCustomBorderColorPropertiesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "maxCustomBorderColorSamplers": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceCustomBorderColorFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "customBorderColors": {"$ref": "#/definitions/VkBool32"},
            "customBorderColorWithoutFormat": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceYcbcr2Plane444FormatsFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "ycbcr2plane444Formats": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceImageRobustnessFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "robustImageAccess": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDevice4444FormatsFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "formatA4R4G4B4": {"$ref": "#/definitions/VkBool32"},
            "formatA4B4G4R4": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceVertexInputDynamicStateFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "vertexInputDynamicState": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkVertexInputBindingDescription2EXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "binding": {"$ref": "#/definitions/uint32_t"},
            "stride": {"$ref": "#/definitions/uint32_t"},
            "inputRate": {"$ref": "#/definitions/VkVertexInputRate"},
            "divisor": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkVertexInputAttributeDescription2EXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "location": {"$ref": "#/definitions/uint32_t"},
            "binding": {"$ref": "#/definitions/uint32_t"},
            "format": {"$ref": "#/definitions/VkFormat"},
            "offset": {"$ref": "#/definitions/uint32_t"}
        }
    },

    "VkPhysicalDeviceExtendedDynamicState2FeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "extendedDynamicState2": {"$ref": "#/definitions/VkBool32"},
            "extendedDynamicState2LogicOp": {"$ref": "#/definitions/VkBool32"},
            "extendedDynamicState2PatchControlPoints": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPhysicalDeviceColorWriteEnableFeaturesEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "colorWriteEnable": {"$ref": "#/definitions/VkBool32"}
        }
    },

    "VkPipelineColorWriteCreateInfoEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "attachmentCount": {"$ref": "#/definitions/uint32_t"},
            "pColorWriteEnables": {"oneOf": [{"$ref": "#/definitions/void"}, {"type": "array", "minItems": 0, "maxItems": 255, "items": {"$ref": "#/definitions/VkBool32"}}]}
        }
    },

    "VkApplicationParametersEXT": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "sType": {"$ref": "#/definitions/VkStructureType"},
            "pNext": {"$ref": "#/definitions/void"},
            "vendorID": {"$ref": "#/definitions/uint32_t"},
            "deviceID": {"$ref": "#/definitions/uint32_t"},
            "key": {"$ref": "#/definitions/uint32_t"},
            "value": {"$ref": "#/definitions/uint64_t"}
        }
    },

    "VkLastStructure": {
    }
  }
}