[go: up one dir, main page]

re_types 0.27.3

The built-in Rerun data types, component types, and archetypes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
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
// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/rust/reflection.rs

#![allow(clippy::allow_attributes)]
#![allow(clippy::empty_line_after_doc_comments)]
#![allow(clippy::too_many_lines)]
#![allow(clippy::wildcard_imports)]
#![allow(unused_imports)]

use crate::blueprint::components::*;
use crate::components::*;
use re_types_core::components::*;
use re_types_core::{
    ArchetypeName, Component, ComponentBatch as _, ComponentType, Loggable as _,
    SerializationError,
    reflection::{
        ArchetypeFieldReflection, ArchetypeReflection, ArchetypeReflectionMap, ComponentReflection,
        ComponentReflectionMap, Reflection,
    },
};

/// Generates reflection about all known components.
///
/// Call only once and reuse the results.

pub fn generate_reflection() -> Result<Reflection, SerializationError> {
    re_tracing::profile_function!();
    Ok(Reflection {
        components: generate_component_reflection()?,
        archetypes: generate_archetype_reflection(),
    })
}

/// Generates reflection about all known components.
///
/// Call only once and reuse the results.

fn generate_component_reflection() -> Result<ComponentReflectionMap, SerializationError> {
    re_tracing::profile_function!();
    let array = [
        (
            <AbsoluteTimeRange as Component>::name(),
            ComponentReflection {
                docstring_md: "A reference to a range of time.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: AbsoluteTimeRange::arrow_datatype(),
                verify_arrow_array: AbsoluteTimeRange::verify_arrow_array,
            },
        ),
        (
            <ActiveTab as Component>::name(),
            ComponentReflection {
                docstring_md: "The active tab in a tabbed container.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ActiveTab::default().to_arrow()?),
                datatype: ActiveTab::arrow_datatype(),
                verify_arrow_array: ActiveTab::verify_arrow_array,
            },
        ),
        (
            <AngularSpeed as Component>::name(),
            ComponentReflection {
                docstring_md: "Angular speed, used for rotation speed for example.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(AngularSpeed::default().to_arrow()?),
                datatype: AngularSpeed::arrow_datatype(),
                verify_arrow_array: AngularSpeed::verify_arrow_array,
            },
        ),
        (
            <ApplyLatestAt as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether empty cells in a dataframe should be filled with a latest-at query.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ApplyLatestAt::default().to_arrow()?),
                datatype: ApplyLatestAt::arrow_datatype(),
                verify_arrow_array: ApplyLatestAt::verify_arrow_array,
            },
        ),
        (
            <AutoLayout as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether the viewport layout is determined automatically.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(AutoLayout::default().to_arrow()?),
                datatype: AutoLayout::arrow_datatype(),
                verify_arrow_array: AutoLayout::verify_arrow_array,
            },
        ),
        (
            <AutoViews as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether or not views should be created automatically.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(AutoViews::default().to_arrow()?),
                datatype: AutoViews::arrow_datatype(),
                verify_arrow_array: AutoViews::verify_arrow_array,
            },
        ),
        (
            <BackgroundKind as Component>::name(),
            ComponentReflection {
                docstring_md: "The type of the background in a view.",
                deprecation_summary: None,
                custom_placeholder: Some(BackgroundKind::default().to_arrow()?),
                datatype: BackgroundKind::arrow_datatype(),
                verify_arrow_array: BackgroundKind::verify_arrow_array,
            },
        ),
        (
            <ColumnShare as Component>::name(),
            ComponentReflection {
                docstring_md: "The layout share of a column in the container.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ColumnShare::default().to_arrow()?),
                datatype: ColumnShare::arrow_datatype(),
                verify_arrow_array: ColumnShare::verify_arrow_array,
            },
        ),
        (
            <ComponentColumnSelector as Component>::name(),
            ComponentReflection {
                docstring_md: "Describe a component column to be selected in the dataframe view.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ComponentColumnSelector::default().to_arrow()?),
                datatype: ComponentColumnSelector::arrow_datatype(),
                verify_arrow_array: ComponentColumnSelector::verify_arrow_array,
            },
        ),
        (
            <ContainerKind as Component>::name(),
            ComponentReflection {
                docstring_md: "The kind of a blueprint container (tabs, grid, …).",
                deprecation_summary: None,
                custom_placeholder: Some(ContainerKind::default().to_arrow()?),
                datatype: ContainerKind::arrow_datatype(),
                verify_arrow_array: ContainerKind::verify_arrow_array,
            },
        ),
        (
            <Corner2D as Component>::name(),
            ComponentReflection {
                docstring_md: "One of four 2D corners, typically used to align objects.",
                deprecation_summary: None,
                custom_placeholder: Some(Corner2D::default().to_arrow()?),
                datatype: Corner2D::arrow_datatype(),
                verify_arrow_array: Corner2D::verify_arrow_array,
            },
        ),
        (
            <Enabled as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether a procedure is enabled.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(Enabled::default().to_arrow()?),
                datatype: Enabled::arrow_datatype(),
                verify_arrow_array: Enabled::verify_arrow_array,
            },
        ),
        (
            <Eye3DKind as Component>::name(),
            ComponentReflection {
                docstring_md: "The kind of the 3D eye to view a scene in a [`views.Spatial3DView`](https://rerun.io/docs/reference/types/views/spatial3d_view).\n\nThis is used to specify how the controls of the view react to user input (such as mouse gestures).",
                deprecation_summary: None,
                custom_placeholder: Some(Eye3DKind::default().to_arrow()?),
                datatype: Eye3DKind::arrow_datatype(),
                verify_arrow_array: Eye3DKind::verify_arrow_array,
            },
        ),
        (
            <FilterByRange as Component>::name(),
            ComponentReflection {
                docstring_md: "Configuration for a filter-by-range feature of the dataframe view.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(FilterByRange::default().to_arrow()?),
                datatype: FilterByRange::arrow_datatype(),
                verify_arrow_array: FilterByRange::verify_arrow_array,
            },
        ),
        (
            <FilterIsNotNull as Component>::name(),
            ComponentReflection {
                docstring_md: "Configuration for the filter is not null feature of the dataframe view.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(FilterIsNotNull::default().to_arrow()?),
                datatype: FilterIsNotNull::arrow_datatype(),
                verify_arrow_array: FilterIsNotNull::verify_arrow_array,
            },
        ),
        (
            <ForceDistance as Component>::name(),
            ComponentReflection {
                docstring_md: "The target distance between two nodes.\n\nThis is helpful to scale the layout, for example if long labels are involved.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ForceDistance::default().to_arrow()?),
                datatype: ForceDistance::arrow_datatype(),
                verify_arrow_array: ForceDistance::verify_arrow_array,
            },
        ),
        (
            <ForceIterations as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies how often this force should be applied per iteration.\n\nIncreasing this parameter can lead to better results at the cost of longer computation time.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ForceIterations::default().to_arrow()?),
                datatype: ForceIterations::arrow_datatype(),
                verify_arrow_array: ForceIterations::verify_arrow_array,
            },
        ),
        (
            <ForceStrength as Component>::name(),
            ComponentReflection {
                docstring_md: "The strength of a given force.\n\nAllows to assign different weights to the individual forces, prioritizing one over the other.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ForceStrength::default().to_arrow()?),
                datatype: ForceStrength::arrow_datatype(),
                verify_arrow_array: ForceStrength::verify_arrow_array,
            },
        ),
        (
            <Fps as Component>::name(),
            ComponentReflection {
                docstring_md: "Frames per second for a sequence timeline.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: Fps::arrow_datatype(),
                verify_arrow_array: Fps::verify_arrow_array,
            },
        ),
        (
            <GridColumns as Component>::name(),
            ComponentReflection {
                docstring_md: "How many columns a grid container should have.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(GridColumns::default().to_arrow()?),
                datatype: GridColumns::arrow_datatype(),
                verify_arrow_array: GridColumns::verify_arrow_array,
            },
        ),
        (
            <GridSpacing as Component>::name(),
            ComponentReflection {
                docstring_md: "Space between grid lines of one line to the next in scene units.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(GridSpacing::default().to_arrow()?),
                datatype: GridSpacing::arrow_datatype(),
                verify_arrow_array: GridSpacing::verify_arrow_array,
            },
        ),
        (
            <IncludedContent as Component>::name(),
            ComponentReflection {
                docstring_md: "All the contents in the container.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(IncludedContent::default().to_arrow()?),
                datatype: IncludedContent::arrow_datatype(),
                verify_arrow_array: IncludedContent::verify_arrow_array,
            },
        ),
        (
            <LinkAxis as Component>::name(),
            ComponentReflection {
                docstring_md: "How should the horizontal/X/time axis be linked across multiple plots",
                deprecation_summary: None,
                custom_placeholder: Some(LinkAxis::default().to_arrow()?),
                datatype: LinkAxis::arrow_datatype(),
                verify_arrow_array: LinkAxis::verify_arrow_array,
            },
        ),
        (
            <LockRangeDuringZoom as Component>::name(),
            ComponentReflection {
                docstring_md: "Indicate whether the range should be locked when zooming in on the data.\n\nDefault is `false`, i.e. zoom will change the visualized range.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(LockRangeDuringZoom::default().to_arrow()?),
                datatype: LockRangeDuringZoom::arrow_datatype(),
                verify_arrow_array: LockRangeDuringZoom::verify_arrow_array,
            },
        ),
        (
            <LoopMode as Component>::name(),
            ComponentReflection {
                docstring_md: "If playing, whether and how the playback time should loop.",
                deprecation_summary: None,
                custom_placeholder: Some(LoopMode::default().to_arrow()?),
                datatype: LoopMode::arrow_datatype(),
                verify_arrow_array: LoopMode::verify_arrow_array,
            },
        ),
        (
            <MapProvider as Component>::name(),
            ComponentReflection {
                docstring_md: "Name of the map provider to be used in Map views.",
                deprecation_summary: None,
                custom_placeholder: Some(MapProvider::default().to_arrow()?),
                datatype: MapProvider::arrow_datatype(),
                verify_arrow_array: MapProvider::verify_arrow_array,
            },
        ),
        (
            <NearClipPlane as Component>::name(),
            ComponentReflection {
                docstring_md: "Distance to the near clip plane used for `Spatial2DView`.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(NearClipPlane::default().to_arrow()?),
                datatype: NearClipPlane::arrow_datatype(),
                verify_arrow_array: NearClipPlane::verify_arrow_array,
            },
        ),
        (
            <PanelState as Component>::name(),
            ComponentReflection {
                docstring_md: "Tri-state for panel controls.",
                deprecation_summary: None,
                custom_placeholder: Some(PanelState::default().to_arrow()?),
                datatype: PanelState::arrow_datatype(),
                verify_arrow_array: PanelState::verify_arrow_array,
            },
        ),
        (
            <PlayState as Component>::name(),
            ComponentReflection {
                docstring_md: "The current play state.",
                deprecation_summary: None,
                custom_placeholder: Some(PlayState::default().to_arrow()?),
                datatype: PlayState::arrow_datatype(),
                verify_arrow_array: PlayState::verify_arrow_array,
            },
        ),
        (
            <PlaybackSpeed as Component>::name(),
            ComponentReflection {
                docstring_md: "A playback speed which determines how fast time progresses.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: PlaybackSpeed::arrow_datatype(),
                verify_arrow_array: PlaybackSpeed::verify_arrow_array,
            },
        ),
        (
            <QueryExpression as Component>::name(),
            ComponentReflection {
                docstring_md: "An individual query expression used to filter a set of [`datatypes.EntityPath`](https://rerun.io/docs/reference/types/datatypes/entity_path)s.\n\nEach expression is either an inclusion or an exclusion expression.\nInclusions start with an optional `+` and exclusions must start with a `-`.\n\nMultiple expressions are combined together as part of archetypes.ViewContents.\n\nThe `/**` suffix matches the whole subtree, i.e. self and any child, recursively\n(`/world/**` matches both `/world` and `/world/car/driver`).\nOther uses of `*` are not (yet) supported.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(QueryExpression::default().to_arrow()?),
                datatype: QueryExpression::arrow_datatype(),
                verify_arrow_array: QueryExpression::verify_arrow_array,
            },
        ),
        (
            <RootContainer as Component>::name(),
            ComponentReflection {
                docstring_md: "The container that sits at the root of a viewport.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(RootContainer::default().to_arrow()?),
                datatype: RootContainer::arrow_datatype(),
                verify_arrow_array: RootContainer::verify_arrow_array,
            },
        ),
        (
            <RowShare as Component>::name(),
            ComponentReflection {
                docstring_md: "The layout share of a row in the container.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(RowShare::default().to_arrow()?),
                datatype: RowShare::arrow_datatype(),
                verify_arrow_array: RowShare::verify_arrow_array,
            },
        ),
        (
            <SelectedColumns as Component>::name(),
            ComponentReflection {
                docstring_md: "Describe a component column to be selected in the dataframe view.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(SelectedColumns::default().to_arrow()?),
                datatype: SelectedColumns::arrow_datatype(),
                verify_arrow_array: SelectedColumns::verify_arrow_array,
            },
        ),
        (
            <TensorDimensionIndexSlider as Component>::name(),
            ComponentReflection {
                docstring_md: "Show a slider for the index of some dimension of a slider.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(TensorDimensionIndexSlider::default().to_arrow()?),
                datatype: TensorDimensionIndexSlider::arrow_datatype(),
                verify_arrow_array: TensorDimensionIndexSlider::verify_arrow_array,
            },
        ),
        (
            <TimeInt as Component>::name(),
            ComponentReflection {
                docstring_md: "A reference to a time.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: TimeInt::arrow_datatype(),
                verify_arrow_array: TimeInt::verify_arrow_array,
            },
        ),
        (
            <TimeRange as Component>::name(),
            ComponentReflection {
                docstring_md: "A time range on an unspecified timeline using either relative or absolute boundaries.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: TimeRange::arrow_datatype(),
                verify_arrow_array: TimeRange::verify_arrow_array,
            },
        ),
        (
            <TimelineName as Component>::name(),
            ComponentReflection {
                docstring_md: "A timeline identified by its name.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(TimelineName::default().to_arrow()?),
                datatype: TimelineName::arrow_datatype(),
                verify_arrow_array: TimelineName::verify_arrow_array,
            },
        ),
        (
            <ViewClass as Component>::name(),
            ComponentReflection {
                docstring_md: "The class identifier of view, e.g. `\"2D\"`, `\"TextLog\"`, ….\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ViewClass::default().to_arrow()?),
                datatype: ViewClass::arrow_datatype(),
                verify_arrow_array: ViewClass::verify_arrow_array,
            },
        ),
        (
            <ViewFit as Component>::name(),
            ComponentReflection {
                docstring_md: "Determines whether an image or texture should be scaled to fit the viewport.",
                deprecation_summary: None,
                custom_placeholder: Some(ViewFit::default().to_arrow()?),
                datatype: ViewFit::arrow_datatype(),
                verify_arrow_array: ViewFit::verify_arrow_array,
            },
        ),
        (
            <ViewMaximized as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether a view is maximized.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ViewMaximized::default().to_arrow()?),
                datatype: ViewMaximized::arrow_datatype(),
                verify_arrow_array: ViewMaximized::verify_arrow_array,
            },
        ),
        (
            <ViewOrigin as Component>::name(),
            ComponentReflection {
                docstring_md: "The origin of a view.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ViewOrigin::default().to_arrow()?),
                datatype: ViewOrigin::arrow_datatype(),
                verify_arrow_array: ViewOrigin::verify_arrow_array,
            },
        ),
        (
            <ViewerRecommendationHash as Component>::name(),
            ComponentReflection {
                docstring_md: "Hash of a viewer recommendation.\n\nThe formation of this hash is considered an internal implementation detail of the viewer.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ViewerRecommendationHash::default().to_arrow()?),
                datatype: ViewerRecommendationHash::arrow_datatype(),
                verify_arrow_array: ViewerRecommendationHash::verify_arrow_array,
            },
        ),
        (
            <VisibleTimeRange as Component>::name(),
            ComponentReflection {
                docstring_md: "The range of values on a given timeline that will be included in a view's query.\n\nRefer to `VisibleTimeRanges` archetype for more information.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(VisibleTimeRange::default().to_arrow()?),
                datatype: VisibleTimeRange::arrow_datatype(),
                verify_arrow_array: VisibleTimeRange::verify_arrow_array,
            },
        ),
        (
            <VisualBounds2D as Component>::name(),
            ComponentReflection {
                docstring_md: "Visual bounds in 2D space used for `Spatial2DView`.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(VisualBounds2D::default().to_arrow()?),
                datatype: VisualBounds2D::arrow_datatype(),
                verify_arrow_array: VisualBounds2D::verify_arrow_array,
            },
        ),
        (
            <VisualizerOverride as Component>::name(),
            ComponentReflection {
                docstring_md: "Single visualizer override the visualizers for an entity.\n\nFor details see archetypes.VisualizerOverrides.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(VisualizerOverride::default().to_arrow()?),
                datatype: VisualizerOverride::arrow_datatype(),
                verify_arrow_array: VisualizerOverride::verify_arrow_array,
            },
        ),
        (
            <ZoomLevel as Component>::name(),
            ComponentReflection {
                docstring_md: "A zoom level determines how much of the world is visible on a map.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ZoomLevel::default().to_arrow()?),
                datatype: ZoomLevel::arrow_datatype(),
                verify_arrow_array: ZoomLevel::verify_arrow_array,
            },
        ),
        (
            <AggregationPolicy as Component>::name(),
            ComponentReflection {
                docstring_md: "Policy for aggregation of multiple scalar plot values.\n\nThis is used for lines in plots when the X axis distance of individual points goes below a single pixel,\ni.e. a single pixel covers more than one tick worth of data. It can greatly improve performance\n(and readability) in such situations as it prevents overdraw.",
                deprecation_summary: None,
                custom_placeholder: Some(AggregationPolicy::default().to_arrow()?),
                datatype: AggregationPolicy::arrow_datatype(),
                verify_arrow_array: AggregationPolicy::verify_arrow_array,
            },
        ),
        (
            <AlbedoFactor as Component>::name(),
            ComponentReflection {
                docstring_md: "A color multiplier, usually applied to a whole entity, e.g. a mesh.",
                deprecation_summary: None,
                custom_placeholder: Some(AlbedoFactor::default().to_arrow()?),
                datatype: AlbedoFactor::arrow_datatype(),
                verify_arrow_array: AlbedoFactor::verify_arrow_array,
            },
        ),
        (
            <AnnotationContext as Component>::name(),
            ComponentReflection {
                docstring_md: "The annotation context provides additional information on how to display entities.\n\nEntities can use [`datatypes.ClassId`](https://rerun.io/docs/reference/types/datatypes/class_id)s and [`datatypes.KeypointId`](https://rerun.io/docs/reference/types/datatypes/keypoint_id)s to provide annotations, and\nthe labels and colors will be looked up in the appropriate\nannotation context. We use the *first* annotation context we find in the\npath-hierarchy when searching up through the ancestors of a given entity\npath.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(AnnotationContext::default().to_arrow()?),
                datatype: AnnotationContext::arrow_datatype(),
                verify_arrow_array: AnnotationContext::verify_arrow_array,
            },
        ),
        (
            <AxisLength as Component>::name(),
            ComponentReflection {
                docstring_md: "The length of an axis in local units of the space.",
                deprecation_summary: None,
                custom_placeholder: Some(AxisLength::default().to_arrow()?),
                datatype: AxisLength::arrow_datatype(),
                verify_arrow_array: AxisLength::verify_arrow_array,
            },
        ),
        (
            <Blob as Component>::name(),
            ComponentReflection {
                docstring_md: "A binary blob of data.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: Blob::arrow_datatype(),
                verify_arrow_array: Blob::verify_arrow_array,
            },
        ),
        (
            <ChannelId as Component>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit ID representing an MCAP channel.\n\nUsed to identify specific channels within an MCAP file.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: ChannelId::arrow_datatype(),
                verify_arrow_array: ChannelId::verify_arrow_array,
            },
        ),
        (
            <ChannelMessageCounts as Component>::name(),
            ComponentReflection {
                docstring_md: "A mapping of channel IDs to their respective message counts.\n\nUsed in MCAP statistics to track how many messages were recorded per channel.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ChannelMessageCounts::default().to_arrow()?),
                datatype: ChannelMessageCounts::arrow_datatype(),
                verify_arrow_array: ChannelMessageCounts::verify_arrow_array,
            },
        ),
        (
            <ClassId as Component>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit ID representing a type of semantic class.",
                deprecation_summary: None,
                custom_placeholder: Some(ClassId::default().to_arrow()?),
                datatype: ClassId::arrow_datatype(),
                verify_arrow_array: ClassId::verify_arrow_array,
            },
        ),
        (
            <ClearIsRecursive as Component>::name(),
            ComponentReflection {
                docstring_md: "Configures how a clear operation should behave - recursive or not.",
                deprecation_summary: None,
                custom_placeholder: Some(ClearIsRecursive::default().to_arrow()?),
                datatype: ClearIsRecursive::arrow_datatype(),
                verify_arrow_array: ClearIsRecursive::verify_arrow_array,
            },
        ),
        (
            <Color as Component>::name(),
            ComponentReflection {
                docstring_md: "An RGBA color with unmultiplied/separate alpha, in sRGB gamma space with linear alpha.\n\nThe color is stored as a 32-bit integer, where the most significant\nbyte is `R` and the least significant byte is `A`.",
                deprecation_summary: None,
                custom_placeholder: Some(Color::default().to_arrow()?),
                datatype: Color::arrow_datatype(),
                verify_arrow_array: Color::verify_arrow_array,
            },
        ),
        (
            <Colormap as Component>::name(),
            ComponentReflection {
                docstring_md: "Colormap for mapping scalar values within a given range to a color.\n\nThis provides a number of popular pre-defined colormaps.\nIn the future, the Rerun Viewer will allow users to define their own colormaps,\nbut currently the Viewer is limited to the types defined here.",
                deprecation_summary: None,
                custom_placeholder: Some(Colormap::default().to_arrow()?),
                datatype: Colormap::arrow_datatype(),
                verify_arrow_array: Colormap::verify_arrow_array,
            },
        ),
        (
            <Count as Component>::name(),
            ComponentReflection {
                docstring_md: "A generic count value.\n\nUsed for counting various entities like messages, schemas, channels, etc.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: Count::arrow_datatype(),
                verify_arrow_array: Count::verify_arrow_array,
            },
        ),
        (
            <DepthMeter as Component>::name(),
            ComponentReflection {
                docstring_md: "The world->depth map scaling factor.\n\nThis measures how many depth map units are in a world unit.\nFor instance, if a depth map uses millimeters and the world uses meters,\nthis value would be `1000`.\n\nNote that the only effect on 2D views is the physical depth values shown when hovering the image.\nIn 3D views on the other hand, this affects where the points of the point cloud are placed.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(DepthMeter::default().to_arrow()?),
                datatype: DepthMeter::arrow_datatype(),
                verify_arrow_array: DepthMeter::verify_arrow_array,
            },
        ),
        (
            <DrawOrder as Component>::name(),
            ComponentReflection {
                docstring_md: "Draw order of 2D elements. Higher values are drawn on top of lower values.\n\nAn entity can have only a single draw order component.\nWithin an entity draw order is governed by the order of the components.\n\nDraw order for entities with the same draw order is generally undefined.",
                deprecation_summary: None,
                custom_placeholder: Some(DrawOrder::default().to_arrow()?),
                datatype: DrawOrder::arrow_datatype(),
                verify_arrow_array: DrawOrder::verify_arrow_array,
            },
        ),
        (
            <EntityPath as Component>::name(),
            ComponentReflection {
                docstring_md: "A path to an entity, usually to reference some data that is part of the target entity.",
                deprecation_summary: None,
                custom_placeholder: Some(EntityPath::default().to_arrow()?),
                datatype: EntityPath::arrow_datatype(),
                verify_arrow_array: EntityPath::verify_arrow_array,
            },
        ),
        (
            <FillMode as Component>::name(),
            ComponentReflection {
                docstring_md: "How a geometric shape is drawn and colored.",
                deprecation_summary: None,
                custom_placeholder: Some(FillMode::default().to_arrow()?),
                datatype: FillMode::arrow_datatype(),
                verify_arrow_array: FillMode::verify_arrow_array,
            },
        ),
        (
            <FillRatio as Component>::name(),
            ComponentReflection {
                docstring_md: "How much a primitive fills out the available space.\n\nUsed for instance to scale the points of the point cloud created from [`archetypes.DepthImage`](https://rerun.io/docs/reference/types/archetypes/depth_image) projection in 3D views.\nValid range is from 0 to max float although typically values above 1.0 are not useful.\n\nDefaults to 1.0.",
                deprecation_summary: None,
                custom_placeholder: Some(FillRatio::default().to_arrow()?),
                datatype: FillRatio::arrow_datatype(),
                verify_arrow_array: FillRatio::verify_arrow_array,
            },
        ),
        (
            <GammaCorrection as Component>::name(),
            ComponentReflection {
                docstring_md: "A gamma correction value to be used with a scalar value or color.\n\nUsed to adjust the gamma of a color or scalar value between 0 and 1 before rendering.\n`new_value = old_value ^ gamma`\n\nMust be a positive number.\nDefaults to 1.0 unless otherwise specified.",
                deprecation_summary: None,
                custom_placeholder: Some(GammaCorrection::default().to_arrow()?),
                datatype: GammaCorrection::arrow_datatype(),
                verify_arrow_array: GammaCorrection::verify_arrow_array,
            },
        ),
        (
            <GeoLineString as Component>::name(),
            ComponentReflection {
                docstring_md: "A geospatial line string expressed in [EPSG:4326](https://epsg.io/4326) latitude and longitude (North/East-positive degrees).",
                deprecation_summary: None,
                custom_placeholder: Some(GeoLineString::default().to_arrow()?),
                datatype: GeoLineString::arrow_datatype(),
                verify_arrow_array: GeoLineString::verify_arrow_array,
            },
        ),
        (
            <GraphEdge as Component>::name(),
            ComponentReflection {
                docstring_md: "An edge in a graph connecting two nodes.",
                deprecation_summary: None,
                custom_placeholder: Some(GraphEdge::default().to_arrow()?),
                datatype: GraphEdge::arrow_datatype(),
                verify_arrow_array: GraphEdge::verify_arrow_array,
            },
        ),
        (
            <GraphNode as Component>::name(),
            ComponentReflection {
                docstring_md: "A string-based ID representing a node in a graph.",
                deprecation_summary: None,
                custom_placeholder: Some(GraphNode::default().to_arrow()?),
                datatype: GraphNode::arrow_datatype(),
                verify_arrow_array: GraphNode::verify_arrow_array,
            },
        ),
        (
            <GraphType as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies if a graph has directed or undirected edges.",
                deprecation_summary: None,
                custom_placeholder: Some(GraphType::default().to_arrow()?),
                datatype: GraphType::arrow_datatype(),
                verify_arrow_array: GraphType::verify_arrow_array,
            },
        ),
        (
            <HalfSize2D as Component>::name(),
            ComponentReflection {
                docstring_md: "Half-size (radius) of a 2D box.\n\nMeasured in its local coordinate system.\n\nThe box extends both in negative and positive direction along each axis.\nNegative sizes indicate that the box is flipped along the respective axis, but this has no effect on how it is displayed.",
                deprecation_summary: None,
                custom_placeholder: Some(HalfSize2D::default().to_arrow()?),
                datatype: HalfSize2D::arrow_datatype(),
                verify_arrow_array: HalfSize2D::verify_arrow_array,
            },
        ),
        (
            <HalfSize3D as Component>::name(),
            ComponentReflection {
                docstring_md: "Half-size (radius) of a 3D box.\n\nMeasured in its local coordinate system.\n\nThe box extends both in negative and positive direction along each axis.\nNegative sizes indicate that the box is flipped along the respective axis, but this has no effect on how it is displayed.",
                deprecation_summary: None,
                custom_placeholder: Some(HalfSize3D::default().to_arrow()?),
                datatype: HalfSize3D::arrow_datatype(),
                verify_arrow_array: HalfSize3D::verify_arrow_array,
            },
        ),
        (
            <ImageBuffer as Component>::name(),
            ComponentReflection {
                docstring_md: "A buffer that is known to store image data.\n\nTo interpret the contents of this buffer, see, [`components.ImageFormat`](https://rerun.io/docs/reference/types/components/image_format).",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: ImageBuffer::arrow_datatype(),
                verify_arrow_array: ImageBuffer::verify_arrow_array,
            },
        ),
        (
            <ImageFormat as Component>::name(),
            ComponentReflection {
                docstring_md: "The metadata describing the contents of a [`components.ImageBuffer`](https://rerun.io/docs/reference/types/components/image_buffer).",
                deprecation_summary: None,
                custom_placeholder: Some(ImageFormat::default().to_arrow()?),
                datatype: ImageFormat::arrow_datatype(),
                verify_arrow_array: ImageFormat::verify_arrow_array,
            },
        ),
        (
            <ImagePlaneDistance as Component>::name(),
            ComponentReflection {
                docstring_md: "The distance from the camera origin to the image plane when the projection is shown in a 3D viewer.\n\nThis is only used for visualization purposes, and does not affect the projection itself.",
                deprecation_summary: None,
                custom_placeholder: Some(ImagePlaneDistance::default().to_arrow()?),
                datatype: ImagePlaneDistance::arrow_datatype(),
                verify_arrow_array: ImagePlaneDistance::verify_arrow_array,
            },
        ),
        (
            <Interactive as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether the entity can be interacted with.\n\nNon interactive components are still visible, but mouse interactions in the view are disabled.",
                deprecation_summary: None,
                custom_placeholder: Some(Interactive::default().to_arrow()?),
                datatype: Interactive::arrow_datatype(),
                verify_arrow_array: Interactive::verify_arrow_array,
            },
        ),
        (
            <KeyValuePairs as Component>::name(),
            ComponentReflection {
                docstring_md: "A map of string keys to string values.\n\nThis component can be used to attach arbitrary metadata or annotations to entities.\nEach key-value pair is stored as a UTF-8 string mapping.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(KeyValuePairs::default().to_arrow()?),
                datatype: KeyValuePairs::arrow_datatype(),
                verify_arrow_array: KeyValuePairs::verify_arrow_array,
            },
        ),
        (
            <KeypointId as Component>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit ID representing a type of semantic keypoint within a class.",
                deprecation_summary: None,
                custom_placeholder: Some(KeypointId::default().to_arrow()?),
                datatype: KeypointId::arrow_datatype(),
                verify_arrow_array: KeypointId::verify_arrow_array,
            },
        ),
        (
            <LatLon as Component>::name(),
            ComponentReflection {
                docstring_md: "A geospatial position expressed in [EPSG:4326](https://epsg.io/4326) latitude and longitude (North/East-positive degrees).",
                deprecation_summary: None,
                custom_placeholder: Some(LatLon::default().to_arrow()?),
                datatype: LatLon::arrow_datatype(),
                verify_arrow_array: LatLon::verify_arrow_array,
            },
        ),
        (
            <Length as Component>::name(),
            ComponentReflection {
                docstring_md: "Length, or one-dimensional size.\n\nMeasured in its local coordinate system; consult the archetype in use to determine which\naxis or part of the entity this is the length of.",
                deprecation_summary: None,
                custom_placeholder: Some(Length::default().to_arrow()?),
                datatype: Length::arrow_datatype(),
                verify_arrow_array: Length::verify_arrow_array,
            },
        ),
        (
            <LineStrip2D as Component>::name(),
            ComponentReflection {
                docstring_md: "A line strip in 2D space.\n\nA line strip is a list of points connected by line segments. It can be used to draw\napproximations of smooth curves.\n\nThe points will be connected in order, like so:\n```text\n       2------3     5\n      /        \\   /\n0----1          \\ /\n                 4\n```",
                deprecation_summary: None,
                custom_placeholder: Some(LineStrip2D::default().to_arrow()?),
                datatype: LineStrip2D::arrow_datatype(),
                verify_arrow_array: LineStrip2D::verify_arrow_array,
            },
        ),
        (
            <LineStrip3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A line strip in 3D space.\n\nA line strip is a list of points connected by line segments. It can be used to draw\napproximations of smooth curves.\n\nThe points will be connected in order, like so:\n```text\n       2------3     5\n      /        \\   /\n0----1          \\ /\n                 4\n```",
                deprecation_summary: None,
                custom_placeholder: Some(LineStrip3D::default().to_arrow()?),
                datatype: LineStrip3D::arrow_datatype(),
                verify_arrow_array: LineStrip3D::verify_arrow_array,
            },
        ),
        (
            <LinearSpeed as Component>::name(),
            ComponentReflection {
                docstring_md: "Linear speed, used for translation speed for example.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: LinearSpeed::arrow_datatype(),
                verify_arrow_array: LinearSpeed::verify_arrow_array,
            },
        ),
        (
            <MagnificationFilter as Component>::name(),
            ComponentReflection {
                docstring_md: "Filter used when magnifying an image/texture such that a single pixel/texel is displayed as multiple pixels on screen.",
                deprecation_summary: None,
                custom_placeholder: Some(MagnificationFilter::default().to_arrow()?),
                datatype: MagnificationFilter::arrow_datatype(),
                verify_arrow_array: MagnificationFilter::verify_arrow_array,
            },
        ),
        (
            <MarkerShape as Component>::name(),
            ComponentReflection {
                docstring_md: "The visual appearance of a point in e.g. a 2D plot.",
                deprecation_summary: None,
                custom_placeholder: Some(MarkerShape::default().to_arrow()?),
                datatype: MarkerShape::arrow_datatype(),
                verify_arrow_array: MarkerShape::verify_arrow_array,
            },
        ),
        (
            <MarkerSize as Component>::name(),
            ComponentReflection {
                docstring_md: "Radius of a marker of a point in e.g. a 2D plot, measured in UI points.",
                deprecation_summary: None,
                custom_placeholder: Some(MarkerSize::default().to_arrow()?),
                datatype: MarkerSize::arrow_datatype(),
                verify_arrow_array: MarkerSize::verify_arrow_array,
            },
        ),
        (
            <MediaType as Component>::name(),
            ComponentReflection {
                docstring_md: "A standardized media type (RFC2046, formerly known as MIME types), encoded as a string.\n\nThe complete reference of officially registered media types is maintained by the IANA and can be\nconsulted at <https://www.iana.org/assignments/media-types/media-types.xhtml>.",
                deprecation_summary: None,
                custom_placeholder: Some(MediaType::default().to_arrow()?),
                datatype: MediaType::arrow_datatype(),
                verify_arrow_array: MediaType::verify_arrow_array,
            },
        ),
        (
            <Name as Component>::name(),
            ComponentReflection {
                docstring_md: "A display name, typically for an entity or a item like a plot series.",
                deprecation_summary: None,
                custom_placeholder: Some(Name::default().to_arrow()?),
                datatype: Name::arrow_datatype(),
                verify_arrow_array: Name::verify_arrow_array,
            },
        ),
        (
            <Opacity as Component>::name(),
            ComponentReflection {
                docstring_md: "Degree of transparency ranging from 0.0 (fully transparent) to 1.0 (fully opaque).\n\nThe final opacity value may be a result of multiplication with alpha values as specified by other color sources.\nUnless otherwise specified, the default value is 1.",
                deprecation_summary: None,
                custom_placeholder: Some(Opacity::default().to_arrow()?),
                datatype: Opacity::arrow_datatype(),
                verify_arrow_array: Opacity::verify_arrow_array,
            },
        ),
        (
            <PinholeProjection as Component>::name(),
            ComponentReflection {
                docstring_md: "Camera projection, from image coordinates to view coordinates.\n\nChild from parent.\nImage coordinates from camera view coordinates.\n\nExample:\n```text\n1496.1     0.0  980.5\n   0.0  1496.1  744.5\n   0.0     0.0    1.0\n```",
                deprecation_summary: None,
                custom_placeholder: Some(PinholeProjection::default().to_arrow()?),
                datatype: PinholeProjection::arrow_datatype(),
                verify_arrow_array: PinholeProjection::verify_arrow_array,
            },
        ),
        (
            <Plane3D as Component>::name(),
            ComponentReflection {
                docstring_md: "An infinite 3D plane represented by a unit normal vector and a distance.\n\nAny point P on the plane fulfills the equation `dot(xyz, P) - d = 0`,\nwhere `xyz` is the plane's normal and `d` the distance of the plane from the origin.\nThis representation is also known as the Hesse normal form.\n\nNote: although the normal will be passed through to the\ndatastore as provided, when used in the Viewer, planes will always be normalized.\nI.e. the plane with xyz = (2, 0, 0), d = 1 is equivalent to xyz = (1, 0, 0), d = 0.5",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: Plane3D::arrow_datatype(),
                verify_arrow_array: Plane3D::verify_arrow_array,
            },
        ),
        (
            <PoseRotationAxisAngle as Component>::name(),
            ComponentReflection {
                docstring_md: "3D rotation represented by a rotation around a given axis that doesn't propagate in the transform hierarchy.\n\nIf normalization of the rotation axis fails the rotation is treated as an invalid transform, unless the\nangle is zero in which case it is treated as an identity.",
                deprecation_summary: None,
                custom_placeholder: Some(PoseRotationAxisAngle::default().to_arrow()?),
                datatype: PoseRotationAxisAngle::arrow_datatype(),
                verify_arrow_array: PoseRotationAxisAngle::verify_arrow_array,
            },
        ),
        (
            <PoseRotationQuat as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3D rotation expressed as a quaternion that doesn't propagate in the transform hierarchy.\n\nNote: although the x,y,z,w components of the quaternion will be passed through to the\ndatastore as provided, when used in the Viewer, quaternions will always be normalized.\nIf normalization fails the rotation is treated as an invalid transform.",
                deprecation_summary: None,
                custom_placeholder: Some(PoseRotationQuat::default().to_arrow()?),
                datatype: PoseRotationQuat::arrow_datatype(),
                verify_arrow_array: PoseRotationQuat::verify_arrow_array,
            },
        ),
        (
            <PoseScale3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3D scale factor that doesn't propagate in the transform hierarchy.\n\nA scale of 1.0 means no scaling.\nA scale of 2.0 means doubling the size.\nEach component scales along the corresponding axis.",
                deprecation_summary: None,
                custom_placeholder: Some(PoseScale3D::default().to_arrow()?),
                datatype: PoseScale3D::arrow_datatype(),
                verify_arrow_array: PoseScale3D::verify_arrow_array,
            },
        ),
        (
            <PoseTransformMat3x3 as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3x3 transformation matrix Matrix that doesn't propagate in the transform hierarchy.\n\n3x3 matrixes are able to represent any affine transformation in 3D space,\ni.e. rotation, scaling, shearing, reflection etc.\n\nMatrices in Rerun are stored as flat list of coefficients in column-major order:\n```text\n            column 0       column 1       column 2\n       -------------------------------------------------\nrow 0 | flat_columns[0] flat_columns[3] flat_columns[6]\nrow 1 | flat_columns[1] flat_columns[4] flat_columns[7]\nrow 2 | flat_columns[2] flat_columns[5] flat_columns[8]\n```",
                deprecation_summary: None,
                custom_placeholder: Some(PoseTransformMat3x3::default().to_arrow()?),
                datatype: PoseTransformMat3x3::arrow_datatype(),
                verify_arrow_array: PoseTransformMat3x3::verify_arrow_array,
            },
        ),
        (
            <PoseTranslation3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A translation vector in 3D space that doesn't propagate in the transform hierarchy.",
                deprecation_summary: None,
                custom_placeholder: Some(PoseTranslation3D::default().to_arrow()?),
                datatype: PoseTranslation3D::arrow_datatype(),
                verify_arrow_array: PoseTranslation3D::verify_arrow_array,
            },
        ),
        (
            <Position2D as Component>::name(),
            ComponentReflection {
                docstring_md: "A position in 2D space.",
                deprecation_summary: None,
                custom_placeholder: Some(Position2D::default().to_arrow()?),
                datatype: Position2D::arrow_datatype(),
                verify_arrow_array: Position2D::verify_arrow_array,
            },
        ),
        (
            <Position3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A position in 3D space.",
                deprecation_summary: None,
                custom_placeholder: Some(Position3D::default().to_arrow()?),
                datatype: Position3D::arrow_datatype(),
                verify_arrow_array: Position3D::verify_arrow_array,
            },
        ),
        (
            <Radius as Component>::name(),
            ComponentReflection {
                docstring_md: "The radius of something, e.g. a point.\n\nInternally, positive values indicate scene units, whereas negative values\nare interpreted as UI points.\n\nUI points are independent of zooming in Views, but are sensitive to the application UI scaling.\nat 100% UI scaling, UI points are equal to pixels\nThe Viewer's UI scaling defaults to the OS scaling which typically is 100% for full HD screens and 200% for 4k screens.",
                deprecation_summary: None,
                custom_placeholder: Some(Radius::default().to_arrow()?),
                datatype: Radius::arrow_datatype(),
                verify_arrow_array: Radius::verify_arrow_array,
            },
        ),
        (
            <Range1D as Component>::name(),
            ComponentReflection {
                docstring_md: "A 1D range, specifying a lower and upper bound.",
                deprecation_summary: None,
                custom_placeholder: Some(Range1D::default().to_arrow()?),
                datatype: Range1D::arrow_datatype(),
                verify_arrow_array: Range1D::verify_arrow_array,
            },
        ),
        (
            <Resolution as Component>::name(),
            ComponentReflection {
                docstring_md: "Pixel resolution width & height, e.g. of a camera sensor.\n\nTypically in integer units, but for some use cases floating point may be used.",
                deprecation_summary: None,
                custom_placeholder: Some(Resolution::default().to_arrow()?),
                datatype: Resolution::arrow_datatype(),
                verify_arrow_array: Resolution::verify_arrow_array,
            },
        ),
        (
            <RotationAxisAngle as Component>::name(),
            ComponentReflection {
                docstring_md: "3D rotation represented by a rotation around a given axis.\n\nIf normalization of the rotation axis fails the rotation is treated as an invalid transform, unless the\nangle is zero in which case it is treated as an identity.",
                deprecation_summary: None,
                custom_placeholder: Some(RotationAxisAngle::default().to_arrow()?),
                datatype: RotationAxisAngle::arrow_datatype(),
                verify_arrow_array: RotationAxisAngle::verify_arrow_array,
            },
        ),
        (
            <RotationQuat as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3D rotation expressed as a quaternion.\n\nNote: although the x,y,z,w components of the quaternion will be passed through to the\ndatastore as provided, when used in the Viewer, quaternions will always be normalized.\nIf normalization fails the rotation is treated as an invalid transform.",
                deprecation_summary: None,
                custom_placeholder: Some(RotationQuat::default().to_arrow()?),
                datatype: RotationQuat::arrow_datatype(),
                verify_arrow_array: RotationQuat::verify_arrow_array,
            },
        ),
        (
            <Scalar as Component>::name(),
            ComponentReflection {
                docstring_md: "A scalar value, encoded as a 64-bit floating point.\n\nUsed for time series plots.",
                deprecation_summary: None,
                custom_placeholder: Some(Scalar::default().to_arrow()?),
                datatype: Scalar::arrow_datatype(),
                verify_arrow_array: Scalar::verify_arrow_array,
            },
        ),
        (
            <Scale3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3D scale factor.\n\nA scale of 1.0 means no scaling.\nA scale of 2.0 means doubling the size.\nEach component scales along the corresponding axis.",
                deprecation_summary: None,
                custom_placeholder: Some(Scale3D::default().to_arrow()?),
                datatype: Scale3D::arrow_datatype(),
                verify_arrow_array: Scale3D::verify_arrow_array,
            },
        ),
        (
            <SchemaId as Component>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit unique identifier for a schema within the MCAP file.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: SchemaId::arrow_datatype(),
                verify_arrow_array: SchemaId::verify_arrow_array,
            },
        ),
        (
            <SeriesVisible as Component>::name(),
            ComponentReflection {
                docstring_md: "Like [`components.Visible`](https://rerun.io/docs/reference/types/components/visible), but for time series.\n\nTODO(#10632): This is a temporary workaround. Right now we can't use [`components.Visible`](https://rerun.io/docs/reference/types/components/visible) since it would conflict with the entity-wide visibility state.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: SeriesVisible::arrow_datatype(),
                verify_arrow_array: SeriesVisible::verify_arrow_array,
            },
        ),
        (
            <ShowLabels as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether the entity's [`components.Text`](https://rerun.io/docs/reference/types/components/text) label is shown.\n\nThe main purpose of this component existing separately from the labels themselves\nis to be overridden when desired, to allow hiding and showing from the viewer and\nblueprints.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: ShowLabels::arrow_datatype(),
                verify_arrow_array: ShowLabels::verify_arrow_array,
            },
        ),
        (
            <StrokeWidth as Component>::name(),
            ComponentReflection {
                docstring_md: "The width of a stroke specified in UI points.",
                deprecation_summary: None,
                custom_placeholder: Some(StrokeWidth::default().to_arrow()?),
                datatype: StrokeWidth::arrow_datatype(),
                verify_arrow_array: StrokeWidth::verify_arrow_array,
            },
        ),
        (
            <TensorData as Component>::name(),
            ComponentReflection {
                docstring_md: "An N-dimensional array of numbers.\n\nThe number of dimensions and their respective lengths is specified by the `shape` field.\nThe dimensions are ordered from outermost to innermost. For example, in the common case of\na 2D RGB Image, the shape would be `[height, width, channel]`.\n\nThese dimensions are combined with an index to look up values from the `buffer` field,\nwhich stores a contiguous array of typed values.",
                deprecation_summary: None,
                custom_placeholder: Some(TensorData::default().to_arrow()?),
                datatype: TensorData::arrow_datatype(),
                verify_arrow_array: TensorData::verify_arrow_array,
            },
        ),
        (
            <TensorDimensionIndexSelection as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies a concrete index on a tensor dimension.",
                deprecation_summary: None,
                custom_placeholder: Some(TensorDimensionIndexSelection::default().to_arrow()?),
                datatype: TensorDimensionIndexSelection::arrow_datatype(),
                verify_arrow_array: TensorDimensionIndexSelection::verify_arrow_array,
            },
        ),
        (
            <TensorHeightDimension as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies which dimension to use for height.",
                deprecation_summary: None,
                custom_placeholder: Some(TensorHeightDimension::default().to_arrow()?),
                datatype: TensorHeightDimension::arrow_datatype(),
                verify_arrow_array: TensorHeightDimension::verify_arrow_array,
            },
        ),
        (
            <TensorWidthDimension as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies which dimension to use for width.",
                deprecation_summary: None,
                custom_placeholder: Some(TensorWidthDimension::default().to_arrow()?),
                datatype: TensorWidthDimension::arrow_datatype(),
                verify_arrow_array: TensorWidthDimension::verify_arrow_array,
            },
        ),
        (
            <Texcoord2D as Component>::name(),
            ComponentReflection {
                docstring_md: "A 2D texture UV coordinate.\n\nTexture coordinates specify a position on a 2D texture.\nA range from 0-1 covers the entire texture in the respective dimension.\nUnless configured otherwise, the texture repeats outside of this range.\nRerun uses top-left as the origin for UV coordinates.\n\n  0     U     1\n0 + --------- →\n  |           .\nV |           .\n  |           .\n1 ↓ . . . . . .\n\nThis is the same convention as in Vulkan/Metal/DX12/WebGPU, but (!) unlike OpenGL,\nwhich places the origin at the bottom-left.",
                deprecation_summary: None,
                custom_placeholder: Some(Texcoord2D::default().to_arrow()?),
                datatype: Texcoord2D::arrow_datatype(),
                verify_arrow_array: Texcoord2D::verify_arrow_array,
            },
        ),
        (
            <Text as Component>::name(),
            ComponentReflection {
                docstring_md: "A string of text, e.g. for labels and text documents.",
                deprecation_summary: None,
                custom_placeholder: Some(Text::default().to_arrow()?),
                datatype: Text::arrow_datatype(),
                verify_arrow_array: Text::verify_arrow_array,
            },
        ),
        (
            <TextLogLevel as Component>::name(),
            ComponentReflection {
                docstring_md: "The severity level of a text log message.\n\nRecommended to be one of:\n* `\"CRITICAL\"`\n* `\"ERROR\"`\n* `\"WARN\"`\n* `\"INFO\"`\n* `\"DEBUG\"`\n* `\"TRACE\"`",
                deprecation_summary: None,
                custom_placeholder: Some(TextLogLevel::default().to_arrow()?),
                datatype: TextLogLevel::arrow_datatype(),
                verify_arrow_array: TextLogLevel::verify_arrow_array,
            },
        ),
        (
            <Timestamp as Component>::name(),
            ComponentReflection {
                docstring_md: "When the recording started.\n\nShould be an absolute time, i.e. relative to Unix Epoch.",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: Timestamp::arrow_datatype(),
                verify_arrow_array: Timestamp::verify_arrow_array,
            },
        ),
        (
            <TransformFrameId as Component>::name(),
            ComponentReflection {
                docstring_md: "A string identifier for a transform frame.\n\n**Experimental:** Transform frames are still in early development!\n\nTransform frames may be derived from entity paths to refer to Rerun's implicit\nentity path driven hierarchy which is defined via [`archetypes.Transform3D`](https://rerun.io/docs/reference/types/archetypes/transform3d), [`archetypes.Pinhole`](https://rerun.io/docs/reference/types/archetypes/pinhole) etc..\nNote that any transform logged at an entity path describes a relationship between the two transform\nframes represented by that entity path and its parent path,\n**not** the transform frame that the entity path may be using.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: TransformFrameId::arrow_datatype(),
                verify_arrow_array: TransformFrameId::verify_arrow_array,
            },
        ),
        (
            <TransformMat3x3 as Component>::name(),
            ComponentReflection {
                docstring_md: "A 3x3 transformation matrix Matrix.\n\n3x3 matrixes are able to represent any affine transformation in 3D space,\ni.e. rotation, scaling, shearing, reflection etc.\n\nMatrices in Rerun are stored as flat list of coefficients in column-major order:\n```text\n            column 0       column 1       column 2\n       -------------------------------------------------\nrow 0 | flat_columns[0] flat_columns[3] flat_columns[6]\nrow 1 | flat_columns[1] flat_columns[4] flat_columns[7]\nrow 2 | flat_columns[2] flat_columns[5] flat_columns[8]\n```",
                deprecation_summary: None,
                custom_placeholder: Some(TransformMat3x3::default().to_arrow()?),
                datatype: TransformMat3x3::arrow_datatype(),
                verify_arrow_array: TransformMat3x3::verify_arrow_array,
            },
        ),
        (
            <TransformRelation as Component>::name(),
            ComponentReflection {
                docstring_md: "Specifies relation a spatial transform describes.",
                deprecation_summary: None,
                custom_placeholder: Some(TransformRelation::default().to_arrow()?),
                datatype: TransformRelation::arrow_datatype(),
                verify_arrow_array: TransformRelation::verify_arrow_array,
            },
        ),
        (
            <Translation3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A translation vector in 3D space.",
                deprecation_summary: None,
                custom_placeholder: Some(Translation3D::default().to_arrow()?),
                datatype: Translation3D::arrow_datatype(),
                verify_arrow_array: Translation3D::verify_arrow_array,
            },
        ),
        (
            <TriangleIndices as Component>::name(),
            ComponentReflection {
                docstring_md: "The three indices of a triangle in a triangle mesh.",
                deprecation_summary: None,
                custom_placeholder: Some(TriangleIndices::default().to_arrow()?),
                datatype: TriangleIndices::arrow_datatype(),
                verify_arrow_array: TriangleIndices::verify_arrow_array,
            },
        ),
        (
            <ValueRange as Component>::name(),
            ComponentReflection {
                docstring_md: "Range of expected or valid values, specifying a lower and upper bound.\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ValueRange::default().to_arrow()?),
                datatype: ValueRange::arrow_datatype(),
                verify_arrow_array: ValueRange::verify_arrow_array,
            },
        ),
        (
            <Vector2D as Component>::name(),
            ComponentReflection {
                docstring_md: "A vector in 2D space.",
                deprecation_summary: None,
                custom_placeholder: Some(Vector2D::default().to_arrow()?),
                datatype: Vector2D::arrow_datatype(),
                verify_arrow_array: Vector2D::verify_arrow_array,
            },
        ),
        (
            <Vector3D as Component>::name(),
            ComponentReflection {
                docstring_md: "A vector in 3D space.",
                deprecation_summary: None,
                custom_placeholder: Some(Vector3D::default().to_arrow()?),
                datatype: Vector3D::arrow_datatype(),
                verify_arrow_array: Vector3D::verify_arrow_array,
            },
        ),
        (
            <VideoCodec as Component>::name(),
            ComponentReflection {
                docstring_md: "The codec used to encode video stored in [`components.VideoSample`](https://rerun.io/docs/reference/types/components/video_sample).\n\nSupport of these codecs by the Rerun Viewer is platform dependent.\nFor more details see check the [video reference](https://rerun.io/docs/reference/video).\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: VideoCodec::arrow_datatype(),
                verify_arrow_array: VideoCodec::verify_arrow_array,
            },
        ),
        (
            <VideoSample as Component>::name(),
            ComponentReflection {
                docstring_md: "Video sample data (also known as \"video chunk\").\n\nEach video sample must contain enough data for exactly one video frame\n(this restriction may be relaxed in the future for some codecs).\n\nKeyframes may require additional data, for details see [`components.VideoCodec`](https://rerun.io/docs/reference/types/components/video_codec).",
                deprecation_summary: None,
                custom_placeholder: None,
                datatype: VideoSample::arrow_datatype(),
                verify_arrow_array: VideoSample::verify_arrow_array,
            },
        ),
        (
            <VideoTimestamp as Component>::name(),
            ComponentReflection {
                docstring_md: "Timestamp inside a [`archetypes.AssetVideo`](https://rerun.io/docs/reference/types/archetypes/asset_video).",
                deprecation_summary: None,
                custom_placeholder: Some(VideoTimestamp::default().to_arrow()?),
                datatype: VideoTimestamp::arrow_datatype(),
                verify_arrow_array: VideoTimestamp::verify_arrow_array,
            },
        ),
        (
            <ViewCoordinates as Component>::name(),
            ComponentReflection {
                docstring_md: "How we interpret the coordinate system of an entity/space.\n\nFor instance: What is \"up\"? What does the Z axis mean?\n\nThe three coordinates are always ordered as [x, y, z].\n\nFor example [Right, Down, Forward] means that the X axis points to the right, the Y axis points\ndown, and the Z axis points forward.\n\n⚠ [Rerun does not yet support left-handed coordinate systems](https://github.com/rerun-io/rerun/issues/5032).\n\nThe following constants are used to represent the different directions:\n * Up = 1\n * Down = 2\n * Right = 3\n * Left = 4\n * Forward = 5\n * Back = 6\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                deprecation_summary: None,
                custom_placeholder: Some(ViewCoordinates::default().to_arrow()?),
                datatype: ViewCoordinates::arrow_datatype(),
                verify_arrow_array: ViewCoordinates::verify_arrow_array,
            },
        ),
        (
            <Visible as Component>::name(),
            ComponentReflection {
                docstring_md: "Whether the container, view, entity or instance is currently visible.",
                deprecation_summary: None,
                custom_placeholder: Some(Visible::default().to_arrow()?),
                datatype: Visible::arrow_datatype(),
                verify_arrow_array: Visible::verify_arrow_array,
            },
        ),
    ];
    Ok(ComponentReflectionMap::from_iter(array))
}

/// Generates reflection about all known archetypes.
///
/// Call only once and reuse the results.

fn generate_archetype_reflection() -> ArchetypeReflectionMap {
    re_tracing::profile_function!();
    let array = [
        (
            ArchetypeName::new("rerun.archetypes.AnnotationContext"),
            ArchetypeReflection {
                display_name: "Annotation context",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![ArchetypeFieldReflection {
                    name: "context",
                    display_name: "Context",
                    component_type: "rerun.components.AnnotationContext".into(),
                    docstring_md: "List of class descriptions, mapping class indices to class names, colors etc.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Arrows2D"),
            ArchetypeReflection {
                display_name: "Arrows 2D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "vectors",
                        display_name: "Vectors",
                        component_type: "rerun.components.Vector2D".into(),
                        docstring_md: "All the vectors for each arrow in the batch.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "origins",
                        display_name: "Origins",
                        component_type: "rerun.components.Position2D".into(),
                        docstring_md: "All the origin (base) positions for each arrow in the batch.\n\nIf no origins are set, (0, 0) is used as the origin for each arrow.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the arrows.\n\nThe shaft is rendered as a line with `radius = 0.5 * radius`.\nThe tip is rendered with `height = 2.0 * radius` and `radius = 1.0 * radius`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the points.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the arrows.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the points.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Arrows3D"),
            ArchetypeReflection {
                display_name: "Arrows 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "vectors",
                        display_name: "Vectors",
                        component_type: "rerun.components.Vector3D".into(),
                        docstring_md: "All the vectors for each arrow in the batch.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "origins",
                        display_name: "Origins",
                        component_type: "rerun.components.Position3D".into(),
                        docstring_md: "All the origin (base) positions for each arrow in the batch.\n\nIf no origins are set, (0, 0, 0) is used as the origin for each arrow.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the arrows.\n\nThe shaft is rendered as a line with `radius = 0.5 * radius`.\nThe tip is rendered with `height = 2.0 * radius` and `radius = 1.0 * radius`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the points.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the arrows.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the points.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Asset3D"),
            ArchetypeReflection {
                display_name: "Asset 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "blob",
                        display_name: "Blob",
                        component_type: "rerun.components.Blob".into(),
                        docstring_md: "The asset's bytes.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "media_type",
                        display_name: "Media type",
                        component_type: "rerun.components.MediaType".into(),
                        docstring_md: "The Media Type of the asset.\n\nSupported values:\n* `model/gltf-binary`\n* `model/gltf+json`\n* `model/obj` (.mtl material files are not supported yet, references are silently ignored)\n* `model/stl`\n\nIf omitted, the viewer will try to guess from the data blob.\nIf it cannot guess, it won't be able to render the asset.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "albedo_factor",
                        display_name: "Albedo factor",
                        component_type: "rerun.components.AlbedoFactor".into(),
                        docstring_md: "A color multiplier applied to the whole asset.\n\nFor mesh who already have `albedo_factor` in materials,\nit will be overwritten by actual `albedo_factor` of [`archetypes.Asset3D`](https://rerun.io/docs/reference/types/archetypes/asset3d) (if specified).",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.AssetVideo"),
            ArchetypeReflection {
                display_name: "Asset video",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "blob",
                        display_name: "Blob",
                        component_type: "rerun.components.Blob".into(),
                        docstring_md: "The asset's bytes.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "media_type",
                        display_name: "Media type",
                        component_type: "rerun.components.MediaType".into(),
                        docstring_md: "The Media Type of the asset.\n\nSupported values:\n* `video/mp4`\n\nIf omitted, the viewer will try to guess from the data blob.\nIf it cannot guess, it won't be able to render the asset.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.BarChart"),
            ArchetypeReflection {
                display_name: "Bar chart",
                deprecation_summary: None,
                scope: None,
                view_types: &["BarChartView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "values",
                        display_name: "Values",
                        component_type: "rerun.components.TensorData".into(),
                        docstring_md: "The values. Should always be a 1-dimensional tensor (i.e. a vector).",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "The color of the bar chart",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "abscissa",
                        display_name: "Abscissa",
                        component_type: "rerun.components.TensorData".into(),
                        docstring_md: "The abscissa corresponding to each value. Should be a 1-dimensional tensor (i.e. a vector) in same length as values.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Boxes2D"),
            ArchetypeReflection {
                display_name: "Boxes 2D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "half_sizes",
                        display_name: "Half sizes",
                        component_type: "rerun.components.HalfSize2D".into(),
                        docstring_md: "All half-extents that make up the batch of boxes.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "centers",
                        display_name: "Centers",
                        component_type: "rerun.components.Position2D".into(),
                        docstring_md: "Optional center positions of the boxes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the boxes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the lines that make up the boxes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the boxes.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `10.0`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s for the boxes.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Boxes3D"),
            ArchetypeReflection {
                display_name: "Boxes 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "half_sizes",
                        display_name: "Half sizes",
                        component_type: "rerun.components.HalfSize3D".into(),
                        docstring_md: "All half-extents that make up the batch of boxes.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "centers",
                        display_name: "Centers",
                        component_type: "rerun.components.PoseTranslation3D".into(),
                        docstring_md: "Optional center positions of the boxes.\n\nIf not specified, the centers will be at (0, 0, 0).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angles",
                        display_name: "Rotation axis angles",
                        component_type: "rerun.components.PoseRotationAxisAngle".into(),
                        docstring_md: "Rotations via axis + angle.\n\nIf no rotation is specified, the axes of the boxes align with the axes of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternions",
                        display_name: "Quaternions",
                        component_type: "rerun.components.PoseRotationQuat".into(),
                        docstring_md: "Rotations via quaternion.\n\nIf no rotation is specified, the axes of the boxes align with the axes of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the boxes.\n\nAlpha channel is used for transparency for solid fill-mode.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the lines that make up the boxes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "fill_mode",
                        display_name: "Fill mode",
                        component_type: "rerun.components.FillMode".into(),
                        docstring_md: "Optionally choose whether the boxes are drawn with lines or solid.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the boxes.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s for the boxes.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Capsules3D"),
            ArchetypeReflection {
                display_name: "Capsules 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "lengths",
                        display_name: "Lengths",
                        component_type: "rerun.components.Length".into(),
                        docstring_md: "Lengths of the capsules, defined as the distance between the centers of the endcaps.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Radii of the capsules.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "translations",
                        display_name: "Translations",
                        component_type: "rerun.components.PoseTranslation3D".into(),
                        docstring_md: "Optional translations of the capsules.\n\nIf not specified, one end of each capsule will be at (0, 0, 0).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angles",
                        display_name: "Rotation axis angles",
                        component_type: "rerun.components.PoseRotationAxisAngle".into(),
                        docstring_md: "Rotations via axis + angle.\n\nIf no rotation is specified, the capsules align with the +Z axis of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternions",
                        display_name: "Quaternions",
                        component_type: "rerun.components.PoseRotationQuat".into(),
                        docstring_md: "Rotations via quaternion.\n\nIf no rotation is specified, the capsules align with the +Z axis of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the capsules.\n\nAlpha channel is used for transparency for solid fill-mode.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "line_radii",
                        display_name: "Line radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the lines used when the cylinder is rendered as a wireframe.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "fill_mode",
                        display_name: "Fill mode",
                        component_type: "rerun.components.FillMode".into(),
                        docstring_md: "Optionally choose whether the cylinders are drawn with lines or solid.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the capsules, which will be located at their centers.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class ID for the ellipsoids.\n\nThe class ID provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Clear"),
            ArchetypeReflection {
                display_name: "Clear",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView", "TimeSeriesView"],
                fields: vec![ArchetypeFieldReflection {
                    name: "is_recursive",
                    display_name: "Is recursive",
                    component_type: "rerun.components.ClearIsRecursive".into(),
                    docstring_md: "",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.CoordinateFrame"),
            ArchetypeReflection {
                display_name: "Coordinate frame",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![ArchetypeFieldReflection {
                    name: "frame_id",
                    display_name: "Frame id",
                    component_type: "rerun.components.TransformFrameId".into(),
                    docstring_md: "The coordinate frame to use for the current entity.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Cylinders3D"),
            ArchetypeReflection {
                display_name: "Cylinders 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "lengths",
                        display_name: "Lengths",
                        component_type: "rerun.components.Length".into(),
                        docstring_md: "The total axial length of the cylinder, measured as the straight-line distance between the centers of its two endcaps.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Radii of the cylinders.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "centers",
                        display_name: "Centers",
                        component_type: "rerun.components.PoseTranslation3D".into(),
                        docstring_md: "Optional centers of the cylinders.\n\nIf not specified, each cylinder will be centered at (0, 0, 0).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angles",
                        display_name: "Rotation axis angles",
                        component_type: "rerun.components.PoseRotationAxisAngle".into(),
                        docstring_md: "Rotations via axis + angle.\n\nIf no rotation is specified, the cylinders align with the +Z axis of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternions",
                        display_name: "Quaternions",
                        component_type: "rerun.components.PoseRotationQuat".into(),
                        docstring_md: "Rotations via quaternion.\n\nIf no rotation is specified, the cylinders align with the +Z axis of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the cylinders.\n\nAlpha channel is used for transparency for solid fill-mode.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "line_radii",
                        display_name: "Line radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the lines used when the cylinder is rendered as a wireframe.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "fill_mode",
                        display_name: "Fill mode",
                        component_type: "rerun.components.FillMode".into(),
                        docstring_md: "Optionally choose whether the cylinders are drawn with lines or solid.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the cylinders, which will be located at their centers.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class ID for the ellipsoids.\n\nThe class ID provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.DepthImage"),
            ArchetypeReflection {
                display_name: "Depth image",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "buffer",
                        display_name: "Buffer",
                        component_type: "rerun.components.ImageBuffer".into(),
                        docstring_md: "The raw depth image data.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "format",
                        display_name: "Format",
                        component_type: "rerun.components.ImageFormat".into(),
                        docstring_md: "The format of the image.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "meter",
                        display_name: "Meter",
                        component_type: "rerun.components.DepthMeter".into(),
                        docstring_md: "An optional floating point value that specifies how long a meter is in the native depth units.\n\nFor instance: with uint16, perhaps meter=1000 which would mean you have millimeter precision\nand a range of up to ~65 meters (2^16 / 1000).\n\nNote that the only effect on 2D views is the physical depth values shown when hovering the image.\nIn 3D views on the other hand, this affects where the points of the point cloud are placed.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colormap",
                        display_name: "Colormap",
                        component_type: "rerun.components.Colormap".into(),
                        docstring_md: "Colormap to use for rendering the depth image.\n\nIf not set, the depth image will be rendered using the Turbo colormap.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "depth_range",
                        display_name: "Depth range",
                        component_type: "rerun.components.ValueRange".into(),
                        docstring_md: "The expected range of depth values.\n\nThis is typically the expected range of valid values.\nEverything outside of the range is clamped to the range for the purpose of colormpaping.\nNote that point clouds generated from this image will still display all points, regardless of this range.\n\nIf not specified, the range will be automatically estimated from the data.\nNote that the Viewer may try to guess a wider range than the minimum/maximum of values\nin the contents of the depth image.\nE.g. if all values are positive, some bigger than 1.0 and all smaller than 255.0,\nthe Viewer will guess that the data likely came from an 8bit image, thus assuming a range of 0-255.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "point_fill_ratio",
                        display_name: "Point fill ratio",
                        component_type: "rerun.components.FillRatio".into(),
                        docstring_md: "Scale the radii of the points in the point cloud generated from this image.\n\nA fill ratio of 1.0 (the default) means that each point is as big as to touch the center of its neighbor\nif it is at the same depth, leaving no gaps.\nA fill ratio of 0.5 means that each point touches the edge of its neighbor if it has the same depth.\n\nTODO(#6744): This applies only to 3D views!",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order, used only if the depth image is shown as a 2D image.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `-20.0`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Ellipsoids3D"),
            ArchetypeReflection {
                display_name: "Ellipsoids 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "half_sizes",
                        display_name: "Half sizes",
                        component_type: "rerun.components.HalfSize3D".into(),
                        docstring_md: "For each ellipsoid, half of its size on its three axes.\n\nIf all components are equal, then it is a sphere with that radius.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "centers",
                        display_name: "Centers",
                        component_type: "rerun.components.PoseTranslation3D".into(),
                        docstring_md: "Optional center positions of the ellipsoids.\n\nIf not specified, the centers will be at (0, 0, 0).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angles",
                        display_name: "Rotation axis angles",
                        component_type: "rerun.components.PoseRotationAxisAngle".into(),
                        docstring_md: "Rotations via axis + angle.\n\nIf no rotation is specified, the axes of the ellipsoid align with the axes of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternions",
                        display_name: "Quaternions",
                        component_type: "rerun.components.PoseRotationQuat".into(),
                        docstring_md: "Rotations via quaternion.\n\nIf no rotation is specified, the axes of the ellipsoid align with the axes of the local coordinate system.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the ellipsoids.\n\nAlpha channel is used for transparency for solid fill-mode.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "line_radii",
                        display_name: "Line radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the lines used when the ellipsoid is rendered as a wireframe.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "fill_mode",
                        display_name: "Fill mode",
                        component_type: "rerun.components.FillMode".into(),
                        docstring_md: "Optionally choose whether the ellipsoids are drawn with lines or solid.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the ellipsoids.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class ID for the ellipsoids.\n\nThe class ID provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.EncodedImage"),
            ArchetypeReflection {
                display_name: "Encoded image",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "blob",
                        display_name: "Blob",
                        component_type: "rerun.components.Blob".into(),
                        docstring_md: "The encoded content of some image file, e.g. a PNG or JPEG.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "media_type",
                        display_name: "Media type",
                        component_type: "rerun.components.MediaType".into(),
                        docstring_md: "The Media Type of the asset.\n\nSupported values:\n* `image/jpeg`\n* `image/png`\n\nIf omitted, the viewer will try to guess from the data blob.\nIf it cannot guess, it won't be able to render the asset.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "opacity",
                        display_name: "Opacity",
                        component_type: "rerun.components.Opacity".into(),
                        docstring_md: "Opacity of the image, useful for layering several media.\n\nDefaults to 1.0 (fully opaque).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.GeoLineStrings"),
            ArchetypeReflection {
                display_name: "Geo line strings",
                deprecation_summary: None,
                scope: None,
                view_types: &["MapView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "line_strings",
                        display_name: "Line strings",
                        component_type: "rerun.components.GeoLineString".into(),
                        docstring_md: "The line strings, expressed in [EPSG:4326](https://epsg.io/4326) coordinates (North/East-positive degrees).",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the line strings.\n\n*Note*: scene units radiii are interpreted as meters. Currently, the display scale only considers the latitude of\nthe first vertex of each line string (see [this issue](https://github.com/rerun-io/rerun/issues/8013)).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the line strings.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.GeoPoints"),
            ArchetypeReflection {
                display_name: "Geo points",
                deprecation_summary: None,
                scope: None,
                view_types: &["MapView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "positions",
                        display_name: "Positions",
                        component_type: "rerun.components.LatLon".into(),
                        docstring_md: "The [EPSG:4326](https://epsg.io/4326) coordinates for the points (North/East-positive degrees).",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the points, effectively turning them into circles.\n\n*Note*: scene units radiii are interpreted as meters.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the points.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the points.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.GraphEdges"),
            ArchetypeReflection {
                display_name: "Graph edges",
                deprecation_summary: None,
                scope: None,
                view_types: &["GraphView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "edges",
                        display_name: "Edges",
                        component_type: "rerun.components.GraphEdge".into(),
                        docstring_md: "A list of node tuples.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "graph_type",
                        display_name: "Graph type",
                        component_type: "rerun.components.GraphType".into(),
                        docstring_md: "Specifies if the graph is directed or undirected.\n\nIf no [`components.GraphType`](https://rerun.io/docs/reference/types/components/graph_type) is provided, the graph is assumed to be undirected.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.GraphNodes"),
            ArchetypeReflection {
                display_name: "Graph nodes",
                deprecation_summary: None,
                scope: None,
                view_types: &["GraphView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "node_ids",
                        display_name: "Node ids",
                        component_type: "rerun.components.GraphNode".into(),
                        docstring_md: "A list of node IDs.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "positions",
                        display_name: "Positions",
                        component_type: "rerun.components.Position2D".into(),
                        docstring_md: "Optional center positions of the nodes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the boxes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the node.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for nodes.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Image"),
            ArchetypeReflection {
                display_name: "Image",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "buffer",
                        display_name: "Buffer",
                        component_type: "rerun.components.ImageBuffer".into(),
                        docstring_md: "The raw image data.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "format",
                        display_name: "Format",
                        component_type: "rerun.components.ImageFormat".into(),
                        docstring_md: "The format of the image.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "opacity",
                        display_name: "Opacity",
                        component_type: "rerun.components.Opacity".into(),
                        docstring_md: "Opacity of the image, useful for layering several media.\n\nDefaults to 1.0 (fully opaque).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `-10.0`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.InstancePoses3D"),
            ArchetypeReflection {
                display_name: "Instance poses 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "translations",
                        display_name: "Translations",
                        component_type: "rerun.components.PoseTranslation3D".into(),
                        docstring_md: "Translation vectors.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angles",
                        display_name: "Rotation axis angles",
                        component_type: "rerun.components.PoseRotationAxisAngle".into(),
                        docstring_md: "Rotations via axis + angle.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternions",
                        display_name: "Quaternions",
                        component_type: "rerun.components.PoseRotationQuat".into(),
                        docstring_md: "Rotations via quaternion.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "scales",
                        display_name: "Scales",
                        component_type: "rerun.components.PoseScale3D".into(),
                        docstring_md: "Scaling factors.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "mat3x3",
                        display_name: "Mat 3x 3",
                        component_type: "rerun.components.PoseTransformMat3x3".into(),
                        docstring_md: "3x3 transformation matrices.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.LineStrips2D"),
            ArchetypeReflection {
                display_name: "Line strips 2D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "strips",
                        display_name: "Strips",
                        component_type: "rerun.components.LineStrip2D".into(),
                        docstring_md: "All the actual 2D line strips that make up the batch.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the line strips.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the line strips.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the line strips.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order of each line strip.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `20.0`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s for the lines.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.LineStrips3D"),
            ArchetypeReflection {
                display_name: "Line strips 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "strips",
                        display_name: "Strips",
                        component_type: "rerun.components.LineStrip3D".into(),
                        docstring_md: "All the actual 3D line strips that make up the batch.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the line strips.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the line strips.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the line strips.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s for the lines.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.McapChannel"),
            ArchetypeReflection {
                display_name: "Mcap channel",
                deprecation_summary: None,
                scope: None,
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "id",
                        display_name: "Id",
                        component_type: "rerun.components.ChannelId".into(),
                        docstring_md: "Unique identifier for this channel within the MCAP file.\n\nChannel IDs must be unique within a single MCAP file and are used to associate\nmessages with their corresponding channel definition.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "topic",
                        display_name: "Topic",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "The topic name that this channel publishes to.\n\nTopics are hierarchical paths from the original robotics system (e.g., \"/sensors/camera/image\")\nthat categorize and organize different data streams.\nTopics are separate from Rerun's entity paths, but they often can be mapped to them.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "message_encoding",
                        display_name: "Message encoding",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "The encoding format used for messages in this channel.\n\nCommon encodings include:\n* `ros1` - ROS1 message format\n* `cdr` - Common Data Representation (CDR) message format, used by ROS2\n* `protobuf` - Protocol Buffers\n* `json` - JSON encoding",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "metadata",
                        display_name: "Metadata",
                        component_type: "rerun.components.KeyValuePairs".into(),
                        docstring_md: "Additional metadata for this channel stored as key-value pairs.\n\nThis can include channel-specific configuration, description, units, coordinate frames,\nor any other contextual information that helps interpret the data in this channel.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.McapMessage"),
            ArchetypeReflection {
                display_name: "Mcap message",
                deprecation_summary: None,
                scope: None,
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "data",
                    display_name: "Data",
                    component_type: "rerun.components.Blob".into(),
                    docstring_md: "The raw message payload as a binary blob.\n\nThis contains the actual message data encoded according to the format specified\nby the associated channel's `message_encoding` field. The structure and interpretation\nof this binary data depends on the encoding format (e.g., ros1, cdr, protobuf)\nand the message schema defined for the channel.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.McapSchema"),
            ArchetypeReflection {
                display_name: "Mcap schema",
                deprecation_summary: None,
                scope: None,
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "id",
                        display_name: "Id",
                        component_type: "rerun.components.SchemaId".into(),
                        docstring_md: "Unique identifier for this schema within the MCAP file.\n\nSchema IDs must be unique within an MCAP file and are referenced by channels\nto specify their message structure. A single schema can be shared across multiple channels.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "name",
                        display_name: "Name",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Human-readable name identifying this schema.\n\nSchema names typically describe the message type or data structure\n(e.g., `\"geometry_msgs/msg/Twist\"`, `\"sensor_msgs/msg/Image\"`, `\"MyCustomMessage\"`).",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "encoding",
                        display_name: "Encoding",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "The schema definition format used to describe the message structure.\n\nCommon schema encodings include:\n* `protobuf` - [Protocol Buffers](https://mcap.dev/spec/registry#protobuf-1) schema definition\n* `ros1msg` - [ROS1](https://mcap.dev/spec/registry#ros1msg) message definition format\n* `ros2msg` - [ROS2](https://mcap.dev/spec/registry#ros2msg) message definition format\n* `jsonschema` - [JSON Schema](https://mcap.dev/spec/registry#jsonschema) specification\n* `flatbuffer` - [FlatBuffers](https://mcap.dev/spec/registry#flatbuffer) schema definition",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "data",
                        display_name: "Data",
                        component_type: "rerun.components.Blob".into(),
                        docstring_md: "The schema definition content as binary data.\n\nThis contains the actual schema specification in the format indicated by the\n`encoding` field. For text-based schemas (like ROS message definitions or JSON Schema),\nthis is typically UTF-8 encoded text. For binary schema formats, this contains\nthe serialized schema data.",
                        is_required: true,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.McapStatistics"),
            ArchetypeReflection {
                display_name: "Mcap statistics",
                deprecation_summary: None,
                scope: None,
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "message_count",
                        display_name: "Message count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Total number of data messages contained in the MCAP recording.\n\nThis count includes all timestamped data messages but excludes metadata records,\nschema definitions, and other non-message records.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "schema_count",
                        display_name: "Schema count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Number of unique schema definitions in the recording.\n\nEach schema defines the structure for one or more message types used by channels.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "channel_count",
                        display_name: "Channel count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Number of channels defined in the recording.\n\nEach channel represents a unique topic and encoding combination for publishing messages.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "attachment_count",
                        display_name: "Attachment count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Number of file attachments embedded in the recording.\n\nAttachments can include calibration files, configuration data, or other auxiliary files.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "metadata_count",
                        display_name: "Metadata count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Number of metadata records providing additional context about the recording.\n\nMetadata records contain key-value pairs with information about the recording environment,\nsystem configuration, or other contextual data.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "chunk_count",
                        display_name: "Chunk count",
                        component_type: "rerun.components.Count".into(),
                        docstring_md: "Number of data chunks used to organize messages in the file.\n\nChunks group related messages together for efficient storage and indexed access.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "message_start_time",
                        display_name: "Message start time",
                        component_type: "rerun.components.Timestamp".into(),
                        docstring_md: "Timestamp of the earliest message in the recording.\n\nThis marks the beginning of the recorded data timeline.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "message_end_time",
                        display_name: "Message end time",
                        component_type: "rerun.components.Timestamp".into(),
                        docstring_md: "Timestamp of the latest message in the recording.\n\nTogether with `message_start_time`, this defines the total duration of the recording.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "channel_message_counts",
                        display_name: "Channel message counts",
                        component_type: "rerun.components.ChannelMessageCounts".into(),
                        docstring_md: "Detailed breakdown of message counts per channel.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Mesh3D"),
            ArchetypeReflection {
                display_name: "Mesh 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "vertex_positions",
                        display_name: "Vertex positions",
                        component_type: "rerun.components.Position3D".into(),
                        docstring_md: "The positions of each vertex.\n\nIf no `triangle_indices` are specified, then each triplet of positions is interpreted as a triangle.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "triangle_indices",
                        display_name: "Triangle indices",
                        component_type: "rerun.components.TriangleIndices".into(),
                        docstring_md: "Optional indices for the triangles that make up the mesh.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "vertex_normals",
                        display_name: "Vertex normals",
                        component_type: "rerun.components.Vector3D".into(),
                        docstring_md: "An optional normal for each vertex.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "vertex_colors",
                        display_name: "Vertex colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "An optional color for each vertex.\n\nThe alpha channel is ignored.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "vertex_texcoords",
                        display_name: "Vertex texcoords",
                        component_type: "rerun.components.Texcoord2D".into(),
                        docstring_md: "An optional uv texture coordinate for each vertex.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "albedo_factor",
                        display_name: "Albedo factor",
                        component_type: "rerun.components.AlbedoFactor".into(),
                        docstring_md: "A color multiplier applied to the whole mesh.\n\nAlpha channel governs the overall mesh transparency.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "albedo_texture_buffer",
                        display_name: "Albedo texture buffer",
                        component_type: "rerun.components.ImageBuffer".into(),
                        docstring_md: "Optional albedo texture.\n\nUsed with the [`components.Texcoord2D`](https://rerun.io/docs/reference/types/components/texcoord2d) of the mesh.\n\nCurrently supports only sRGB(A) textures, ignoring alpha.\n(meaning that the tensor must have 3 or 4 channels and use the `u8` format)\n\nThe alpha channel is ignored.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "albedo_texture_format",
                        display_name: "Albedo texture format",
                        component_type: "rerun.components.ImageFormat".into(),
                        docstring_md: "The format of the `albedo_texture_buffer`, if any.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the vertices.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Pinhole"),
            ArchetypeReflection {
                display_name: "Pinhole",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "image_from_camera",
                        display_name: "Image from camera",
                        component_type: "rerun.components.PinholeProjection".into(),
                        docstring_md: "Camera projection, from image coordinates to view coordinates.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "resolution",
                        display_name: "Resolution",
                        component_type: "rerun.components.Resolution".into(),
                        docstring_md: "Pixel resolution (usually integers) of child image space. Width and height.\n\nExample:\n```text\n[1920.0, 1440.0]\n```\n\n`image_from_camera` project onto the space spanned by `(0,0)` and `resolution - 1`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "camera_xyz",
                        display_name: "Camera xyz",
                        component_type: "rerun.components.ViewCoordinates".into(),
                        docstring_md: "Sets the view coordinates for the camera.\n\nAll common values are available as constants on the [`components.ViewCoordinates`](https://rerun.io/docs/reference/types/components/view_coordinates) class.\n\nThe default is `ViewCoordinates::RDF`, i.e. X=Right, Y=Down, Z=Forward, and this is also the recommended setting.\nThis means that the camera frustum will point along the positive Z axis of the parent space,\nand the cameras \"up\" direction will be along the negative Y axis of the parent space.\n\nThe camera frustum will point whichever axis is set to `F` (or the opposite of `B`).\nWhen logging a depth image under this entity, this is the direction the point cloud will be projected.\nWith `RDF`, the default forward is +Z.\n\nThe frustum's \"up\" direction will be whichever axis is set to `U` (or the opposite of `D`).\nThis will match the negative Y direction of pixel space (all images are assumed to have xyz=RDF).\nWith `RDF`, the default is up is -Y.\n\nThe frustum's \"right\" direction will be whichever axis is set to `R` (or the opposite of `L`).\nThis will match the positive X direction of pixel space (all images are assumed to have xyz=RDF).\nWith `RDF`, the default right is +x.\n\nOther common formats are `RUB` (X=Right, Y=Up, Z=Back) and `FLU` (X=Forward, Y=Left, Z=Up).\n\nNOTE: setting this to something else than `RDF` (the default) will change the orientation of the camera frustum,\nand make the pinhole matrix not match up with the coordinate system of the pinhole entity.\n\nThe pinhole matrix (the `image_from_camera` argument) always project along the third (Z) axis,\nbut will be re-oriented to project along the forward axis of the `camera_xyz` argument.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "image_plane_distance",
                        display_name: "Image plane distance",
                        component_type: "rerun.components.ImagePlaneDistance".into(),
                        docstring_md: "The distance from the camera origin to the image plane when the projection is shown in a 3D viewer.\n\nThis is only used for visualization purposes, and does not affect the projection itself.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color of the camera wireframe.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "line_width",
                        display_name: "Line width",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Width of the camera wireframe lines.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Points2D"),
            ArchetypeReflection {
                display_name: "Points 2D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "positions",
                        display_name: "Positions",
                        component_type: "rerun.components.Position2D".into(),
                        docstring_md: "All the 2D positions at which the point cloud shows points.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the points, effectively turning them into circles.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the points.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the points.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `30.0`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the points.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "keypoint_ids",
                        display_name: "Keypoint ids",
                        component_type: "rerun.components.KeypointId".into(),
                        docstring_md: "Optional keypoint IDs for the points, identifying them within a class.\n\nIf keypoint IDs are passed in but no [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s were specified, the [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) will\ndefault to 0.\nThis is useful to identify points within a single classification (which is identified\nwith `class_id`).\nE.g. the classification might be 'Person' and the keypoints refer to joints on a\ndetected skeleton.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Points3D"),
            ArchetypeReflection {
                display_name: "Points 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "positions",
                        display_name: "Positions",
                        component_type: "rerun.components.Position3D".into(),
                        docstring_md: "All the 3D positions at which the point cloud shows points.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "radii",
                        display_name: "Radii",
                        component_type: "rerun.components.Radius".into(),
                        docstring_md: "Optional radii for the points, effectively turning them into circles.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional colors for the points.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "labels",
                        display_name: "Labels",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Optional text labels for the points.\n\nIf there's a single label present, it will be placed at the center of the entity.\nOtherwise, each instance will have its own label.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_labels",
                        display_name: "Show labels",
                        component_type: "rerun.components.ShowLabels".into(),
                        docstring_md: "Whether the text labels should be shown.\n\nIf not set, labels will automatically appear when there is exactly one label for this entity\nor the number of instances on this entity is under a certain threshold.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "class_ids",
                        display_name: "Class ids",
                        component_type: "rerun.components.ClassId".into(),
                        docstring_md: "Optional class Ids for the points.\n\nThe [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) provides colors and labels if not specified explicitly.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "keypoint_ids",
                        display_name: "Keypoint ids",
                        component_type: "rerun.components.KeypointId".into(),
                        docstring_md: "Optional keypoint IDs for the points, identifying them within a class.\n\nIf keypoint IDs are passed in but no [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id)s were specified, the [`components.ClassId`](https://rerun.io/docs/reference/types/components/class_id) will\ndefault to 0.\nThis is useful to identify points within a single classification (which is identified\nwith `class_id`).\nE.g. the classification might be 'Person' and the keypoints refer to joints on a\ndetected skeleton.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.RecordingInfo"),
            ArchetypeReflection {
                display_name: "Recording info",
                deprecation_summary: None,
                scope: None,
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "start_time",
                        display_name: "Start time",
                        component_type: "rerun.components.Timestamp".into(),
                        docstring_md: "When the recording started.\n\nShould be an absolute time, i.e. relative to Unix Epoch.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "name",
                        display_name: "Name",
                        component_type: "rerun.components.Name".into(),
                        docstring_md: "A user-chosen name for the recording.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Scalars"),
            ArchetypeReflection {
                display_name: "Scalars",
                deprecation_summary: None,
                scope: None,
                view_types: &["TimeSeriesView"],
                fields: vec![ArchetypeFieldReflection {
                    name: "scalars",
                    display_name: "Scalars",
                    component_type: "rerun.components.Scalar".into(),
                    docstring_md: "The scalar values to log.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.SegmentationImage"),
            ArchetypeReflection {
                display_name: "Segmentation image",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "buffer",
                        display_name: "Buffer",
                        component_type: "rerun.components.ImageBuffer".into(),
                        docstring_md: "The raw image data.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "format",
                        display_name: "Format",
                        component_type: "rerun.components.ImageFormat".into(),
                        docstring_md: "The format of the image.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "opacity",
                        display_name: "Opacity",
                        component_type: "rerun.components.Opacity".into(),
                        docstring_md: "Opacity of the image, useful for layering the segmentation image on top of another image.\n\nDefaults to 0.5 if there's any other images in the scene, otherwise 1.0.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `0.0`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.SeriesLines"),
            ArchetypeReflection {
                display_name: "Series lines",
                deprecation_summary: None,
                scope: None,
                view_types: &["TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color for the corresponding series.\n\nMay change over time, but can cause discontinuities in the line.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "widths",
                        display_name: "Widths",
                        component_type: "rerun.components.StrokeWidth".into(),
                        docstring_md: "Stroke width for the corresponding series.\n\nMay change over time, but can cause discontinuities in the line.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "names",
                        display_name: "Names",
                        component_type: "rerun.components.Name".into(),
                        docstring_md: "Display name of the series.\n\nUsed in the legend. Expected to be unchanging over time.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible_series",
                        display_name: "Visible series",
                        component_type: "rerun.components.SeriesVisible".into(),
                        docstring_md: "Which lines are visible.\n\nIf not set, all line series on this entity are visible.\nUnlike with the regular visibility property of the entire entity, any series that is hidden\nvia this property will still be visible in the legend.\n\nMay change over time, but can cause discontinuities in the line.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "aggregation_policy",
                        display_name: "Aggregation policy",
                        component_type: "rerun.components.AggregationPolicy".into(),
                        docstring_md: "Configures the zoom-dependent scalar aggregation.\n\nThis is done only if steps on the X axis go below a single pixel,\ni.e. a single pixel covers more than one tick worth of data. It can greatly improve performance\n(and readability) in such situations as it prevents overdraw.\n\nExpected to be unchanging over time.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.SeriesPoints"),
            ArchetypeReflection {
                display_name: "Series points",
                deprecation_summary: None,
                scope: None,
                view_types: &["TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "colors",
                        display_name: "Colors",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color for the corresponding series.\n\nMay change over time, but can cause discontinuities in the line.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "markers",
                        display_name: "Markers",
                        component_type: "rerun.components.MarkerShape".into(),
                        docstring_md: "What shape to use to represent the point\n\nMay change over time.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "names",
                        display_name: "Names",
                        component_type: "rerun.components.Name".into(),
                        docstring_md: "Display name of the series.\n\nUsed in the legend. Expected to be unchanging over time.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible_series",
                        display_name: "Visible series",
                        component_type: "rerun.components.SeriesVisible".into(),
                        docstring_md: "Which lines are visible.\n\nIf not set, all line series on this entity are visible.\nUnlike with the regular visibility property of the entire entity, any series that is hidden\nvia this property will still be visible in the legend.\n\nMay change over time.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "marker_sizes",
                        display_name: "Marker sizes",
                        component_type: "rerun.components.MarkerSize".into(),
                        docstring_md: "Sizes of the markers.\n\nMay change over time.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Tensor"),
            ArchetypeReflection {
                display_name: "Tensor",
                deprecation_summary: None,
                scope: None,
                view_types: &["TensorView", "BarChartView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "data",
                        display_name: "Data",
                        component_type: "rerun.components.TensorData".into(),
                        docstring_md: "The tensor data",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "value_range",
                        display_name: "Value range",
                        component_type: "rerun.components.ValueRange".into(),
                        docstring_md: "The expected range of values.\n\nThis is typically the expected range of valid values.\nEverything outside of the range is clamped to the range for the purpose of colormpaping.\nAny colormap applied for display, will map this range.\n\nIf not specified, the range will be automatically estimated from the data.\nNote that the Viewer may try to guess a wider range than the minimum/maximum of values\nin the contents of the tensor.\nE.g. if all values are positive, some bigger than 1.0 and all smaller than 255.0,\nthe Viewer will guess that the data likely came from an 8bit image, thus assuming a range of 0-255.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.TextDocument"),
            ArchetypeReflection {
                display_name: "Text document",
                deprecation_summary: None,
                scope: None,
                view_types: &["TextDocumentView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "text",
                        display_name: "Text",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "Contents of the text document.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "media_type",
                        display_name: "Media type",
                        component_type: "rerun.components.MediaType".into(),
                        docstring_md: "The Media Type of the text.\n\nFor instance:\n* `text/plain`\n* `text/markdown`\n\nIf omitted, `text/plain` is assumed.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.TextLog"),
            ArchetypeReflection {
                display_name: "Text log",
                deprecation_summary: None,
                scope: None,
                view_types: &["TextLogView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "text",
                        display_name: "Text",
                        component_type: "rerun.components.Text".into(),
                        docstring_md: "The body of the message.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "level",
                        display_name: "Level",
                        component_type: "rerun.components.TextLogLevel".into(),
                        docstring_md: "The verbosity level of the message.\n\nThis can be used to filter the log messages in the Rerun Viewer.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Optional color to use for the log line in the Rerun Viewer.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Transform3D"),
            ArchetypeReflection {
                display_name: "Transform 3D",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "translation",
                        display_name: "Translation",
                        component_type: "rerun.components.Translation3D".into(),
                        docstring_md: "Translation vector.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "rotation_axis_angle",
                        display_name: "Rotation axis angle",
                        component_type: "rerun.components.RotationAxisAngle".into(),
                        docstring_md: "Rotation via axis + angle.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "quaternion",
                        display_name: "Quaternion",
                        component_type: "rerun.components.RotationQuat".into(),
                        docstring_md: "Rotation via quaternion.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "scale",
                        display_name: "Scale",
                        component_type: "rerun.components.Scale3D".into(),
                        docstring_md: "Scaling factor.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "mat3x3",
                        display_name: "Mat 3x 3",
                        component_type: "rerun.components.TransformMat3x3".into(),
                        docstring_md: "3x3 transformation matrix.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "relation",
                        display_name: "Relation",
                        component_type: "rerun.components.TransformRelation".into(),
                        docstring_md: "Specifies the relation this transform establishes between this entity and its parent.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "child_frame",
                        display_name: "Child frame",
                        component_type: "rerun.components.TransformFrameId".into(),
                        docstring_md: "The child frame this transform transforms from.\n\nThe entity at which the transform relationship of any given child frame is specified mustn't change over time.\nE.g. if you specified the child frame `\"robot_arm\"` on an entity named `\"my_transforms\"`, you may not log transforms\nwith the child frame `\"robot_arm\"` on any other entity than `\"my_transforms\"`.\nAn exception to this rule is static time - you may first mention a child frame on one entity statically and later on\nanother one temporally.\n\n⚠ This currently also affects the child frame of [`archetypes.Pinhole`](https://rerun.io/docs/reference/types/archetypes/pinhole).\n⚠ This currently is also used as the frame id of [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).\n\nIf not specified, this is set to the implicit transform frame of the current entity path.\nThis means that if a [`archetypes.Transform3D`](https://rerun.io/docs/reference/types/archetypes/transform3d) is set on an entity called `/my/entity/path` then this will default to `tf#/my/entity/path`.\n\nTo set the frame an entity is part of see [`archetypes.CoordinateFrame`](https://rerun.io/docs/reference/types/archetypes/coordinate_frame).\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "parent_frame",
                        display_name: "Parent frame",
                        component_type: "rerun.components.TransformFrameId".into(),
                        docstring_md: "The parent frame this transform transforms into.\n\n⚠ This currently also affects the parent frame of [`archetypes.Pinhole`](https://rerun.io/docs/reference/types/archetypes/pinhole).\n\nIf not specified, this is set to the implicit transform frame of the current entity path's parent.\nThis means that if a [`archetypes.Transform3D`](https://rerun.io/docs/reference/types/archetypes/transform3d) is set on an entity called `/my/entity/path` then this will default to `tf#/my/entity`.\n\nTo set the frame an entity is part of see [`archetypes.CoordinateFrame`](https://rerun.io/docs/reference/types/archetypes/coordinate_frame).\n\n⚠\u{fe0f} **This type is _unstable_ and may change significantly in a way that the data won't be backwards compatible.**",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "axis_length",
                        display_name: "Axis length",
                        component_type: "rerun.components.AxisLength".into(),
                        docstring_md: "Visual length of the 3 axes.\n\nThe length is interpreted in the local coordinate system of the transform.\nIf the transform is scaled, the axes will be scaled accordingly.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.VideoFrameReference"),
            ArchetypeReflection {
                display_name: "Video frame reference",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "timestamp",
                        display_name: "Timestamp",
                        component_type: "rerun.components.VideoTimestamp".into(),
                        docstring_md: "References the closest video frame to this timestamp.\n\nNote that this uses the closest video frame instead of the latest at this timestamp\nin order to be more forgiving of rounding errors for inprecise timestamp types.\n\nTimestamps are relative to the start of the video, i.e. a timestamp of 0 always corresponds to the first frame.\nThis is oftentimes equivalent to presentation timestamps (known as PTS), but in the presence of B-frames\n(bidirectionally predicted frames) there may be an offset on the first presentation timestamp in the video.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "video_reference",
                        display_name: "Video reference",
                        component_type: "rerun.components.EntityPath".into(),
                        docstring_md: "Optional reference to an entity with a [`archetypes.AssetVideo`](https://rerun.io/docs/reference/types/archetypes/asset_video).\n\nIf none is specified, the video is assumed to be at the same entity.\nNote that blueprint overrides on the referenced video will be ignored regardless,\nas this is always interpreted as a reference to the data store.\n\nFor a series of video frame references, it is recommended to specify this path only once\nat the beginning of the series and then rely on latest-at query semantics to\nkeep the video reference active.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "opacity",
                        display_name: "Opacity",
                        component_type: "rerun.components.Opacity".into(),
                        docstring_md: "Opacity of the video, useful for layering several media.\n\nDefaults to 1.0 (fully opaque).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `-15.0`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.VideoStream"),
            ArchetypeReflection {
                display_name: "Video stream",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "codec",
                        display_name: "Codec",
                        component_type: "rerun.components.VideoCodec".into(),
                        docstring_md: "The codec used to encode the video chunks.\n\nThis property is expected to be constant over time and is ideally logged statically once per stream.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "sample",
                        display_name: "Sample",
                        component_type: "rerun.components.VideoSample".into(),
                        docstring_md: "Video sample data (also known as \"video chunk\").\n\nThe current timestamp is used as presentation timestamp (PTS) for all data in this sample.\nThere is currently no way to log differing decoding timestamps, meaning\nthat there is no support for B-frames.\nSee <https://github.com/rerun-io/rerun/issues/10090> for more details.\n\nRerun chunks containing frames (i.e. bundles of sample data) may arrive out of order,\nbut may cause the video playback in the Viewer to reset.\nIt is recommended to have all chunks for a video stream to be ordered temporally order.\n\nLogging separate videos on the same entity is allowed iff they share the exact same\ncodec parameters & resolution.\n\nThe samples are expected to be encoded using the `codec` field.\nEach video sample must contain enough data for exactly one video frame\n(this restriction may be relaxed in the future for some codecs).\n\nUnless your stream consists entirely of key-frames (in which case you should consider [`archetypes.EncodedImage`](https://rerun.io/docs/reference/types/archetypes/encoded_image))\nnever log this component as static data as this means that you loose all information of\nprevious samples which may be required to decode an image.\n\nSee [`components.VideoCodec`](https://rerun.io/docs/reference/types/components/video_codec) for codec specific requirements.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "opacity",
                        display_name: "Opacity",
                        component_type: "rerun.components.Opacity".into(),
                        docstring_md: "Opacity of the video stream, useful for layering several media.\n\nDefaults to 1.0 (fully opaque).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "draw_order",
                        display_name: "Draw order",
                        component_type: "rerun.components.DrawOrder".into(),
                        docstring_md: "An optional floating point value that specifies the 2D drawing order.\n\nObjects with higher values are drawn on top of those with lower values.\nDefaults to `-15.0`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.ViewCoordinates"),
            ArchetypeReflection {
                display_name: "View coordinates",
                deprecation_summary: None,
                scope: None,
                view_types: &["Spatial3DView"],
                fields: vec![ArchetypeFieldReflection {
                    name: "xyz",
                    display_name: "Xyz",
                    component_type: "rerun.components.ViewCoordinates".into(),
                    docstring_md: "The directions of the [x, y, z] axes.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.Background"),
            ArchetypeReflection {
                display_name: "Background",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "kind",
                        display_name: "Kind",
                        component_type: "rerun.blueprint.components.BackgroundKind".into(),
                        docstring_md: "The type of the background.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color used for the solid background type.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ContainerBlueprint"),
            ArchetypeReflection {
                display_name: "Container blueprint",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "container_kind",
                        display_name: "Container kind",
                        component_type: "rerun.blueprint.components.ContainerKind".into(),
                        docstring_md: "The class of the view.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "display_name",
                        display_name: "Display name",
                        component_type: "rerun.components.Name".into(),
                        docstring_md: "The name of the container.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "contents",
                        display_name: "Contents",
                        component_type: "rerun.blueprint.components.IncludedContent".into(),
                        docstring_md: "`ContainerId`s or `ViewId`s that are children of this container.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "col_shares",
                        display_name: "Col shares",
                        component_type: "rerun.blueprint.components.ColumnShare".into(),
                        docstring_md: "The layout shares of each column in the container.\n\nFor components.ContainerKind containers, the length of this list should always match the number of contents.\n\nIgnored for components.ContainerKind containers.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "row_shares",
                        display_name: "Row shares",
                        component_type: "rerun.blueprint.components.RowShare".into(),
                        docstring_md: "The layout shares of each row of the container.\n\nFor components.ContainerKind containers, the length of this list should always match the number of contents.\n\nIgnored for components.ContainerKind containers.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "active_tab",
                        display_name: "Active tab",
                        component_type: "rerun.blueprint.components.ActiveTab".into(),
                        docstring_md: "Which tab is active.\n\nOnly applies to `Tabs` containers.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible",
                        display_name: "Visible",
                        component_type: "rerun.components.Visible".into(),
                        docstring_md: "Whether this container is visible.\n\nDefaults to true if not specified.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "grid_columns",
                        display_name: "Grid columns",
                        component_type: "rerun.blueprint.components.GridColumns".into(),
                        docstring_md: "How many columns this grid should have.\n\nIf unset, the grid layout will be auto.\n\nIgnored for components.ContainerKind/components.ContainerKind containers.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.DataframeQuery"),
            ArchetypeReflection {
                display_name: "Dataframe query",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "timeline",
                        display_name: "Timeline",
                        component_type: "rerun.blueprint.components.TimelineName".into(),
                        docstring_md: "The timeline for this query.\n\nIf unset, the timeline currently active on the time panel is used.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "filter_by_range",
                        display_name: "Filter by range",
                        component_type: "rerun.blueprint.components.FilterByRange".into(),
                        docstring_md: "If provided, only rows whose timestamp is within this range will be shown.\n\nNote: will be unset as soon as `timeline` is changed.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "filter_is_not_null",
                        display_name: "Filter is not null",
                        component_type: "rerun.blueprint.components.FilterIsNotNull".into(),
                        docstring_md: "If provided, only show rows which contains a logged event for the specified component.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "apply_latest_at",
                        display_name: "Apply latest at",
                        component_type: "rerun.blueprint.components.ApplyLatestAt".into(),
                        docstring_md: "Should empty cells be filled with latest-at queries?",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "select",
                        display_name: "Select",
                        component_type: "rerun.blueprint.components.SelectedColumns".into(),
                        docstring_md: "Selected columns. If unset, all columns are selected.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.EntityBehavior"),
            ArchetypeReflection {
                display_name: "Entity behavior",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "interactive",
                        display_name: "Interactive",
                        component_type: "rerun.components.Interactive".into(),
                        docstring_md: "Whether the entity can be interacted with.\n\nThis property is propagated down the entity hierarchy until another child entity\nsets `interactive` to a different value at which point propagation continues with that value instead.\n\nDefaults to parent's `interactive` value or true if there is no parent.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible",
                        display_name: "Visible",
                        component_type: "rerun.components.Visible".into(),
                        docstring_md: "Whether the entity is visible.\n\nThis property is propagated down the entity hierarchy until another child entity\nsets `visible` to a different value at which point propagation continues with that value instead.\n\nDefaults to parent's `visible` value or true if there is no parent.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.EyeControls3D"),
            ArchetypeReflection {
                display_name: "Eye controls 3D",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "kind",
                        display_name: "Kind",
                        component_type: "rerun.blueprint.components.Eye3DKind".into(),
                        docstring_md: "The kind of the eye for the spatial 3D view.\n\nThis controls how the eye movement behaves when the user interact with the view.\nDefaults to orbital.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "position",
                        display_name: "Position",
                        component_type: "rerun.components.Position3D".into(),
                        docstring_md: "The cameras current position.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "look_target",
                        display_name: "Look target",
                        component_type: "rerun.components.Position3D".into(),
                        docstring_md: "The position the camera is currently looking at.\n\nIf this is an orbital camera, this also is the center it orbits around.\n\nBy default this is the center of the scene bounds.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "eye_up",
                        display_name: "Eye up",
                        component_type: "rerun.components.Vector3D".into(),
                        docstring_md: "The up-axis of the eye itself, in world-space.\n\nInitially, the up-axis of the eye will be the same as the up-axis of the scene (or +Z if\nthe scene has no up axis defined).",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "speed",
                        display_name: "Speed",
                        component_type: "rerun.components.LinearSpeed".into(),
                        docstring_md: "Translation speed of the eye in the view (when using WASDQE keys to move in the 3D scene).\n\nThe default depends on the control kind.\nFor orbit cameras it is derived from the distance to the orbit center.\nFor first person cameras it is derived from the scene size.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "tracking_entity",
                        display_name: "Tracking entity",
                        component_type: "rerun.components.EntityPath".into(),
                        docstring_md: "Currently tracked entity.\n\nIf this is a camera, it takes over the camera pose, otherwise follows the entity.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "spin_speed",
                        display_name: "Spin speed",
                        component_type: "rerun.blueprint.components.AngularSpeed".into(),
                        docstring_md: "What speed, if any, the camera should spin around the eye-up axis.\n\nDefaults to zero, meaning no spinning.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ForceCenter"),
            ArchetypeReflection {
                display_name: "Force center",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "enabled",
                        display_name: "Enabled",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the center force is enabled.\n\nThe center force tries to move the center of mass of the graph towards the origin.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "strength",
                        display_name: "Strength",
                        component_type: "rerun.blueprint.components.ForceStrength".into(),
                        docstring_md: "The strength of the force.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ForceCollisionRadius"),
            ArchetypeReflection {
                display_name: "Force collision radius",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "enabled",
                        display_name: "Enabled",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the collision force is enabled.\n\nThe collision force resolves collisions between nodes based on the bounding circle defined by their radius.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "strength",
                        display_name: "Strength",
                        component_type: "rerun.blueprint.components.ForceStrength".into(),
                        docstring_md: "The strength of the force.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "iterations",
                        display_name: "Iterations",
                        component_type: "rerun.blueprint.components.ForceIterations".into(),
                        docstring_md: "Specifies how often this force should be applied per iteration.\n\nIncreasing this parameter can lead to better results at the cost of longer computation time.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ForceLink"),
            ArchetypeReflection {
                display_name: "Force link",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "enabled",
                        display_name: "Enabled",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the link force is enabled.\n\nThe link force aims to achieve a target distance between two nodes that are connected by one ore more edges.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "distance",
                        display_name: "Distance",
                        component_type: "rerun.blueprint.components.ForceDistance".into(),
                        docstring_md: "The target distance between two nodes.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "iterations",
                        display_name: "Iterations",
                        component_type: "rerun.blueprint.components.ForceIterations".into(),
                        docstring_md: "Specifies how often this force should be applied per iteration.\n\nIncreasing this parameter can lead to better results at the cost of longer computation time.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ForceManyBody"),
            ArchetypeReflection {
                display_name: "Force many body",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "enabled",
                        display_name: "Enabled",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the many body force is enabled.\n\nThe many body force is applied on each pair of nodes in a way that ressembles an electrical charge. If the\nstrength is smaller than 0, it pushes nodes apart; if it is larger than 0, it pulls them together.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "strength",
                        display_name: "Strength",
                        component_type: "rerun.blueprint.components.ForceStrength".into(),
                        docstring_md: "The strength of the force.\n\nIf `strength` is smaller than 0, it pushes nodes apart, if it is larger than 0 it pulls them together.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ForcePosition"),
            ArchetypeReflection {
                display_name: "Force position",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "enabled",
                        display_name: "Enabled",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the position force is enabled.\n\nThe position force pulls nodes towards a specific position, similar to gravity.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "strength",
                        display_name: "Strength",
                        component_type: "rerun.blueprint.components.ForceStrength".into(),
                        docstring_md: "The strength of the force.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "position",
                        display_name: "Position",
                        component_type: "rerun.components.Position2D".into(),
                        docstring_md: "The position where the nodes should be pulled towards.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.GraphBackground"),
            ArchetypeReflection {
                display_name: "Graph background",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "color",
                    display_name: "Color",
                    component_type: "rerun.components.Color".into(),
                    docstring_md: "Color used for the background.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.LineGrid3D"),
            ArchetypeReflection {
                display_name: "Line grid 3D",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "visible",
                        display_name: "Visible",
                        component_type: "rerun.components.Visible".into(),
                        docstring_md: "Whether the grid is visible.\n\nDefaults to true.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "spacing",
                        display_name: "Spacing",
                        component_type: "rerun.blueprint.components.GridSpacing".into(),
                        docstring_md: "Space between grid lines spacing of one line to the next in scene units.\n\nAs you zoom out, successively only every tenth line is shown.\nThis controls the closest zoom level.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "plane",
                        display_name: "Plane",
                        component_type: "rerun.components.Plane3D".into(),
                        docstring_md: "In what plane the grid is drawn.\n\nDefaults to whatever plane is determined as the plane at zero units up/down as defined by [`components.ViewCoordinates`](https://rerun.io/docs/reference/types/components/view_coordinates) if present.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "stroke_width",
                        display_name: "Stroke width",
                        component_type: "rerun.components.StrokeWidth".into(),
                        docstring_md: "How thick the lines should be in ui units.\n\nDefault is 1.0 ui unit.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color used for the grid.\n\nTransparency via alpha channel is supported.\nDefaults to a slightly transparent light gray.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.MapBackground"),
            ArchetypeReflection {
                display_name: "Map background",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "provider",
                    display_name: "Provider",
                    component_type: "rerun.blueprint.components.MapProvider".into(),
                    docstring_md: "Map provider and style to use.\n\n**Note**: Requires a Mapbox API key in the `RERUN_MAPBOX_ACCESS_TOKEN` environment variable.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.MapZoom"),
            ArchetypeReflection {
                display_name: "Map zoom",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "zoom",
                    display_name: "Zoom",
                    component_type: "rerun.blueprint.components.ZoomLevel".into(),
                    docstring_md: "Zoom level for the map.\n\nZoom level follow the [`OpenStreetMap` definition](https://wiki.openstreetmap.org/wiki/Zoom_levels).",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.NearClipPlane"),
            ArchetypeReflection {
                display_name: "Near clip plane",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "near_clip_plane",
                    display_name: "Near clip plane",
                    component_type: "rerun.blueprint.components.NearClipPlane".into(),
                    docstring_md: "Controls the distance to the near clip plane in 3D scene units.\n\nContent closer than this distance will not be visible.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.PanelBlueprint"),
            ArchetypeReflection {
                display_name: "Panel blueprint",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "state",
                    display_name: "State",
                    component_type: "rerun.blueprint.components.PanelState".into(),
                    docstring_md: "Current state of the panel.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.PlotBackground"),
            ArchetypeReflection {
                display_name: "Plot background",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "color",
                        display_name: "Color",
                        component_type: "rerun.components.Color".into(),
                        docstring_md: "Color used for the background.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_grid",
                        display_name: "Show grid",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Should the grid be drawn?",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.PlotLegend"),
            ArchetypeReflection {
                display_name: "Plot legend",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "corner",
                        display_name: "Corner",
                        component_type: "rerun.blueprint.components.Corner2D".into(),
                        docstring_md: "To what corner the legend is aligned.\n\nDefaults to the right bottom corner.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible",
                        display_name: "Visible",
                        component_type: "rerun.components.Visible".into(),
                        docstring_md: "Whether the legend is shown at all.\n\nTrue by default.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ScalarAxis"),
            ArchetypeReflection {
                display_name: "Scalar axis",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "range",
                        display_name: "Range",
                        component_type: "rerun.components.Range1D".into(),
                        docstring_md: "The range of the axis.\n\nIf unset, the range well be automatically determined based on the queried data.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "zoom_lock",
                        display_name: "Zoom lock",
                        component_type: "rerun.blueprint.components.LockRangeDuringZoom".into(),
                        docstring_md: "If enabled, the Y axis range will remain locked to the specified range when zooming.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.SpatialInformation"),
            ArchetypeReflection {
                display_name: "Spatial information",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "show_axes",
                        display_name: "Show axes",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether axes should be shown at the origin.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "show_bounding_box",
                        display_name: "Show bounding box",
                        component_type: "rerun.blueprint.components.Enabled".into(),
                        docstring_md: "Whether the bounding box should be shown.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TensorScalarMapping"),
            ArchetypeReflection {
                display_name: "Tensor scalar mapping",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "mag_filter",
                        display_name: "Mag filter",
                        component_type: "rerun.components.MagnificationFilter".into(),
                        docstring_md: "Filter used when zooming in on the tensor.\n\nNote that the filter is applied to the scalar values *before* they are mapped to color.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "colormap",
                        display_name: "Colormap",
                        component_type: "rerun.components.Colormap".into(),
                        docstring_md: "How scalar values map to colors.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "gamma",
                        display_name: "Gamma",
                        component_type: "rerun.components.GammaCorrection".into(),
                        docstring_md: "Gamma exponent applied to normalized values before mapping to color.\n\nRaises the normalized values to the power of this value before mapping to color.\nActs like an inverse brightness. Defaults to 1.0.\n\nThe final value for display is set as:\n`colormap( ((value - data_display_range.min) / (data_display_range.max - data_display_range.min)) ** gamma )`",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TensorSliceSelection"),
            ArchetypeReflection {
                display_name: "Tensor slice selection",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "width",
                        display_name: "Width",
                        component_type: "rerun.components.TensorWidthDimension".into(),
                        docstring_md: "Which dimension to map to width.\n\nIf not specified, the height will be determined automatically based on the name and index of the dimension.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "height",
                        display_name: "Height",
                        component_type: "rerun.components.TensorHeightDimension".into(),
                        docstring_md: "Which dimension to map to height.\n\nIf not specified, the height will be determined automatically based on the name and index of the dimension.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "indices",
                        display_name: "Indices",
                        component_type: "rerun.components.TensorDimensionIndexSelection".into(),
                        docstring_md: "Selected indices for all other dimensions.\n\nIf any of the here listed dimensions is equal to `width` or `height`, it will be ignored.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "slider",
                        display_name: "Slider",
                        component_type: "rerun.blueprint.components.TensorDimensionIndexSlider"
                            .into(),
                        docstring_md: "Any dimension listed here will have a slider for the index.\n\nEdits to the sliders will directly manipulate dimensions on the `indices` list.\nIf any of the here listed dimensions is equal to `width` or `height`, it will be ignored.\nIf not specified, adds slides for any dimension in `indices`.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TensorViewFit"),
            ArchetypeReflection {
                display_name: "Tensor view fit",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "scaling",
                    display_name: "Scaling",
                    component_type: "rerun.blueprint.components.ViewFit".into(),
                    docstring_md: "How the image is scaled to fit the view.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TimeAxis"),
            ArchetypeReflection {
                display_name: "Time axis",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "link",
                        display_name: "Link",
                        component_type: "rerun.blueprint.components.LinkAxis".into(),
                        docstring_md: "How should the horizontal/X/time axis be linked across multiple plots?\n\nLinking with global will ignore `view_range`.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "view_range",
                        display_name: "View range",
                        component_type: "rerun.blueprint.components.TimeRange".into(),
                        docstring_md: "The view range of the horizontal/X/time axis.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "zoom_lock",
                        display_name: "Zoom lock",
                        component_type: "rerun.blueprint.components.LockRangeDuringZoom".into(),
                        docstring_md: "If enabled, the X axis range will remain locked to the specified range when zooming.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TimePanelBlueprint"),
            ArchetypeReflection {
                display_name: "Time panel blueprint",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "state",
                        display_name: "State",
                        component_type: "rerun.blueprint.components.PanelState".into(),
                        docstring_md: "Current state of the panel.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "timeline",
                        display_name: "Timeline",
                        component_type: "rerun.blueprint.components.TimelineName".into(),
                        docstring_md: "What timeline the panel is on.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "playback_speed",
                        display_name: "Playback speed",
                        component_type: "rerun.blueprint.components.PlaybackSpeed".into(),
                        docstring_md: "A time playback speed multiplier.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "fps",
                        display_name: "Fps",
                        component_type: "rerun.blueprint.components.Fps".into(),
                        docstring_md: "Frames per second. Only applicable for sequence timelines.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "play_state",
                        display_name: "Play state",
                        component_type: "rerun.blueprint.components.PlayState".into(),
                        docstring_md: "If the time is currently paused, playing, or following.\n\nDefaults to either playing or following, depending on the data source.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "loop_mode",
                        display_name: "Loop mode",
                        component_type: "rerun.blueprint.components.LoopMode".into(),
                        docstring_md: "How the time should loop. A selection loop only works if there is also a `time_selection` passed.\n\nDefaults to off.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "time_selection",
                        display_name: "Time selection",
                        component_type: "rerun.blueprint.components.AbsoluteTimeRange".into(),
                        docstring_md: "Selects a range of time on the time panel.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ViewBlueprint"),
            ArchetypeReflection {
                display_name: "View blueprint",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "class_identifier",
                        display_name: "Class identifier",
                        component_type: "rerun.blueprint.components.ViewClass".into(),
                        docstring_md: "The class of the view.",
                        is_required: true,
                    },
                    ArchetypeFieldReflection {
                        name: "display_name",
                        display_name: "Display name",
                        component_type: "rerun.components.Name".into(),
                        docstring_md: "The name of the view.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "space_origin",
                        display_name: "Space origin",
                        component_type: "rerun.blueprint.components.ViewOrigin".into(),
                        docstring_md: "The \"anchor point\" of this view.\n\nIn other words, the coordinate frame at this entity becomes the reference frame of the view.\n\nDefaults to the root path '/' if not specified.\n\nThe transform at this path forms the reference point for all scene->world transforms in this view.\nI.e. the position of this entity path in space forms the origin of the coordinate system in this view.\nFurthermore, this is the primary indicator for heuristics on what entities we show in this view.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "visible",
                        display_name: "Visible",
                        component_type: "rerun.components.Visible".into(),
                        docstring_md: "Whether this view is visible.\n\nDefaults to true if not specified.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ViewContents"),
            ArchetypeReflection {
                display_name: "View contents",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "query",
                    display_name: "Query",
                    component_type: "rerun.blueprint.components.QueryExpression".into(),
                    docstring_md: "The `QueryExpression` that populates the contents for the view.\n\nThey determine which entities are part of the view.",
                    is_required: false,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ViewportBlueprint"),
            ArchetypeReflection {
                display_name: "Viewport blueprint",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection {
                        name: "root_container",
                        display_name: "Root container",
                        component_type: "rerun.blueprint.components.RootContainer".into(),
                        docstring_md: "The layout of the views",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "maximized",
                        display_name: "Maximized",
                        component_type: "rerun.blueprint.components.ViewMaximized".into(),
                        docstring_md: "Show one tab as maximized?",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "auto_layout",
                        display_name: "Auto layout",
                        component_type: "rerun.blueprint.components.AutoLayout".into(),
                        docstring_md: "Whether the viewport layout is determined automatically.\n\nIf `true`, the container layout will be reset whenever a new view is added or removed.\nThis defaults to `false` and is automatically set to `false` when there is user determined layout.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "auto_views",
                        display_name: "Auto views",
                        component_type: "rerun.blueprint.components.AutoViews".into(),
                        docstring_md: "Whether or not views should be created automatically.\n\nIf `true`, the viewer will only add views that it hasn't considered previously (as identified by `past_viewer_recommendations`)\nand which aren't deemed redundant to existing views.\nThis defaults to `false` and is automatically set to `false` when the user adds views manually in the viewer.",
                        is_required: false,
                    },
                    ArchetypeFieldReflection {
                        name: "past_viewer_recommendations",
                        display_name: "Past viewer recommendations",
                        component_type: "rerun.blueprint.components.ViewerRecommendationHash"
                            .into(),
                        docstring_md: "Hashes of all recommended views the viewer has already added and that should not be added again.\n\nThis is an internal field and should not be set usually.\nIf you want the viewer from stopping to add views, you should set `auto_views` to `false`.\n\nThe viewer uses this to determine whether it should keep adding views.",
                        is_required: false,
                    },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.VisibleTimeRanges"),
            ArchetypeReflection {
                display_name: "Visible time ranges",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "ranges",
                    display_name: "Ranges",
                    component_type: "rerun.blueprint.components.VisibleTimeRange".into(),
                    docstring_md: "The time ranges to show for each timeline unless specified otherwise on a per-entity basis.\n\nIf a timeline is specified more than once, the first entry will be used.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.VisualBounds2D"),
            ArchetypeReflection {
                display_name: "Visual bounds 2D",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "range",
                    display_name: "Range",
                    component_type: "rerun.blueprint.components.VisualBounds2D".into(),
                    docstring_md: "Controls the visible range of a 2D view.\n\nUse this to control pan & zoom of the view.",
                    is_required: true,
                }],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.VisualizerOverrides"),
            ArchetypeReflection {
                display_name: "Visualizer overrides",
                deprecation_summary: None,
                scope: Some("blueprint"),
                view_types: &[],
                fields: vec![ArchetypeFieldReflection {
                    name: "ranges",
                    display_name: "Ranges",
                    component_type: "rerun.blueprint.components.VisualizerOverride".into(),
                    docstring_md: "Names of the visualizers that should be active.",
                    is_required: true,
                }],
            },
        ),
    ];
    ArchetypeReflectionMap::from_iter(array)
}