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
// DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/rust/reflection.rs

#![allow(clippy::too_many_lines)]
#![allow(clippy::wildcard_imports)]
#![allow(unused_imports)]
use re_types::blueprint::components::*;
use re_types::components::*;
use re_types_blueprint::blueprint::components::*;
use re_types_core::components::*;
use re_types_core::{
    reflection::{
        ArchetypeFieldReflection, ArchetypeReflection, ArchetypeReflectionMap, ComponentReflection,
        ComponentReflectionMap, Reflection,
    },
    ArchetypeName, ComponentName, Loggable, LoggableBatch as _, SerializationError,
};

/// 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 = [
        (
            <ActiveTab as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The active tab in a tabbed container.",
                custom_placeholder: Some(ActiveTab::default().to_arrow()?),
                datatype: ActiveTab::arrow_datatype(),
            },
        ),
        (
            <ApplyLatestAt as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Whether empty cells in a dataframe should be filled with a latest-at query.",
                custom_placeholder: Some(ApplyLatestAt::default().to_arrow()?),
                datatype: ApplyLatestAt::arrow_datatype(),
            },
        ),
        (
            <AutoLayout as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Whether the viewport layout is determined automatically.",
                custom_placeholder: Some(AutoLayout::default().to_arrow()?),
                datatype: AutoLayout::arrow_datatype(),
            },
        ),
        (
            <AutoSpaceViews as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Whether or not space views should be created automatically.",
                custom_placeholder: Some(AutoSpaceViews::default().to_arrow()?),
                datatype: AutoSpaceViews::arrow_datatype(),
            },
        ),
        (
            <BackgroundKind as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The type of the background in a view.",
                custom_placeholder: Some(BackgroundKind::default().to_arrow()?),
                datatype: BackgroundKind::arrow_datatype(),
            },
        ),
        (
            <ColumnShare as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The layout share of a column in the container.",
                custom_placeholder: Some(ColumnShare::default().to_arrow()?),
                datatype: ColumnShare::arrow_datatype(),
            },
        ),
        (
            <ComponentColumnSelector as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Describe a component column to be selected in the dataframe view.",
                custom_placeholder: Some(ComponentColumnSelector::default().to_arrow()?),
                datatype: ComponentColumnSelector::arrow_datatype(),
            },
        ),
        (
            <ContainerKind as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The kind of a blueprint container (tabs, grid, …).",
                custom_placeholder: Some(ContainerKind::default().to_arrow()?),
                datatype: ContainerKind::arrow_datatype(),
            },
        ),
        (
            <Corner2D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "One of four 2D corners, typically used to align objects.",
                custom_placeholder: Some(Corner2D::default().to_arrow()?),
                datatype: Corner2D::arrow_datatype(),
            },
        ),
        (
            <FilterByRange as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Configuration for a filter-by-range feature of the dataframe view.",
                custom_placeholder: Some(FilterByRange::default().to_arrow()?),
                datatype: FilterByRange::arrow_datatype(),
            },
        ),
        (
            <FilterIsNotNull as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Configuration for the filter is not null feature of the dataframe view.",
                custom_placeholder: Some(FilterIsNotNull::default().to_arrow()?),
                datatype: FilterIsNotNull::arrow_datatype(),
            },
        ),
        (
            <GridColumns as Loggable>::name(),
            ComponentReflection {
                docstring_md: "How many columns a grid container should have.",
                custom_placeholder: Some(GridColumns::default().to_arrow()?),
                datatype: GridColumns::arrow_datatype(),
            },
        ),
        (
            <IncludedContent as Loggable>::name(),
            ComponentReflection {
                docstring_md: "All the contents in the container.",
                custom_placeholder: Some(IncludedContent::default().to_arrow()?),
                datatype: IncludedContent::arrow_datatype(),
            },
        ),
        (
            <IncludedSpaceView as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The unique id of a space view, used to refer to views in containers.",
                custom_placeholder: Some(IncludedSpaceView::default().to_arrow()?),
                datatype: IncludedSpaceView::arrow_datatype(),
            },
        ),
        (
            <Interactive as Loggable>::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.",
                custom_placeholder: Some(Interactive::default().to_arrow()?),
                datatype: Interactive::arrow_datatype(),
            },
        ),
        (
            <LockRangeDuringZoom as Loggable>::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.",
                custom_placeholder: Some(LockRangeDuringZoom::default().to_arrow()?),
                datatype: LockRangeDuringZoom::arrow_datatype(),
            },
        ),
        (
            <MapProvider as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Name of the map provider to be used in Map views.",
                custom_placeholder: Some(MapProvider::default().to_arrow()?),
                datatype: MapProvider::arrow_datatype(),
            },
        ),
        (
            <PanelState as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Tri-state for panel controls.",
                custom_placeholder: Some(PanelState::default().to_arrow()?),
                datatype: PanelState::arrow_datatype(),
            },
        ),
        (
            <QueryExpression as Loggable>::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 `SpaceViewContents`.\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.",
                custom_placeholder: Some(QueryExpression::default().to_arrow()?),
                datatype: QueryExpression::arrow_datatype(),
            },
        ),
        (
            <RootContainer as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The container that sits at the root of a viewport.",
                custom_placeholder: Some(RootContainer::default().to_arrow()?),
                datatype: RootContainer::arrow_datatype(),
            },
        ),
        (
            <RowShare as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The layout share of a row in the container.",
                custom_placeholder: Some(RowShare::default().to_arrow()?),
                datatype: RowShare::arrow_datatype(),
            },
        ),
        (
            <SelectedColumns as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Describe a component column to be selected in the dataframe view.",
                custom_placeholder: Some(SelectedColumns::default().to_arrow()?),
                datatype: SelectedColumns::arrow_datatype(),
            },
        ),
        (
            <SpaceViewClass as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The class identifier of view, e.g. `\"2D\"`, `\"TextLog\"`, ….",
                custom_placeholder: Some(SpaceViewClass::default().to_arrow()?),
                datatype: SpaceViewClass::arrow_datatype(),
            },
        ),
        (
            <SpaceViewMaximized as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Whether a space view is maximized.",
                custom_placeholder: Some(SpaceViewMaximized::default().to_arrow()?),
                datatype: SpaceViewMaximized::arrow_datatype(),
            },
        ),
        (
            <SpaceViewOrigin as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The origin of a `SpaceView`.",
                custom_placeholder: Some(SpaceViewOrigin::default().to_arrow()?),
                datatype: SpaceViewOrigin::arrow_datatype(),
            },
        ),
        (
            <TensorDimensionIndexSlider as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Show a slider for the index of some dimension of a slider.",
                custom_placeholder: Some(
                    TensorDimensionIndexSlider::default().to_arrow()?,
                ),
                datatype: TensorDimensionIndexSlider::arrow_datatype(),
            },
        ),
        (
            <TimelineName as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A timeline identified by its name.",
                custom_placeholder: Some(TimelineName::default().to_arrow()?),
                datatype: TimelineName::arrow_datatype(),
            },
        ),
        (
            <ViewFit as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Determines whether an image or texture should be scaled to fit the viewport.",
                custom_placeholder: Some(ViewFit::default().to_arrow()?),
                datatype: ViewFit::arrow_datatype(),
            },
        ),
        (
            <ViewerRecommendationHash as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Hash of a viewer recommendation.\n\nThe formation of this hash is considered an internal implementation detail of the viewer.",
                custom_placeholder: Some(
                    ViewerRecommendationHash::default().to_arrow()?,
                ),
                datatype: ViewerRecommendationHash::arrow_datatype(),
            },
        ),
        (
            <Visible as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Whether the container, view, entity or instance is currently visible.",
                custom_placeholder: Some(Visible::default().to_arrow()?),
                datatype: Visible::arrow_datatype(),
            },
        ),
        (
            <VisibleTimeRange as Loggable>::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.",
                custom_placeholder: Some(VisibleTimeRange::default().to_arrow()?),
                datatype: VisibleTimeRange::arrow_datatype(),
            },
        ),
        (
            <VisualBounds2D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Visual bounds in 2D space used for `Spatial2DView`.",
                custom_placeholder: Some(VisualBounds2D::default().to_arrow()?),
                datatype: VisualBounds2D::arrow_datatype(),
            },
        ),
        (
            <VisualizerOverrides as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Override the visualizers for an entity.\n\nThis component is a stop-gap mechanism based on the current implementation details\nof the visualizer system. It is not intended to be a long-term solution, but provides\nenough utility to be useful in the short term.\n\nThe long-term solution is likely to be based off: <https://github.com/rerun-io/rerun/issues/6626>\n\nThis can only be used as part of blueprints. It will have no effect if used\nin a regular entity.",
                custom_placeholder: Some(VisualizerOverrides::default().to_arrow()?),
                datatype: VisualizerOverrides::arrow_datatype(),
            },
        ),
        (
            <ZoomLevel as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A zoom level determines how much of the world is visible on a map.",
                custom_placeholder: Some(ZoomLevel::default().to_arrow()?),
                datatype: ZoomLevel::arrow_datatype(),
            },
        ),
        (
            <AggregationPolicy as Loggable>::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.",
                custom_placeholder: Some(AggregationPolicy::default().to_arrow()?),
                datatype: AggregationPolicy::arrow_datatype(),
            },
        ),
        (
            <AlbedoFactor as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A color multiplier, usually applied to a whole entity, e.g. a mesh.",
                custom_placeholder: Some(AlbedoFactor::default().to_arrow()?),
                datatype: AlbedoFactor::arrow_datatype(),
            },
        ),
        (
            <AnnotationContext as Loggable>::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.",
                custom_placeholder: Some(AnnotationContext::default().to_arrow()?),
                datatype: AnnotationContext::arrow_datatype(),
            },
        ),
        (
            <AxisLength as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The length of an axis in local units of the space.",
                custom_placeholder: Some(AxisLength::default().to_arrow()?),
                datatype: AxisLength::arrow_datatype(),
            },
        ),
        (
            <Blob as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A binary blob of data.",
                custom_placeholder: None,
                datatype: Blob::arrow_datatype(),
            },
        ),
        (
            <ClassId as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit ID representing a type of semantic class.",
                custom_placeholder: Some(ClassId::default().to_arrow()?),
                datatype: ClassId::arrow_datatype(),
            },
        ),
        (
            <ClearIsRecursive as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Configures how a clear operation should behave - recursive or not.",
                custom_placeholder: Some(ClearIsRecursive::default().to_arrow()?),
                datatype: ClearIsRecursive::arrow_datatype(),
            },
        ),
        (
            <Color as Loggable>::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`.",
                custom_placeholder: Some(Color::default().to_arrow()?),
                datatype: Color::arrow_datatype(),
            },
        ),
        (
            <Colormap as Loggable>::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.",
                custom_placeholder: Some(Colormap::default().to_arrow()?),
                datatype: Colormap::arrow_datatype(),
            },
        ),
        (
            <DepthMeter as Loggable>::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.",
                custom_placeholder: Some(DepthMeter::default().to_arrow()?),
                datatype: DepthMeter::arrow_datatype(),
            },
        ),
        (
            <DisconnectedSpace as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Spatially disconnect this entity from its parent.\n\nSpecifies that the entity path at which this is logged is spatially disconnected from its parent,\nmaking it impossible to transform the entity path into its parent's space and vice versa.\nIt *only* applies to space views that work with spatial transformations, i.e. 2D & 3D space views.\nThis is useful for specifying that a subgraph is independent of the rest of the scene.",
                custom_placeholder: Some(DisconnectedSpace::default().to_arrow()?),
                datatype: DisconnectedSpace::arrow_datatype(),
            },
        ),
        (
            <DrawOrder as Loggable>::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.",
                custom_placeholder: Some(DrawOrder::default().to_arrow()?),
                datatype: DrawOrder::arrow_datatype(),
            },
        ),
        (
            <EntityPath as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A path to an entity, usually to reference some data that is part of the target entity.",
                custom_placeholder: Some(EntityPath::default().to_arrow()?),
                datatype: EntityPath::arrow_datatype(),
            },
        ),
        (
            <FillMode as Loggable>::name(),
            ComponentReflection {
                docstring_md: "How a geometric shape is drawn and colored.",
                custom_placeholder: Some(FillMode::default().to_arrow()?),
                datatype: FillMode::arrow_datatype(),
            },
        ),
        (
            <FillRatio as Loggable>::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.",
                custom_placeholder: Some(FillRatio::default().to_arrow()?),
                datatype: FillRatio::arrow_datatype(),
            },
        ),
        (
            <GammaCorrection as Loggable>::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\nValid range is from 0 (excluding) to max float.\nDefaults to 1.0 unless otherwise specified.",
                custom_placeholder: Some(GammaCorrection::default().to_arrow()?),
                datatype: GammaCorrection::arrow_datatype(),
            },
        ),
        (
            <GeoLineString as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A geospatial line string expressed in [EPSG:4326](https://epsg.io/4326) latitude and longitude (North/East-positive degrees).",
                custom_placeholder: Some(GeoLineString::default().to_arrow()?),
                datatype: GeoLineString::arrow_datatype(),
            },
        ),
        (
            <HalfSize2D as Loggable>::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.",
                custom_placeholder: Some(HalfSize2D::default().to_arrow()?),
                datatype: HalfSize2D::arrow_datatype(),
            },
        ),
        (
            <HalfSize3D as Loggable>::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.",
                custom_placeholder: Some(HalfSize3D::default().to_arrow()?),
                datatype: HalfSize3D::arrow_datatype(),
            },
        ),
        (
            <ImageBuffer as Loggable>::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).",
                custom_placeholder: None,
                datatype: ImageBuffer::arrow_datatype(),
            },
        ),
        (
            <ImageFormat as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The metadata describing the contents of a [`components.ImageBuffer`](https://rerun.io/docs/reference/types/components/image_buffer).",
                custom_placeholder: Some(ImageFormat::default().to_arrow()?),
                datatype: ImageFormat::arrow_datatype(),
            },
        ),
        (
            <ImagePlaneDistance as Loggable>::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.",
                custom_placeholder: Some(ImagePlaneDistance::default().to_arrow()?),
                datatype: ImagePlaneDistance::arrow_datatype(),
            },
        ),
        (
            <KeypointId as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A 16-bit ID representing a type of semantic keypoint within a class.",
                custom_placeholder: Some(KeypointId::default().to_arrow()?),
                datatype: KeypointId::arrow_datatype(),
            },
        ),
        (
            <LatLon as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A geospatial position expressed in [EPSG:4326](https://epsg.io/4326) latitude and longitude (North/East-positive degrees).",
                custom_placeholder: Some(LatLon::default().to_arrow()?),
                datatype: LatLon::arrow_datatype(),
            },
        ),
        (
            <Length as Loggable>::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.",
                custom_placeholder: Some(Length::default().to_arrow()?),
                datatype: Length::arrow_datatype(),
            },
        ),
        (
            <LineStrip2D as Loggable>::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```",
                custom_placeholder: Some(LineStrip2D::default().to_arrow()?),
                datatype: LineStrip2D::arrow_datatype(),
            },
        ),
        (
            <LineStrip3D as Loggable>::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```",
                custom_placeholder: Some(LineStrip3D::default().to_arrow()?),
                datatype: LineStrip3D::arrow_datatype(),
            },
        ),
        (
            <MagnificationFilter as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Filter used when magnifying an image/texture such that a single pixel/texel is displayed as multiple pixels on screen.",
                custom_placeholder: Some(MagnificationFilter::default().to_arrow()?),
                datatype: MagnificationFilter::arrow_datatype(),
            },
        ),
        (
            <MarkerShape as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The visual appearance of a point in e.g. a 2D plot.",
                custom_placeholder: Some(MarkerShape::default().to_arrow()?),
                datatype: MarkerShape::arrow_datatype(),
            },
        ),
        (
            <MarkerSize as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Radius of a marker of a point in e.g. a 2D plot, measured in UI points.",
                custom_placeholder: Some(MarkerSize::default().to_arrow()?),
                datatype: MarkerSize::arrow_datatype(),
            },
        ),
        (
            <MediaType as Loggable>::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>.",
                custom_placeholder: Some(MediaType::default().to_arrow()?),
                datatype: MediaType::arrow_datatype(),
            },
        ),
        (
            <Name as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A display name, typically for an entity or a item like a plot series.",
                custom_placeholder: Some(Name::default().to_arrow()?),
                datatype: Name::arrow_datatype(),
            },
        ),
        (
            <Opacity as Loggable>::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.",
                custom_placeholder: Some(Opacity::default().to_arrow()?),
                datatype: Opacity::arrow_datatype(),
            },
        ),
        (
            <PinholeProjection as Loggable>::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```",
                custom_placeholder: Some(PinholeProjection::default().to_arrow()?),
                datatype: PinholeProjection::arrow_datatype(),
            },
        ),
        (
            <PoseRotationAxisAngle as Loggable>::name(),
            ComponentReflection {
                docstring_md: "3D rotation represented by a rotation around a given axis that doesn't propagate in the transform hierarchy.",
                custom_placeholder: Some(PoseRotationAxisAngle::default().to_arrow()?),
                datatype: PoseRotationAxisAngle::arrow_datatype(),
            },
        ),
        (
            <PoseRotationQuat as Loggable>::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.",
                custom_placeholder: Some(PoseRotationQuat::default().to_arrow()?),
                datatype: PoseRotationQuat::arrow_datatype(),
            },
        ),
        (
            <PoseScale3D as Loggable>::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.",
                custom_placeholder: Some(PoseScale3D::default().to_arrow()?),
                datatype: PoseScale3D::arrow_datatype(),
            },
        ),
        (
            <PoseTransformMat3x3 as Loggable>::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```",
                custom_placeholder: Some(PoseTransformMat3x3::default().to_arrow()?),
                datatype: PoseTransformMat3x3::arrow_datatype(),
            },
        ),
        (
            <PoseTranslation3D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A translation vector in 3D space that doesn't propagate in the transform hierarchy.",
                custom_placeholder: Some(PoseTranslation3D::default().to_arrow()?),
                datatype: PoseTranslation3D::arrow_datatype(),
            },
        ),
        (
            <Position2D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A position in 2D space.",
                custom_placeholder: Some(Position2D::default().to_arrow()?),
                datatype: Position2D::arrow_datatype(),
            },
        ),
        (
            <Position3D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A position in 3D space.",
                custom_placeholder: Some(Position3D::default().to_arrow()?),
                datatype: Position3D::arrow_datatype(),
            },
        ),
        (
            <Radius as Loggable>::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.",
                custom_placeholder: Some(Radius::default().to_arrow()?),
                datatype: Radius::arrow_datatype(),
            },
        ),
        (
            <Range1D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A 1D range, specifying a lower and upper bound.",
                custom_placeholder: Some(Range1D::default().to_arrow()?),
                datatype: Range1D::arrow_datatype(),
            },
        ),
        (
            <Resolution as Loggable>::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.",
                custom_placeholder: Some(Resolution::default().to_arrow()?),
                datatype: Resolution::arrow_datatype(),
            },
        ),
        (
            <RotationAxisAngle as Loggable>::name(),
            ComponentReflection {
                docstring_md: "3D rotation represented by a rotation around a given axis.",
                custom_placeholder: Some(RotationAxisAngle::default().to_arrow()?),
                datatype: RotationAxisAngle::arrow_datatype(),
            },
        ),
        (
            <RotationQuat as Loggable>::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.",
                custom_placeholder: Some(RotationQuat::default().to_arrow()?),
                datatype: RotationQuat::arrow_datatype(),
            },
        ),
        (
            <Scalar as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A scalar value, encoded as a 64-bit floating point.\n\nUsed for time series plots.",
                custom_placeholder: Some(Scalar::default().to_arrow()?),
                datatype: Scalar::arrow_datatype(),
            },
        ),
        (
            <Scale3D as Loggable>::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.",
                custom_placeholder: Some(Scale3D::default().to_arrow()?),
                datatype: Scale3D::arrow_datatype(),
            },
        ),
        (
            <ShowLabels as Loggable>::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.",
                custom_placeholder: None,
                datatype: ShowLabels::arrow_datatype(),
            },
        ),
        (
            <StrokeWidth as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The width of a stroke specified in UI points.",
                custom_placeholder: Some(StrokeWidth::default().to_arrow()?),
                datatype: StrokeWidth::arrow_datatype(),
            },
        ),
        (
            <TensorData as Loggable>::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.",
                custom_placeholder: Some(TensorData::default().to_arrow()?),
                datatype: TensorData::arrow_datatype(),
            },
        ),
        (
            <TensorDimensionIndexSelection as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Specifies a concrete index on a tensor dimension.",
                custom_placeholder: Some(
                    TensorDimensionIndexSelection::default().to_arrow()?,
                ),
                datatype: TensorDimensionIndexSelection::arrow_datatype(),
            },
        ),
        (
            <TensorHeightDimension as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Specifies which dimension to use for height.",
                custom_placeholder: Some(TensorHeightDimension::default().to_arrow()?),
                datatype: TensorHeightDimension::arrow_datatype(),
            },
        ),
        (
            <TensorWidthDimension as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Specifies which dimension to use for width.",
                custom_placeholder: Some(TensorWidthDimension::default().to_arrow()?),
                datatype: TensorWidthDimension::arrow_datatype(),
            },
        ),
        (
            <Texcoord2D as Loggable>::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.",
                custom_placeholder: Some(Texcoord2D::default().to_arrow()?),
                datatype: Texcoord2D::arrow_datatype(),
            },
        ),
        (
            <Text as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A string of text, e.g. for labels and text documents.",
                custom_placeholder: Some(Text::default().to_arrow()?),
                datatype: Text::arrow_datatype(),
            },
        ),
        (
            <TextLogLevel as Loggable>::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\"`",
                custom_placeholder: Some(TextLogLevel::default().to_arrow()?),
                datatype: TextLogLevel::arrow_datatype(),
            },
        ),
        (
            <TransformMat3x3 as Loggable>::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```",
                custom_placeholder: Some(TransformMat3x3::default().to_arrow()?),
                datatype: TransformMat3x3::arrow_datatype(),
            },
        ),
        (
            <TransformRelation as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Specifies relation a spatial transform describes.",
                custom_placeholder: Some(TransformRelation::default().to_arrow()?),
                datatype: TransformRelation::arrow_datatype(),
            },
        ),
        (
            <Translation3D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A translation vector in 3D space.",
                custom_placeholder: Some(Translation3D::default().to_arrow()?),
                datatype: Translation3D::arrow_datatype(),
            },
        ),
        (
            <TriangleIndices as Loggable>::name(),
            ComponentReflection {
                docstring_md: "The three indices of a triangle in a triangle mesh.",
                custom_placeholder: Some(TriangleIndices::default().to_arrow()?),
                datatype: TriangleIndices::arrow_datatype(),
            },
        ),
        (
            <ValueRange as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Range of expected or valid values, specifying a lower and upper bound.",
                custom_placeholder: Some(ValueRange::default().to_arrow()?),
                datatype: ValueRange::arrow_datatype(),
            },
        ),
        (
            <Vector2D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A vector in 2D space.",
                custom_placeholder: Some(Vector2D::default().to_arrow()?),
                datatype: Vector2D::arrow_datatype(),
            },
        ),
        (
            <Vector3D as Loggable>::name(),
            ComponentReflection {
                docstring_md: "A vector in 3D space.",
                custom_placeholder: Some(Vector3D::default().to_arrow()?),
                datatype: Vector3D::arrow_datatype(),
            },
        ),
        (
            <VideoTimestamp as Loggable>::name(),
            ComponentReflection {
                docstring_md: "Timestamp inside a [`archetypes.AssetVideo`](https://rerun.io/docs/reference/types/archetypes/asset_video).",
                custom_placeholder: Some(VideoTimestamp::default().to_arrow()?),
                datatype: VideoTimestamp::arrow_datatype(),
            },
        ),
        (
            <ViewCoordinates as Loggable>::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",
                custom_placeholder: Some(ViewCoordinates::default().to_arrow()?),
                datatype: ViewCoordinates::arrow_datatype(),
            },
        ),
    ];
    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",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.AnnotationContext".into(), display_name :
                    "Context", 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",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Vector2D".into(), display_name : "Vectors",
                    docstring_md : "All the vectors for each arrow in the batch.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Position2D".into(), display_name : "Origins",
                    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 { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    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 { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the points.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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 { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Vector3D".into(), display_name : "Vectors",
                    docstring_md : "All the vectors for each arrow in the batch.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Position3D".into(), display_name : "Origins",
                    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 { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    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 { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the points.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Blob"
                    .into(), display_name : "Blob", docstring_md : "The asset's bytes.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.MediaType".into(), display_name : "Media type",
                    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 { component_name :
                    "rerun.components.AlbedoFactor".into(), display_name :
                    "Albedo factor", 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",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Blob"
                    .into(), display_name : "Blob", docstring_md : "The asset's bytes.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.MediaType".into(), display_name : "Media type",
                    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",
                view_types: &["BarChartView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TensorData".into(), display_name : "Values",
                    docstring_md :
                    "The values. Should always be a 1-dimensional tensor (i.e. a vector).",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Color", docstring_md
                    : "The color of the bar chart", is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Boxes2D"),
            ArchetypeReflection {
                display_name: "Boxes 2D",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.HalfSize2D".into(), display_name : "Half sizes",
                    docstring_md : "All half-extents that make up the batch of boxes.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Position2D".into(), display_name : "Centers",
                    docstring_md : "Optional center positions of the boxes.", is_required
                    : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the boxes.", is_required : false,
                    }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md :
                    "Optional radii for the lines that make up the boxes.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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.\n\nThe default for 2D boxes is 10.0.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.HalfSize3D".into(), display_name : "Half sizes",
                    docstring_md : "All half-extents that make up the batch of boxes.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseTranslation3D".into(), display_name :
                    "Centers", docstring_md :
                    "Optional center positions of the boxes.\n\nIf not specified, the centers will be at (0, 0, 0).\nNote that this uses a [`components.PoseTranslation3D`](https://rerun.io/docs/reference/types/components/pose_translation3d) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationAxisAngle".into(), display_name :
                    "Rotation axis angles", 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.\nNote that this uses a [`components.PoseRotationAxisAngle`](https://rerun.io/docs/reference/types/components/pose_rotation_axis_angle) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationQuat".into(), display_name :
                    "Quaternions", 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.\nNote that this uses a [`components.PoseRotationQuat`](https://rerun.io/docs/reference/types/components/pose_rotation_quat) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the boxes.", is_required : false,
                    }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md :
                    "Optional radii for the lines that make up the boxes.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.FillMode".into(), display_name : "Fill mode",
                    docstring_md :
                    "Optionally choose whether the boxes are drawn with lines or solid.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Length"
                    .into(), display_name : "Lengths", docstring_md :
                    "Lengths of the capsules, defined as the distance between the centers of the endcaps.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md : "Radii of the capsules.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseTranslation3D".into(), display_name :
                    "Translations", docstring_md :
                    "Optional translations of the capsules.\n\nIf not specified, one end of each capsule will be at (0, 0, 0).\nNote that this uses a [`components.PoseTranslation3D`](https://rerun.io/docs/reference/types/components/pose_translation3d) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationAxisAngle".into(), display_name :
                    "Rotation axis angles", docstring_md :
                    "Rotations via axis + angle.\n\nIf no rotation is specified, the capsules align with the +Z axis of the local coordinate system.\nNote that this uses a [`components.PoseRotationAxisAngle`](https://rerun.io/docs/reference/types/components/pose_rotation_axis_angle) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationQuat".into(), display_name :
                    "Quaternions", docstring_md :
                    "Rotations via quaternion.\n\nIf no rotation is specified, the capsules align with the +Z axis of the local coordinate system.\nNote that this uses a [`components.PoseRotationQuat`](https://rerun.io/docs/reference/types/components/pose_rotation_quat) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the capsules.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", docstring_md
                    :
                    "Optional text labels for the capsules, which will be located at their centers.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial2DView", "Spatial3DView", "TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ClearIsRecursive".into(), display_name :
                    "Is recursive", docstring_md : "", is_required : true, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.DepthImage"),
            ArchetypeReflection {
                display_name: "Depth image",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageBuffer".into(), display_name : "Buffer",
                    docstring_md : "The raw depth image data.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageFormat".into(), display_name : "Format",
                    docstring_md : "The format of the image.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.DepthMeter".into(), display_name : "Meter",
                    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 { component_name :
                    "rerun.components.Colormap".into(), display_name : "Colormap",
                    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 { component_name :
                    "rerun.components.ValueRange".into(), display_name : "Depth range",
                    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 { component_name :
                    "rerun.components.FillRatio".into(), display_name :
                    "Point fill ratio", 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 { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.DisconnectedSpace"),
            ArchetypeReflection {
                display_name: "Disconnected space",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.DisconnectedSpace".into(), display_name :
                    "Disconnected space", docstring_md :
                    "Whether the entity path at which this is logged is disconnected from its parent.",
                    is_required : true, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Ellipsoids3D"),
            ArchetypeReflection {
                display_name: "Ellipsoids 3D",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.HalfSize3D".into(), display_name : "Half sizes",
                    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 { component_name :
                    "rerun.components.PoseTranslation3D".into(), display_name :
                    "Centers", docstring_md :
                    "Optional center positions of the ellipsoids.\n\nIf not specified, the centers will be at (0, 0, 0).\nNote that this uses a [`components.PoseTranslation3D`](https://rerun.io/docs/reference/types/components/pose_translation3d) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationAxisAngle".into(), display_name :
                    "Rotation axis angles", 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.\nNote that this uses a [`components.PoseRotationAxisAngle`](https://rerun.io/docs/reference/types/components/pose_rotation_axis_angle) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationQuat".into(), display_name :
                    "Quaternions", 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.\nNote that this uses a [`components.PoseRotationQuat`](https://rerun.io/docs/reference/types/components/pose_rotation_quat) which is also used by [`archetypes.InstancePoses3D`](https://rerun.io/docs/reference/types/archetypes/instance_poses3d).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the ellipsoids.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Line radii",
                    docstring_md :
                    "Optional radii for the lines used when the ellipsoid is rendered as a wireframe.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.FillMode".into(), display_name : "Fill mode",
                    docstring_md :
                    "Optionally choose whether the ellipsoids are drawn with lines or solid.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", docstring_md
                    : "Optional text labels for the ellipsoids.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Blob"
                    .into(), display_name : "Blob", docstring_md :
                    "The encoded content of some image file, e.g. a PNG or JPEG.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.MediaType".into(), display_name : "Media type",
                    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 { component_name :
                    "rerun.components.Opacity".into(), display_name : "Opacity",
                    docstring_md :
                    "Opacity of the image, useful for layering several images.\n\nDefaults to 1.0 (fully opaque).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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",
                view_types: &["MapView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.GeoLineString".into(), display_name :
                    "Line strings", docstring_md :
                    "The line strings, expressed in [EPSG:4326](https://epsg.io/4326) coordinates (North/East-positive degrees).",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    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 { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the line strings.", is_required :
                    false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.GeoPoints"),
            ArchetypeReflection {
                display_name: "Geo points",
                view_types: &["MapView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.LatLon"
                    .into(), display_name : "Positions", docstring_md :
                    "The [EPSG:4326](https://epsg.io/4326) coordinates for the points (North/East-positive degrees).",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    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 { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the points.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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.Image"),
            ArchetypeReflection {
                display_name: "Image",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageBuffer".into(), display_name : "Buffer",
                    docstring_md : "The raw image data.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageFormat".into(), display_name : "Format",
                    docstring_md : "The format of the image.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Opacity".into(), display_name : "Opacity",
                    docstring_md :
                    "Opacity of the image, useful for layering several images.\n\nDefaults to 1.0 (fully opaque).",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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.InstancePoses3D"),
            ArchetypeReflection {
                display_name: "Instance poses 3D",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseTranslation3D".into(), display_name :
                    "Translations", docstring_md : "Translation vectors.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationAxisAngle".into(), display_name :
                    "Rotation axis angles", docstring_md : "Rotations via axis + angle.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseRotationQuat".into(), display_name :
                    "Quaternions", docstring_md : "Rotations via quaternion.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseScale3D".into(), display_name : "Scales",
                    docstring_md : "Scaling factors.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.PoseTransformMat3x3".into(), display_name :
                    "Mat 3x 3", docstring_md : "3x3 transformation matrices.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.LineStrips2D"),
            ArchetypeReflection {
                display_name: "Line strips 2D",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.LineStrip2D".into(), display_name : "Strips",
                    docstring_md :
                    "All the actual 2D line strips that make up the batch.", is_required
                    : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md : "Optional radii for the line strips.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the line strips.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.LineStrip3D".into(), display_name : "Strips",
                    docstring_md :
                    "All the actual 3D line strips that make up the batch.", is_required
                    : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md : "Optional radii for the line strips.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the line strips.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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.Mesh3D"),
            ArchetypeReflection {
                display_name: "Mesh 3D",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Position3D".into(), display_name :
                    "Vertex positions", 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 { component_name :
                    "rerun.components.TriangleIndices".into(), display_name :
                    "Triangle indices", docstring_md :
                    "Optional indices for the triangles that make up the mesh.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Vector3D".into(), display_name : "Vertex normals",
                    docstring_md : "An optional normal for each vertex.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Vertex colors",
                    docstring_md : "An optional color for each vertex.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Texcoord2D".into(), display_name :
                    "Vertex texcoords", docstring_md :
                    "An optional uv texture coordinate for each vertex.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.AlbedoFactor".into(), display_name :
                    "Albedo factor", docstring_md :
                    "A color multiplier applied to the whole mesh.", is_required : false,
                    }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageBuffer".into(), display_name :
                    "Albedo texture buffer", 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)",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageFormat".into(), display_name :
                    "Albedo texture format", docstring_md :
                    "The format of the `albedo_texture_buffer`, if any.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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",
                view_types: &["Spatial2DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.PinholeProjection".into(), display_name :
                    "Image from camera", docstring_md :
                    "Camera projection, from image coordinates to view coordinates.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Resolution".into(), display_name : "Resolution",
                    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 { component_name :
                    "rerun.components.ViewCoordinates".into(), display_name :
                    "Camera xyz", docstring_md :
                    "Sets the view coordinates for the camera.\n\nAll common values are available as constants on the `components.ViewCoordinates` 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 { component_name :
                    "rerun.components.ImagePlaneDistance".into(), display_name :
                    "Image plane distance", 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, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Points2D"),
            ArchetypeReflection {
                display_name: "Points 2D",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Position2D".into(), display_name : "Positions",
                    docstring_md :
                    "All the 2D positions at which the point cloud shows points.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md :
                    "Optional radii for the points, effectively turning them into circles.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the points.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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 { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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 { component_name :
                    "rerun.components.KeypointId".into(), display_name : "Keypoint ids",
                    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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Position3D".into(), display_name : "Positions",
                    docstring_md :
                    "All the 3D positions at which the point cloud shows points.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Radius".into(), display_name : "Radii",
                    docstring_md :
                    "Optional radii for the points, effectively turning them into circles.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Colors",
                    docstring_md : "Optional colors for the points.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Text".into(), display_name : "Labels", 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 { component_name :
                    "rerun.components.ShowLabels".into(), display_name : "Show labels",
                    docstring_md :
                    "Optional choice of whether the text labels should be shown by default.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.ClassId".into(), display_name : "Class ids",
                    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 { component_name :
                    "rerun.components.KeypointId".into(), display_name : "Keypoint ids",
                    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.Scalar"),
            ArchetypeReflection {
                display_name: "Scalar",
                view_types: &["TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Scalar"
                    .into(), display_name : "Scalar", docstring_md :
                    "The scalar value to log.", is_required : true, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.SegmentationImage"),
            ArchetypeReflection {
                display_name: "Segmentation image",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageBuffer".into(), display_name : "Buffer",
                    docstring_md : "The raw image data.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ImageFormat".into(), display_name : "Format",
                    docstring_md : "The format of the image.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Opacity".into(), display_name : "Opacity",
                    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 { component_name :
                    "rerun.components.DrawOrder".into(), display_name : "Draw order",
                    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.SeriesLine"),
            ArchetypeReflection {
                display_name: "Series line",
                view_types: &["TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Color"
                    .into(), display_name : "Color", docstring_md :
                    "Color for the corresponding series.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.StrokeWidth".into(), display_name : "Width",
                    docstring_md : "Stroke width for the corresponding series.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Name".into(), display_name : "Name", docstring_md :
                    "Display name of the series.\n\nUsed in the legend.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.AggregationPolicy".into(), display_name :
                    "Aggregation policy", 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.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.SeriesPoint"),
            ArchetypeReflection {
                display_name: "Series point",
                view_types: &["TimeSeriesView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Color"
                    .into(), display_name : "Color", docstring_md :
                    "Color for the corresponding series.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.MarkerShape".into(), display_name : "Marker",
                    docstring_md : "What shape to use to represent the point",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Name".into(), display_name : "Name", docstring_md :
                    "Display name of the series.\n\nUsed in the legend.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.MarkerSize".into(), display_name : "Marker size",
                    docstring_md : "Size of the marker.", is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.Tensor"),
            ArchetypeReflection {
                display_name: "Tensor",
                view_types: &["TensorView", "BarChartView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TensorData".into(), display_name : "Data",
                    docstring_md : "The tensor data", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ValueRange".into(), display_name : "Value range",
                    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",
                view_types: &["TextDocumentView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Text"
                    .into(), display_name : "Text", docstring_md :
                    "Contents of the text document.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.MediaType".into(), display_name : "Media type",
                    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",
                view_types: &["TextLogView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name : "rerun.components.Text"
                    .into(), display_name : "Text", docstring_md :
                    "The body of the message.", is_required : true, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TextLogLevel".into(), display_name : "Level",
                    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 { component_name :
                    "rerun.components.Color".into(), display_name : "Color", 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",
                view_types: &["Spatial3DView", "Spatial2DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Translation3D".into(), display_name :
                    "Translation", docstring_md : "Translation vector.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.RotationAxisAngle".into(), display_name :
                    "Rotation axis angle", docstring_md : "Rotation via axis + angle.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.RotationQuat".into(), display_name : "Quaternion",
                    docstring_md : "Rotation via quaternion.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Scale3D".into(), display_name : "Scale",
                    docstring_md : "Scaling factor.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TransformMat3x3".into(), display_name : "Mat 3x 3",
                    docstring_md : "3x3 transformation matrix.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TransformRelation".into(), display_name :
                    "Relation", docstring_md :
                    "Specifies the relation this transform establishes between this entity and its parent.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.AxisLength".into(), display_name : "Axis length",
                    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",
                view_types: &["Spatial2DView", "Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.VideoTimestamp".into(), display_name : "Timestamp",
                    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 { component_name :
                    "rerun.components.EntityPath".into(), display_name :
                    "Video reference", 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, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.archetypes.ViewCoordinates"),
            ArchetypeReflection {
                display_name: "View coordinates",
                view_types: &["Spatial3DView"],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.ViewCoordinates".into(), display_name : "Xyz",
                    docstring_md : "The directions of the [x, y, z] axes.", is_required :
                    true, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.Background"),
            ArchetypeReflection {
                display_name: "Background",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.BackgroundKind".into(), display_name :
                    "Kind", docstring_md : "The type of the background.", is_required :
                    true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Color".into(), display_name : "Color", docstring_md
                    : "Color used for the `SolidColor` background type.", is_required :
                    false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ContainerBlueprint"),
            ArchetypeReflection {
                display_name: "Container blueprint",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ContainerKind".into(), display_name :
                    "Container kind", docstring_md : "The class of the view.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Name".into(), display_name : "Display name",
                    docstring_md : "The name of the container.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.IncludedContent".into(), display_name :
                    "Contents", docstring_md :
                    "`ContainerId`s or `SpaceViewId`s that are children of this container.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ColumnShare".into(), display_name :
                    "Col shares", docstring_md :
                    "The layout shares of each column in the container.\n\nFor `Horizontal` containers, the length of this list should always match the number of contents.\n\nIgnored for `Vertical` containers.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.RowShare".into(), display_name :
                    "Row shares", docstring_md :
                    "The layout shares of each row of the container.\n\nFor `Vertical` containers, the length of this list should always match the number of contents.\n\nIgnored for `Horizontal` containers.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ActiveTab".into(), display_name :
                    "Active tab", docstring_md :
                    "Which tab is active.\n\nOnly applies to `Tabs` containers.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.Visible".into(), display_name :
                    "Visible", docstring_md :
                    "Whether this container is visible.\n\nDefaults to true if not specified.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.GridColumns".into(), display_name :
                    "Grid columns", docstring_md :
                    "How many columns this grid should have.\n\nIf unset, the grid layout will be auto.\n\nIgnored for `Horizontal`/`Vertical` containers.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.DataframeQuery"),
            ArchetypeReflection {
                display_name: "Dataframe query",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.TimelineName".into(), display_name :
                    "Timeline", docstring_md :
                    "The timeline for this query.\n\nIf unset, the timeline currently active on the time panel is used.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.FilterByRange".into(), display_name :
                    "Filter by range", 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 { component_name :
                    "rerun.blueprint.components.FilterIsNotNull".into(), display_name :
                    "Filter is not null", docstring_md :
                    "If provided, only show rows which contains a logged event for the specified component.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ApplyLatestAt".into(), display_name :
                    "Apply latest at", docstring_md :
                    "Should empty cells be filled with latest-at queries?", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.SelectedColumns".into(), display_name :
                    "Select", docstring_md :
                    "Selected columns. If unset, all columns are selected.", is_required
                    : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.MapBackground"),
            ArchetypeReflection {
                display_name: "Map background",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.MapProvider".into(), display_name :
                    "Provider", 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",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ZoomLevel".into(), display_name : "Zoom",
                    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.PanelBlueprint"),
            ArchetypeReflection {
                display_name: "Panel blueprint",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.PanelState".into(), display_name :
                    "State", docstring_md : "", is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.PlotLegend"),
            ArchetypeReflection {
                display_name: "Plot legend",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.Corner2D".into(), display_name :
                    "Corner", docstring_md :
                    "To what corner the legend is aligned.\n\nDefaults to the right bottom corner.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.Visible".into(), display_name :
                    "Visible", 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",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.Range1D".into(), display_name : "Range",
                    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 { component_name :
                    "rerun.blueprint.components.LockRangeDuringZoom".into(), display_name
                    : "Zoom lock", 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.SpaceViewBlueprint"),
            ArchetypeReflection {
                display_name: "Space view blueprint",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.SpaceViewClass".into(), display_name :
                    "Class identifier", docstring_md : "The class of the view.",
                    is_required : true, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.Name".into(), display_name : "Display name",
                    docstring_md : "The name of the view.", is_required : false, },
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.SpaceViewOrigin".into(), display_name :
                    "Space origin", docstring_md :
                    "The \"anchor point\" of this space 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 space view.\nI.e. the position of this entity path in space forms the origin of the coordinate system in this space view.\nFurthermore, this is the primary indicator for heuristics on what entities we show in this space view.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.Visible".into(), display_name :
                    "Visible", docstring_md :
                    "Whether this space view is visible.\n\nDefaults to true if not specified.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.SpaceViewContents"),
            ArchetypeReflection {
                display_name: "Space view contents",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.QueryExpression".into(), display_name :
                    "Query", docstring_md :
                    "The `QueryExpression` that populates the contents for the `SpaceView`.\n\nThey determine which entities are part of the spaceview.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.TensorScalarMapping"),
            ArchetypeReflection {
                display_name: "Tensor scalar mapping",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.MagnificationFilter".into(), display_name :
                    "Mag filter", 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 { component_name :
                    "rerun.components.Colormap".into(), display_name : "Colormap",
                    docstring_md : "How scalar values map to colors.", is_required :
                    false, }, ArchetypeFieldReflection { component_name :
                    "rerun.components.GammaCorrection".into(), display_name : "Gamma",
                    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",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.components.TensorWidthDimension".into(), display_name :
                    "Width", 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 { component_name :
                    "rerun.components.TensorHeightDimension".into(), display_name :
                    "Height", 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 { component_name :
                    "rerun.components.TensorDimensionIndexSelection".into(), display_name
                    : "Indices", 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 { component_name :
                    "rerun.blueprint.components.TensorDimensionIndexSlider".into(),
                    display_name : "Slider", 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",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ViewFit".into(), display_name :
                    "Scaling", docstring_md : "How the image is scaled to fit the view.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.ViewportBlueprint"),
            ArchetypeReflection {
                display_name: "Viewport blueprint",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.RootContainer".into(), display_name :
                    "Root container", docstring_md : "The layout of the space-views",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.SpaceViewMaximized".into(), display_name
                    : "Maximized", docstring_md : "Show one tab as maximized?",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.AutoLayout".into(), display_name :
                    "Auto layout", docstring_md :
                    "Whether the viewport layout is determined automatically.\n\nIf `true`, the container layout will be reset whenever a new space 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 { component_name :
                    "rerun.blueprint.components.AutoSpaceViews".into(), display_name :
                    "Auto space views", docstring_md :
                    "Whether or not space views should be created automatically.\n\nIf `true`, the viewer will only add space views that it hasn't considered previously (as identified by `past_viewer_recommendations`)\nand which aren't deemed redundant to existing space views.\nThis defaults to `false` and is automatically set to `false` when the user adds space views manually in the viewer.",
                    is_required : false, }, ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.ViewerRecommendationHash".into(),
                    display_name : "Past viewer recommendations", docstring_md :
                    "Hashes of all recommended space 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 space views, you should set `auto_space_views` to `false`.\n\nThe viewer uses this to determine whether it should keep adding space views.",
                    is_required : false, },
                ],
            },
        ),
        (
            ArchetypeName::new("rerun.blueprint.archetypes.VisibleTimeRanges"),
            ArchetypeReflection {
                display_name: "Visible time ranges",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.VisibleTimeRange".into(), display_name :
                    "Ranges", 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",
                view_types: &[],
                fields: vec![
                    ArchetypeFieldReflection { component_name :
                    "rerun.blueprint.components.VisualBounds2D".into(), display_name :
                    "Range", docstring_md :
                    "Controls the visible range of a 2D view.\n\nUse this to control pan & zoom of the view.",
                    is_required : true, },
                ],
            },
        ),
    ];
    ArchetypeReflectionMap::from_iter(array)
}