aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0495-DataComponent-API.patch
blob: 347715d17a1158dd0195ce77ce2299c126d71aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
Date: Sun, 28 Apr 2024 19:53:06 -0400
Subject: [PATCH] DataComponent API

Exposes the data component logic used by vanilla ItemStack to API
consumers as a version-specific API.
The types and methods introduced by this patch do not follow the general
API deprecation contracts and will be adapted to each new minecraft
release without backwards compatibility measures.

diff --git a/src/main/java/io/papermc/paper/block/BlockPredicate.java b/src/main/java/io/papermc/paper/block/BlockPredicate.java
new file mode 100644
index 0000000000000000000000000000000000000000..92ea82ee95c449916955631297a059f1b9198c9b
--- /dev/null
+++ b/src/main/java/io/papermc/paper/block/BlockPredicate.java
@@ -0,0 +1,50 @@
+package io.papermc.paper.block;
+
+import io.papermc.paper.registry.set.RegistryKeySet;
+import org.bukkit.block.BlockType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface BlockPredicate {
+
+    static Builder predicate() {
+        //<editor-fold desc="implementations" defaultstate="collapsed">
+        record BlockPredicateImpl(@Nullable RegistryKeySet<BlockType> blocks) implements BlockPredicate {
+        }
+
+        class BuilderImpl implements Builder {
+
+            private @Nullable RegistryKeySet<BlockType> blocks;
+
+            @Override
+            public Builder blocks(final @Nullable RegistryKeySet<BlockType> blocks) {
+                this.blocks = blocks;
+                return this;
+            }
+
+            @Override
+            public BlockPredicate build() {
+                return new BlockPredicateImpl(this.blocks);
+            }
+        }
+        //</editor-fold>
+        return new BuilderImpl();
+    }
+
+    @Nullable RegistryKeySet<BlockType> blocks();
+
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder {
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder blocks(@Nullable RegistryKeySet<BlockType> blocks);
+
+        BlockPredicate build();
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/BuildableDataComponent.java b/src/main/java/io/papermc/paper/datacomponent/BuildableDataComponent.java
new file mode 100644
index 0000000000000000000000000000000000000000..4d2ee71b82ff4a66c7f84e73c028f146e0f851ad
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/BuildableDataComponent.java
@@ -0,0 +1,19 @@
+package io.papermc.paper.datacomponent;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface BuildableDataComponent<C extends BuildableDataComponent<C, B>, B extends DataComponentBuilder<C>> {
+
+    /**
+     * Creates a new builder from this data component.
+     *
+     * @return a new builder
+     */
+    @Contract(value = "-> new", pure = true)
+    B toBuilder();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/DataComponentBuilder.java b/src/main/java/io/papermc/paper/datacomponent/DataComponentBuilder.java
new file mode 100644
index 0000000000000000000000000000000000000000..9365e57499c8e337a40835b2ec9a92ebe4391bfc
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/DataComponentBuilder.java
@@ -0,0 +1,24 @@
+package io.papermc.paper.datacomponent;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Base builder type for all component builders.
+ *
+ * @param <C> built component type
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface DataComponentBuilder<C> {
+
+    /**
+     * Builds the immutable component value.
+     *
+     * @return a new component value
+     */
+    @Contract(value = "-> new", pure = true)
+    C build();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/DataComponentType.java b/src/main/java/io/papermc/paper/datacomponent/DataComponentType.java
new file mode 100644
index 0000000000000000000000000000000000000000..e2266d86a4dd1bf20346e48c428f8baf8a84b76b
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/DataComponentType.java
@@ -0,0 +1,30 @@
+package io.papermc.paper.datacomponent;
+
+import org.bukkit.Keyed;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface DataComponentType extends Keyed {
+
+    /**
+     * Checks if this data component type is persistent, or
+     * that it will be saved with any itemstack it's attached to.
+     *
+     * @return {@code true} if persistent, {@code false} otherwise
+     */
+    boolean isPersistent();
+
+    @SuppressWarnings("unused")
+    @ApiStatus.NonExtendable
+    interface Valued<T> extends DataComponentType {
+
+    }
+
+    @ApiStatus.NonExtendable
+    interface NonValued extends DataComponentType {
+
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/DataComponentTypes.java b/src/main/java/io/papermc/paper/datacomponent/DataComponentTypes.java
new file mode 100644
index 0000000000000000000000000000000000000000..e79737ae012179fc7c89b14af8801b8b09fa042b
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/DataComponentTypes.java
@@ -0,0 +1,344 @@
+package io.papermc.paper.datacomponent;
+
+import io.papermc.paper.datacomponent.item.BannerPatternLayers;
+import io.papermc.paper.datacomponent.item.BlockItemDataProperties;
+import io.papermc.paper.datacomponent.item.BundleContents;
+import io.papermc.paper.datacomponent.item.ChargedProjectiles;
+import io.papermc.paper.datacomponent.item.Consumable;
+import io.papermc.paper.datacomponent.item.CustomModelData;
+import io.papermc.paper.datacomponent.item.DamageResistant;
+import io.papermc.paper.datacomponent.item.DeathProtection;
+import io.papermc.paper.datacomponent.item.DyedItemColor;
+import io.papermc.paper.datacomponent.item.Enchantable;
+import io.papermc.paper.datacomponent.item.Equippable;
+import io.papermc.paper.datacomponent.item.Fireworks;
+import io.papermc.paper.datacomponent.item.FoodProperties;
+import io.papermc.paper.datacomponent.item.ItemAdventurePredicate;
+import io.papermc.paper.datacomponent.item.ItemArmorTrim;
+import io.papermc.paper.datacomponent.item.ItemAttributeModifiers;
+import io.papermc.paper.datacomponent.item.ItemContainerContents;
+import io.papermc.paper.datacomponent.item.ItemEnchantments;
+import io.papermc.paper.datacomponent.item.ItemLore;
+import io.papermc.paper.datacomponent.item.JukeboxPlayable;
+import io.papermc.paper.datacomponent.item.LodestoneTracker;
+import io.papermc.paper.datacomponent.item.MapDecorations;
+import io.papermc.paper.datacomponent.item.MapId;
+import io.papermc.paper.datacomponent.item.MapItemColor;
+import io.papermc.paper.datacomponent.item.OminousBottleAmplifier;
+import io.papermc.paper.datacomponent.item.PotDecorations;
+import io.papermc.paper.datacomponent.item.PotionContents;
+import io.papermc.paper.datacomponent.item.Repairable;
+import io.papermc.paper.datacomponent.item.ResolvableProfile;
+import io.papermc.paper.datacomponent.item.SeededContainerLoot;
+import io.papermc.paper.datacomponent.item.SuspiciousStewEffects;
+import io.papermc.paper.datacomponent.item.Tool;
+import io.papermc.paper.datacomponent.item.Unbreakable;
+import io.papermc.paper.datacomponent.item.UseCooldown;
+import io.papermc.paper.datacomponent.item.UseRemainder;
+import io.papermc.paper.datacomponent.item.WritableBookContent;
+import io.papermc.paper.datacomponent.item.WrittenBookContent;
+import io.papermc.paper.item.MapPostProcessing;
+import java.util.List;
+import net.kyori.adventure.key.Key;
+import net.kyori.adventure.text.Component;
+import org.bukkit.DyeColor;
+import org.bukkit.FireworkEffect;
+import org.bukkit.MusicInstrument;
+import org.bukkit.NamespacedKey;
+import org.bukkit.Registry;
+import org.bukkit.inventory.ItemRarity;
+import org.checkerframework.checker.index.qual.NonNegative;
+import org.checkerframework.checker.index.qual.Positive;
+import org.checkerframework.common.value.qual.IntRange;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+
+import static java.util.Objects.requireNonNull;
+
+/**
+ * All the different types of data that {@link org.bukkit.inventory.ItemStack ItemStacks}
+ * and {@link org.bukkit.inventory.ItemType ItemTypes} can have.
+ */
+@NullMarked
+@ApiStatus.Experimental
+public final class DataComponentTypes {
+
+    /**
+     * Controls the maximum stacking size of this item.
+     * <br>
+     * Values greater than 1 are mutually exclusive with the {@link #MAX_DAMAGE} component.
+     */
+    public static final DataComponentType.Valued<@IntRange(from = 1, to = 99) Integer> MAX_STACK_SIZE = valued("max_stack_size");
+    /**
+     * Controls the maximum amount of damage than an item can take,
+     * if not present, the item cannot be damaged.
+     * <br>
+     * Mutually exclusive with the {@link #MAX_STACK_SIZE} component greater than 1.
+     *
+     * @see #DAMAGE
+     */
+    public static final DataComponentType.Valued<@Positive Integer> MAX_DAMAGE = valued("max_damage");
+    /**
+     * The amount of durability removed from an item,
+     * for damageable items (with the {@link #MAX_DAMAGE} component), has an implicit default value of: {@code 0}.
+     *
+     * @see #MAX_DAMAGE
+     */
+    public static final DataComponentType.Valued<@NonNegative Integer> DAMAGE = valued("damage");
+    /**
+     * If set, the item will not lose any durability when used.
+     */
+    public static final DataComponentType.Valued<Unbreakable> UNBREAKABLE = valued("unbreakable");
+    /**
+     * Custom name override for an item (as set by renaming with an Anvil).
+     *
+     * @see #ITEM_NAME
+     */
+    public static final DataComponentType.Valued<Component> CUSTOM_NAME = valued("custom_name");
+    /**
+     * When present, replaces default item name with contained chat component.
+     * <p>
+     * Differences from {@link #CUSTOM_NAME}:
+     * <ul>
+     * <li>can't be changed or removed in Anvil</li>
+     * <li>is not styled with italics when displayed to player</li>
+     * <li>does not show labels where applicable
+     *      (for example: banner markers, names in item frames)</li>
+     * </ul>
+     *
+     * @see #CUSTOM_NAME
+     */
+    public static final DataComponentType.Valued<Component> ITEM_NAME = valued("item_name");
+    public static final DataComponentType.Valued<Key> ITEM_MODEL = valued("item_model");
+    /**
+     * Additional lines to include in an item's tooltip.
+     */
+    public static final DataComponentType.Valued<ItemLore> LORE = valued("lore");
+    /**
+     * Controls the color of the item name.
+     */
+    public static final DataComponentType.Valued<ItemRarity> RARITY = valued("rarity");
+    /**
+     * Controls the enchantments on an item.
+     * <br>
+     * If not present on a non-enchantment book, this item will not work in an anvil.
+     *
+     * @see #STORED_ENCHANTMENTS
+     */
+    public static final DataComponentType.Valued<ItemEnchantments> ENCHANTMENTS = valued("enchantments");
+    /**
+     * Controls which blocks a player in Adventure mode can place on with this item.
+     */
+    public static final DataComponentType.Valued<ItemAdventurePredicate> CAN_PLACE_ON = valued("can_place_on");
+    /**
+     * Controls which blocks a player in Adventure mode can break with this item.
+     */
+    public static final DataComponentType.Valued<ItemAdventurePredicate> CAN_BREAK = valued("can_break");
+    /**
+     * Holds attribute modifiers applied to any item,
+     * if not set, has an implicit default value based on the item type's
+     * default attributes (e.g. attack damage for weapons).
+     */
+    public static final DataComponentType.Valued<ItemAttributeModifiers> ATTRIBUTE_MODIFIERS = valued("attribute_modifiers");
+    /**
+     * Controls the minecraft:custom_model_data property in the item model.
+     */
+    public static final DataComponentType.Valued<CustomModelData> CUSTOM_MODEL_DATA = valued("custom_model_data");
+    /**
+     * If set, disables 'additional' tooltip part which comes from the item type
+     * (e.g. content of a shulker).
+     */
+    public static final DataComponentType.NonValued HIDE_ADDITIONAL_TOOLTIP = unvalued("hide_additional_tooltip");
+    /**
+     * If set, it will completely hide whole item tooltip (that includes item name).
+     */
+    public static final DataComponentType.NonValued HIDE_TOOLTIP = unvalued("hide_tooltip");
+    /**
+     * The additional experience cost required to modify an item in an Anvil.
+     * If not present, has an implicit default value of: {@code 0}.
+     */
+    public static final DataComponentType.Valued<@NonNegative Integer> REPAIR_COST = valued("repair_cost");
+    /**
+     * Causes an item to not be pickable in the creative menu, currently not very useful.
+     */
+    // public static final DataComponentType.NonValued CREATIVE_SLOT_LOCK = unvalued("creative_slot_lock");
+    /**
+     * Overrides the enchantment glint effect on an item.
+     * If not present, default behaviour is used.
+     */
+    public static final DataComponentType.Valued<Boolean> ENCHANTMENT_GLINT_OVERRIDE = valued("enchantment_glint_override");
+    /**
+     * Marks that a projectile item would be intangible when fired
+     * (i.e. can only be picked up by a creative mode player).
+     */
+    public static final DataComponentType.NonValued INTANGIBLE_PROJECTILE = unvalued("intangible_projectile");
+    /**
+     * Controls potential food benefits gained when consuming the item the component is applied on.
+     * Requires the {@link #CONSUMABLE} component to allow consumption in the first place.
+     */
+    public static final DataComponentType.Valued<FoodProperties> FOOD = valued("food");
+    public static final DataComponentType.Valued<Consumable> CONSUMABLE = valued("consumable");
+    public static final DataComponentType.Valued<UseRemainder> USE_REMAINDER = valued("use_remainder");
+    public static final DataComponentType.Valued<UseCooldown> USE_COOLDOWN = valued("use_cooldown");
+    /**
+     * If present, this item will not burn in fire.
+     */
+    public static final DataComponentType.Valued<DamageResistant> DAMAGE_RESISTANT = valued("damage_resistant");
+    /**
+     * Controls the behavior of the item as a tool.
+     */
+    public static final DataComponentType.Valued<Tool> TOOL = valued("tool");
+    public static final DataComponentType.Valued<Enchantable> ENCHANTABLE = valued("enchantable");
+    public static final DataComponentType.Valued<Equippable> EQUIPPABLE = valued("equippable");
+    public static final DataComponentType.Valued<Repairable> REPAIRABLE = valued("repairable");
+    public static final DataComponentType.NonValued GLIDER = unvalued("glider");
+    public static final DataComponentType.Valued<Key> TOOLTIP_STYLE = valued("tooltip_style");
+    public static final DataComponentType.Valued<DeathProtection> DEATH_PROTECTION = valued("death_protection");
+    /**
+     * Stores list of enchantments and their levels for an Enchanted Book.
+     * Unlike {@link #ENCHANTMENTS}, the effects provided by enchantments
+     * do not apply from this component.
+     * <br>
+     * If not present on an Enchanted Book, it will not work in an anvil.
+     * <p>
+     * Has an undefined behaviour if present on an item that is not an Enchanted Book
+     * (currently the presence of this component allows enchantments from {@link #ENCHANTMENTS}
+     * to be applied as if this item was an Enchanted Book).
+     *
+     * @see #ENCHANTMENTS
+     */
+    public static final DataComponentType.Valued<ItemEnchantments> STORED_ENCHANTMENTS = valued("stored_enchantments");
+    /**
+     * Represents a color applied to a dyeable item (in the {@link io.papermc.paper.registry.keys.tags.ItemTypeTagKeys#DYEABLE} item tag).
+     */
+    public static final DataComponentType.Valued<DyedItemColor> DYED_COLOR = valued("dyed_color");
+    /**
+     * Represents the tint of the decorations on the {@link org.bukkit.inventory.ItemType#FILLED_MAP} item.
+     */
+    public static final DataComponentType.Valued<MapItemColor> MAP_COLOR = valued("map_color");
+    /**
+     * References the shared map state holding map contents and markers for a {@link org.bukkit.inventory.ItemType#FILLED_MAP}.
+     */
+    public static final DataComponentType.Valued<MapId> MAP_ID = valued("map_id");
+    /**
+     * Holds a list of markers to be placed on a {@link org.bukkit.inventory.ItemType#FILLED_MAP} (used for Explorer Maps).
+     */
+    public static final DataComponentType.Valued<MapDecorations> MAP_DECORATIONS = valued("map_decorations");
+    /**
+     * Internal map item state used in the map crafting recipe.
+     */
+    public static final DataComponentType.Valued<MapPostProcessing> MAP_POST_PROCESSING = valued("map_post_processing");
+    /**
+     * Holds all projectiles that have been loaded into a Crossbow.
+     * If not present, the Crossbow is not charged.
+     */
+    public static final DataComponentType.Valued<ChargedProjectiles> CHARGED_PROJECTILES = valued("charged_projectiles");
+    /**
+     * Holds all items stored inside a Bundle.
+     * If removed, items cannot be added to the Bundle.
+     */
+    public static final DataComponentType.Valued<BundleContents> BUNDLE_CONTENTS = valued("bundle_contents");
+    /**
+     * Holds the contents of a potion (Potion, Splash Potion, Lingering Potion),
+     * or potion applied to a Tipped Arrow.
+     */
+    public static final DataComponentType.Valued<PotionContents> POTION_CONTENTS = valued("potion_contents");
+    /**
+     * Holds the effects that will be applied when consuming Suspicious Stew.
+     */
+    public static final DataComponentType.Valued<SuspiciousStewEffects> SUSPICIOUS_STEW_EFFECTS = valued("suspicious_stew_effects");
+    /**
+     * Holds the contents in a Book and Quill.
+     */
+    public static final DataComponentType.Valued<WritableBookContent> WRITABLE_BOOK_CONTENT = valued("writable_book_content");
+    /**
+     * Holds the contents and metadata of a Written Book.
+     */
+    public static final DataComponentType.Valued<WrittenBookContent> WRITTEN_BOOK_CONTENT = valued("written_book_content");
+    /**
+     * Holds the trims applied to an item in recipes
+     */
+    public static final DataComponentType.Valued<ItemArmorTrim> TRIM = valued("trim");
+    // debug_stick_state - Block Property API
+    // entity_data
+    // bucket_entity_data
+    // block_entity_data
+    /**
+     * Holds the instrument type used by a Goat Horn.
+     */
+    public static final DataComponentType.Valued<MusicInstrument> INSTRUMENT = valued("instrument");
+    /**
+     * Controls the amplifier amount for an Ominous Bottle's Bad Omen effect.
+     */
+    public static final DataComponentType.Valued<OminousBottleAmplifier> OMINOUS_BOTTLE_AMPLIFIER = valued("ominous_bottle_amplifier");
+    /**
+     * List of recipes that should be unlocked when using the Knowledge Book item.
+     */
+    public static final DataComponentType.Valued<JukeboxPlayable> JUKEBOX_PLAYABLE = valued("jukebox_playable");
+    public static final DataComponentType.Valued<List<Key>> RECIPES = valued("recipes");
+    /**
+     * If present, specifies that the Compass is a Lodestone Compass.
+     */
+    public static final DataComponentType.Valued<LodestoneTracker> LODESTONE_TRACKER = valued("lodestone_tracker");
+    /**
+     * Stores the explosion crafted in a Firework Star.
+     */
+    public static final DataComponentType.Valued<FireworkEffect> FIREWORK_EXPLOSION = valued("firework_explosion");
+    /**
+     * Stores all explosions crafted into a Firework Rocket, as well as flight duration.
+     */
+    public static final DataComponentType.Valued<Fireworks> FIREWORKS = valued("fireworks");
+    /**
+     * Controls the skin displayed on a Player Head.
+     */
+    public static final DataComponentType.Valued<ResolvableProfile> PROFILE = valued("profile");
+    /**
+     * Controls the sound played by a Player Head when placed on a Note Block.
+     */
+    public static final DataComponentType.Valued<Key> NOTE_BLOCK_SOUND = valued("note_block_sound");
+    /**
+     * Stores the additional patterns applied to a Banner or Shield.
+     */
+    public static final DataComponentType.Valued<BannerPatternLayers> BANNER_PATTERNS = valued("banner_patterns");
+    /**
+     * Stores the base color for a Shield.
+     */
+    public static final DataComponentType.Valued<DyeColor> BASE_COLOR = valued("base_color");
+    /**
+     * Stores the Sherds applied to each side of a Decorated Pot.
+     */
+    public static final DataComponentType.Valued<PotDecorations> POT_DECORATIONS = valued("pot_decorations");
+    /**
+     * Holds the contents of container blocks (Chests, Shulker Boxes) in item form.
+     */
+    public static final DataComponentType.Valued<ItemContainerContents> CONTAINER = valued("container");
+    /**
+     * Holds block state properties to apply when placing a block.
+     */
+    public static final DataComponentType.Valued<BlockItemDataProperties> BLOCK_DATA = valued("block_state");
+    // bees
+    // /**
+    //  * Holds the lock state of a container-like block,
+    //  * copied to container block when placed.
+    //  * <br>
+    //  * An item with a custom name of the same value must be used
+    //  * to open this container.
+    //  */
+    // public static final DataComponentType.Valued<LockCode> LOCK = valued("lock");
+    /**
+     * Holds the unresolved loot table and seed of a container-like block.
+     */
+    public static final DataComponentType.Valued<SeededContainerLoot> CONTAINER_LOOT = valued("container_loot");
+
+    private static DataComponentType.NonValued unvalued(final String name) {
+        return (DataComponentType.NonValued) requireNonNull(Registry.DATA_COMPONENT_TYPE.get(NamespacedKey.minecraft(name)), name + " unvalued data component type couldn't be found, this is a bug.");
+    }
+
+    @SuppressWarnings("unchecked")
+    private static <T> DataComponentType.Valued<T> valued(final String name) {
+        return (DataComponentType.Valued<T>) requireNonNull(Registry.DATA_COMPONENT_TYPE.get(NamespacedKey.minecraft(name)), name + " valued data component type couldn't be found, this is a bug.");
+    }
+
+    private DataComponentTypes() {
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/BannerPatternLayers.java b/src/main/java/io/papermc/paper/datacomponent/item/BannerPatternLayers.java
new file mode 100644
index 0000000000000000000000000000000000000000..12cfae82234b8c4cb231ab91e72ad82d28b85183
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/BannerPatternLayers.java
@@ -0,0 +1,66 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Arrays;
+import java.util.List;
+import org.bukkit.block.banner.Pattern;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the layers of patterns on a banner.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#BANNER_PATTERNS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface BannerPatternLayers {
+
+    @Contract(value = "_ -> new", pure = true)
+    static BannerPatternLayers bannerPatternLayers(final List<Pattern> patterns) {
+        return bannerPatternLayers().addAll(patterns).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static BannerPatternLayers.Builder bannerPatternLayers() {
+        return ItemComponentTypesBridge.bridge().bannerPatternLayers();
+    }
+
+    /**
+     * Gets the patterns on the banner.
+     *
+     * @return the patterns
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Pattern> patterns();
+
+    /**
+     * Builder for {@link BannerPatternLayers}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<BannerPatternLayers> {
+
+        /**
+         * Adds a pattern to the banner.
+         *
+         * @param pattern the pattern
+         * @return the builder for chaining
+         * @see #patterns()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder add(Pattern pattern);
+
+        /**
+         * Adds multiple patterns to the banner.
+         *
+         * @param patterns the patterns
+         * @return the builder for chaining
+         * @see #patterns()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(List<Pattern> patterns);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/BlockItemDataProperties.java b/src/main/java/io/papermc/paper/datacomponent/item/BlockItemDataProperties.java
new file mode 100644
index 0000000000000000000000000000000000000000..65f1bc8d1bea0042dca9683c439561132dbeea5c
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/BlockItemDataProperties.java
@@ -0,0 +1,51 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.block.BlockType;
+import org.bukkit.block.data.BlockData;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the {@link BlockData} properties of a block item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#BLOCK_DATA
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface BlockItemDataProperties {
+
+    @Contract(value = "-> new", pure = true)
+    static BlockItemDataProperties.Builder blockItemStateProperties() {
+        return ItemComponentTypesBridge.bridge().blockItemStateProperties();
+    }
+
+    /**
+     * Creates a new {@link BlockData} instance for the given {@link BlockType}.
+     *
+     * @param blockType the block type
+     * @return the block data
+     */
+    @Contract(pure = true)
+    BlockData createBlockData(BlockType blockType);
+
+    /**
+     * Applies the properties to the given {@link BlockData}. Doesn't
+     * mutate the parameter, but returns a new instance with the properties applied.
+     *
+     * @param blockData the block data to apply the properties to
+     * @return the block data with the properties applied
+     */
+    @Contract(pure = true)
+    BlockData applyTo(BlockData blockData);
+
+    /**
+     * Builder for {@link BlockItemDataProperties}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<BlockItemDataProperties> {
+        // building this requires BlockProperty API, so an empty builder for now (essentially read-only)
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/BundleContents.java b/src/main/java/io/papermc/paper/datacomponent/item/BundleContents.java
new file mode 100644
index 0000000000000000000000000000000000000000..c0f671aef8225c87632d2368d1b28fc8b1bce686
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/BundleContents.java
@@ -0,0 +1,66 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Arrays;
+import java.util.List;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds all items stored inside of a Bundle.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#BUNDLE_CONTENTS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface BundleContents {
+
+    @Contract(value = "_ -> new", pure = true)
+    static BundleContents bundleContents(final List<ItemStack> contents) {
+        return ItemComponentTypesBridge.bridge().bundleContents().addAll(contents).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static BundleContents.Builder bundleContents() {
+        return ItemComponentTypesBridge.bridge().bundleContents();
+    }
+
+    /**
+     * Lists the items that are currently stored inside of this component.
+     *
+     * @return items
+     */
+    @Contract(value = "-> new", pure = true)
+    @Unmodifiable List<ItemStack> contents();
+
+    /**
+     * Builder for {@link BundleContents}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<BundleContents> {
+
+        /**
+         * Adds an item to this builder.
+         *
+         * @param stack item
+         * @return the builder for chaining
+         * @see #contents()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder add(ItemStack stack);
+
+        /**
+         * Adds items to this builder.
+         *
+         * @param stacks items
+         * @return the builder for chaining
+         * @see #contents()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(List<ItemStack> stacks);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ChargedProjectiles.java b/src/main/java/io/papermc/paper/datacomponent/item/ChargedProjectiles.java
new file mode 100644
index 0000000000000000000000000000000000000000..d0a6e7db06f540e13ac00e8da3acabd9f7838f1f
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ChargedProjectiles.java
@@ -0,0 +1,66 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Arrays;
+import java.util.List;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds all projectiles that have been loaded into a Crossbow.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CHARGED_PROJECTILES
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ChargedProjectiles {
+
+    @Contract(value = "_ -> new", pure = true)
+    static ChargedProjectiles chargedProjectiles(final List<ItemStack> projectiles) {
+        return chargedProjectiles().addAll(projectiles).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ChargedProjectiles.Builder chargedProjectiles() {
+        return ItemComponentTypesBridge.bridge().chargedProjectiles();
+    }
+
+    /**
+     * Lists the projectiles that are currently loaded into this component.
+     *
+     * @return the loaded projectiles
+     */
+    @Contract(value = "-> new", pure = true)
+    @Unmodifiable List<ItemStack> projectiles();
+
+    /**
+     * Builder for {@link ChargedProjectiles}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<ChargedProjectiles> {
+
+        /**
+         * Adds a projectile to be loaded in this builder.
+         *
+         * @param stack projectile
+         * @return the builder for chaining
+         * @see #projectiles()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder add(ItemStack stack);
+
+        /**
+         * Adds projectiles to be loaded in this builder.
+         *
+         * @param stacks projectiles
+         * @return the builder for chaining
+         * @see #projectiles()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(List<ItemStack> stacks);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Consumable.java b/src/main/java/io/papermc/paper/datacomponent/item/Consumable.java
new file mode 100644
index 0000000000000000000000000000000000000000..a448fedb63ffce18b9f6a1bd0fecfc5cd90224a6
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Consumable.java
@@ -0,0 +1,70 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.BuildableDataComponent;
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.datacomponent.item.consumable.ConsumeEffect;
+import io.papermc.paper.datacomponent.item.consumable.ItemUseAnimation;
+import java.util.Collection;
+import java.util.List;
+import net.kyori.adventure.key.Key;
+import org.checkerframework.checker.index.qual.NonNegative;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the properties for this item for when it is consumed.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CONSUMABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Consumable extends BuildableDataComponent<Consumable, Consumable.Builder> {
+
+    @Contract(value = "-> new", pure = true)
+    static Consumable.Builder consumable() {
+        return ItemComponentTypesBridge.bridge().consumable();
+    }
+
+    @Contract(pure = true)
+    @NonNegative float consumeSeconds();
+
+    @Contract(pure = true)
+    ItemUseAnimation animation();
+
+    @Contract(pure = true)
+    Key sound();
+
+    @Contract(pure = true)
+    boolean hasConsumeParticles();
+
+    @Contract(pure = true)
+    @Unmodifiable List<ConsumeEffect> consumeEffects();
+
+    /**
+     * Builder for {@link Consumable}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<Consumable> {
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder consumeSeconds(@NonNegative float consumeSeconds);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder animation(ItemUseAnimation animation);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder sound(Key sound);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder hasConsumeParticles(boolean hasConsumeParticles);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffect(ConsumeEffect effect);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffects(List<ConsumeEffect> effects);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/CustomModelData.java b/src/main/java/io/papermc/paper/datacomponent/item/CustomModelData.java
new file mode 100644
index 0000000000000000000000000000000000000000..d416c9d25b3ab88bf1e208c6faf92a8e2378c376
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/CustomModelData.java
@@ -0,0 +1,28 @@
+package io.papermc.paper.datacomponent.item;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the custom model data.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CUSTOM_MODEL_DATA
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface CustomModelData {
+
+    @Contract(value = "_ -> new", pure = true)
+    static CustomModelData customModelData(final int id) {
+        return ItemComponentTypesBridge.bridge().customModelData(id);
+    }
+
+    /**
+     * Gets the custom model data id.
+     *
+     * @return the id
+     */
+    @Contract(pure = true)
+    int id();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/DamageResistant.java b/src/main/java/io/papermc/paper/datacomponent/item/DamageResistant.java
new file mode 100644
index 0000000000000000000000000000000000000000..6cbd73cb2a11f4858b44a2f57d2fe0acb1eb9fb5
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/DamageResistant.java
@@ -0,0 +1,30 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.registry.tag.TagKey;
+import org.bukkit.damage.DamageType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the contents of damage types that the item entity containing this item is invincible to.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#DAMAGE_RESISTANT
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface DamageResistant {
+
+    @Contract(value = "_ -> new", pure = true)
+    static DamageResistant damageResistant(final TagKey<DamageType> types) {
+        return ItemComponentTypesBridge.bridge().damageResistant(types);
+    }
+
+    /**
+     * The types that this damage type is invincible tp.
+     *
+     * @return item
+     */
+    @Contract(value = "-> new", pure = true)
+    TagKey<DamageType> types();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/DeathProtection.java b/src/main/java/io/papermc/paper/datacomponent/item/DeathProtection.java
new file mode 100644
index 0000000000000000000000000000000000000000..87c2220708af7db06348994ad5940c7cecd9f691
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/DeathProtection.java
@@ -0,0 +1,48 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.datacomponent.item.consumable.ConsumeEffect;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Sets whether this item should protect the entity upon death, and what effects should be played.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#DEATH_PROTECTION
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface DeathProtection {
+
+    @Contract(value = "_ -> new", pure = true)
+    static DeathProtection deathProtection(final List<ConsumeEffect> deathEffects) {
+        return deathProtection().addEffects(deathEffects).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static DeathProtection.Builder deathProtection() {
+        return ItemComponentTypesBridge.bridge().deathProtection();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    @Unmodifiable List<ConsumeEffect> deathEffects();
+
+    /**
+     * Builder for {@link DeathProtection}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<DeathProtection> {
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffect(ConsumeEffect effect);
+
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffects(List<ConsumeEffect> effects);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/DyedItemColor.java b/src/main/java/io/papermc/paper/datacomponent/item/DyedItemColor.java
new file mode 100644
index 0000000000000000000000000000000000000000..d80581fc8b894cc4d4af9741244b1bb03468b263
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/DyedItemColor.java
@@ -0,0 +1,53 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.Color;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Represents a color applied to a dyeable item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#DYED_COLOR
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface DyedItemColor extends ShownInTooltip<DyedItemColor> {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static DyedItemColor dyedItemColor(final Color color, final boolean showInTooltip) {
+        return dyedItemColor().color(color).showInTooltip(showInTooltip).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static DyedItemColor.Builder dyedItemColor() {
+        return ItemComponentTypesBridge.bridge().dyedItemColor();
+    }
+
+    /**
+     * Color of the item.
+     *
+     * @return color
+     */
+    @Contract(value = "-> new", pure = true)
+    Color color();
+
+    /**
+     * Builder for {@link DyedItemColor}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<DyedItemColor> {
+
+        /**
+         * Sets the color of this builder.
+         *
+         * @param color color
+         * @return the builder for chaining
+         * @see #color()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder color(Color color);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Enchantable.java b/src/main/java/io/papermc/paper/datacomponent/item/Enchantable.java
new file mode 100644
index 0000000000000000000000000000000000000000..5169b9cd73dc0ffc8297f8d5f63d3d707a47d279
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Enchantable.java
@@ -0,0 +1,31 @@
+package io.papermc.paper.datacomponent.item;
+
+import org.checkerframework.checker.index.qual.Positive;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds if an item is enchantable, allowing for enchantments of the type to be seen in an enchanting table.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#ENCHANTABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Enchantable {
+
+    @Contract(value = "_ -> new", pure = true)
+    static Enchantable enchantable(final @Positive int level) {
+        return ItemComponentTypesBridge.bridge().enchantable(level);
+    }
+
+    /**
+     * Gets the current enchantment value level allowed,
+     * a higher value allows enchantments with a higher cost to be picked.
+     *
+     * @see <a href="https://minecraft.wiki/w/Enchanting_mechanics#Java_Edition_2">Minecraft Wiki</a>
+     * @return the value
+     */
+    @Contract(pure = true)
+    @Positive int value();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Equippable.java b/src/main/java/io/papermc/paper/datacomponent/item/Equippable.java
new file mode 100644
index 0000000000000000000000000000000000000000..7d84217814bba4ce826e33755fee0d5c3b280009
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Equippable.java
@@ -0,0 +1,170 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.BuildableDataComponent;
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.registry.set.RegistryKeySet;
+import net.kyori.adventure.key.Key;
+import org.bukkit.entity.EntityType;
+import org.bukkit.inventory.EquipmentSlot;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+
+/**
+ * Holds the equippable properties of an item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#EQUIPPABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Equippable extends BuildableDataComponent<Equippable, Equippable.Builder> {
+
+    /**
+     * Creates a new {@link Equippable.Builder} instance.
+     * @param slot The slot for the new equippable to be equippable in.
+     *
+     * @return a new builder
+     */
+    @Contract(value = "_ -> new", pure = true)
+    static Equippable.Builder equippable(final EquipmentSlot slot) {
+        return ItemComponentTypesBridge.bridge().equippable(slot);
+    }
+
+    /**
+     * Gets the equipment slot this item can be equipped in.
+     *
+     * @return the equipment slot
+     */
+    @Contract(pure = true)
+    EquipmentSlot slot();
+
+    /**
+     * Gets the equip sound key.
+     *
+     * @return the equip sound key
+     */
+    @Contract(pure = true)
+    Key equipSound();
+
+    /**
+     * Gets the model key if present.
+     *
+     * @return the model key or null
+     */
+    @Contract(pure = true)
+    @Nullable Key model();
+
+    /**
+     * Gets the camera overlay key if present.
+     *
+     * @return the camera overlay key or null
+     */
+    @Contract(pure = true)
+    @Nullable Key cameraOverlay();
+
+    /**
+     * Gets the set of allowed entities that can equip this item.
+     * May be null if all entities are allowed.
+     *
+     * @return the set of allowed entities
+     */
+    @Contract(pure = true)
+    @Nullable RegistryKeySet<EntityType> allowedEntities();
+
+    /**
+     * Checks if the item is dispensable.
+     *
+     * @return true if dispensable, false otherwise
+     */
+    @Contract(pure = true)
+    boolean dispensable();
+
+    /**
+     * Checks if the item is swappable.
+     *
+     * @return true if swappable, false otherwise
+     */
+    @Contract(pure = true)
+    boolean swappable();
+
+    /**
+     * Checks if the item takes damage when the wearer is hurt.
+     *
+     * @return true if it damages on hurt, false otherwise
+     */
+    @Contract(pure = true)
+    boolean damageOnHurt();
+
+    /**
+     * Builder for {@link Equippable}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<Equippable> {
+
+        /**
+         * Sets the equip sound key for this item.
+         *
+         * @param equipSound the equip sound key
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder equipSound(Key equipSound);
+
+        /**
+         * Sets the model key for this item.
+         *
+         * @param model the model key, nullable
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder model(@Nullable Key model);
+
+        /**
+         * Sets the camera overlay key for this item.
+         *
+         * @param cameraOverlay the camera overlay key, nullable
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder cameraOverlay(@Nullable Key cameraOverlay);
+
+        /**
+         * Sets the allowed entities that can equip this item.
+         *
+         * @param allowedEntities the set of allowed entity types, or null if any
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder allowedEntities(@Nullable RegistryKeySet<EntityType> allowedEntities);
+
+        /**
+         * Sets whether the item is dispensable.
+         *
+         * @param dispensable true if dispensable
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder dispensable(boolean dispensable);
+
+        /**
+         * Sets whether the item is swappable.
+         *
+         * @param swappable true if swappable
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder swappable(boolean swappable);
+
+        /**
+         * Sets whether the item takes damage when the wearer is hurt.
+         *
+         * @param damageOnHurt true if it damages on hurt
+         * @return the builder for chaining
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder damageOnHurt(boolean damageOnHurt);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Fireworks.java b/src/main/java/io/papermc/paper/datacomponent/item/Fireworks.java
new file mode 100644
index 0000000000000000000000000000000000000000..72aa1b4bda2693e0cd78d93449dda23bd1b74062
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Fireworks.java
@@ -0,0 +1,84 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.List;
+import org.bukkit.FireworkEffect;
+import org.checkerframework.common.value.qual.IntRange;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Stores all explosions crafted into a Firework Rocket, as well as flight duration.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#FIREWORKS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Fireworks {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static Fireworks fireworks(final List<FireworkEffect> effects, final int flightDuration) {
+        return fireworks().addEffects(effects).flightDuration(flightDuration).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static Fireworks.Builder fireworks() {
+        return ItemComponentTypesBridge.bridge().fireworks();
+    }
+
+    /**
+     * Lists the effects stored in this component.
+     *
+     * @return the effects
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<FireworkEffect> effects();
+
+    /**
+     * Number of gunpowder in this component.
+     *
+     * @return the flight duration
+     */
+    @Contract(pure = true)
+    @IntRange(from = 0, to = 255) int flightDuration();
+
+    /**
+     * Builder for {@link Fireworks}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<Fireworks> {
+
+        /**
+         * Sets the number of gunpowder used in this builder.
+         *
+         * @param duration duration
+         * @return the builder for chaining
+         * @see #flightDuration()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder flightDuration(@IntRange(from = 0, to = 255) int duration);
+
+        /**
+         * Adds an explosion to this builder.
+         *
+         * @param effect effect
+         * @return the builder for chaining
+         * @see #effects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffect(FireworkEffect effect);
+
+        /**
+         * Adds explosions to this builder.
+         *
+         * @param effects effects
+         * @return the builder for chaining
+         * @see #effects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addEffects(List<FireworkEffect> effects);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/FoodProperties.java b/src/main/java/io/papermc/paper/datacomponent/item/FoodProperties.java
new file mode 100644
index 0000000000000000000000000000000000000000..369208e15a0e7fc91a9505fef2097c4283445e4a
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/FoodProperties.java
@@ -0,0 +1,87 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.BuildableDataComponent;
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.checkerframework.checker.index.qual.NonNegative;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the food properties of an item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#FOOD
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface FoodProperties extends BuildableDataComponent<FoodProperties, FoodProperties.Builder> {
+
+    @Contract(value = "-> new", pure = true)
+    static FoodProperties.Builder food() {
+        return ItemComponentTypesBridge.bridge().food();
+    }
+
+    /**
+     * Number of food points to restore when eaten.
+     *
+     * @return the nutrition
+     */
+    @Contract(pure = true)
+    @NonNegative int nutrition();
+
+    /**
+     * Amount of saturation to restore when eaten.
+     *
+     * @return the saturation
+     */
+    @Contract(pure = true)
+    float saturation();
+
+    /**
+     * If {@code true}, this food can be eaten even if not hungry.
+     *
+     * @return can always be eaten
+     */
+    @Contract(pure = true)
+    boolean canAlwaysEat();
+
+    /**
+     * Builder for {@link FoodProperties}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<FoodProperties> {
+
+        /**
+         * Set if this food can always be eaten, even if the
+         * player is not hungry.
+         *
+         * @param canAlwaysEat true to allow always eating
+         * @return the builder for chaining
+         * @see #canAlwaysEat()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder canAlwaysEat(boolean canAlwaysEat);
+
+        /**
+         * Sets the saturation of the food.
+         *
+         * @param saturation the saturation
+         * @return the builder for chaining
+         * @see #saturation()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder saturation(float saturation);
+
+        /**
+         * Sets the nutrition of the food.
+         *
+         * @param nutrition the nutrition, must be non-negative
+         * @return the builder for chaining
+         * @see #nutrition()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder nutrition(@NonNegative int nutrition);
+
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemAdventurePredicate.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemAdventurePredicate.java
new file mode 100644
index 0000000000000000000000000000000000000000..f5061d1f349b35e5ec57d2d1c64eafb096141404
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemAdventurePredicate.java
@@ -0,0 +1,65 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.block.BlockPredicate;
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.List;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Controls which blocks a player in Adventure mode can do a certain action with this item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CAN_BREAK
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CAN_PLACE_ON
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemAdventurePredicate extends ShownInTooltip<ItemAdventurePredicate> {
+
+    @Contract(value = "_ -> new", pure = true)
+    static ItemAdventurePredicate itemAdventurePredicate(final List<BlockPredicate> predicates) {
+        return itemAdventurePredicate().addPredicates(predicates).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ItemAdventurePredicate.Builder itemAdventurePredicate() {
+        return ItemComponentTypesBridge.bridge().itemAdventurePredicate();
+    }
+
+    /**
+     * List of block predicates that control if the action is allowed.
+     *
+     * @return predicates
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<BlockPredicate> predicates();
+
+    /**
+     * Builder for {@link ItemAdventurePredicate}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<ItemAdventurePredicate> {
+        /**
+         * Adds a block predicate to this builder.
+         *
+         * @param predicate predicate
+         * @return the builder for chaining
+         * @see #predicates()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPredicate(BlockPredicate predicate);
+
+        /**
+         * Adds block predicates to this builder.
+         *
+         * @param predicates predicates
+         * @return the builder for chaining
+         * @see #predicates()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPredicates(List<BlockPredicate> predicates);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemArmorTrim.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemArmorTrim.java
new file mode 100644
index 0000000000000000000000000000000000000000..0309ae59ab7945ddfb5410930d161e2ce3d1878a
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemArmorTrim.java
@@ -0,0 +1,53 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.inventory.meta.trim.ArmorTrim;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the trims applied to an item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#TRIM
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemArmorTrim extends ShownInTooltip<ItemArmorTrim> {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static ItemArmorTrim itemArmorTrim(final ArmorTrim armorTrim, final boolean showInTooltip) {
+        return itemArmorTrim(armorTrim).showInTooltip(showInTooltip).build();
+    }
+
+    @Contract(value = "_ -> new", pure = true)
+    static ItemArmorTrim.Builder itemArmorTrim(final ArmorTrim armorTrim) {
+        return ItemComponentTypesBridge.bridge().itemArmorTrim(armorTrim);
+    }
+
+    /**
+     * Armor trim present on this item.
+     *
+     * @return trim
+     */
+    @Contract(pure = true)
+    ArmorTrim armorTrim();
+
+    /**
+     * Builder for {@link ItemArmorTrim}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<ItemArmorTrim> {
+
+        /**
+         * Sets the armor trim for this builder.
+         *
+         * @param armorTrim trim
+         * @return the builder for chaining
+         * @see #armorTrim()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder armorTrim(ArmorTrim armorTrim);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemAttributeModifiers.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemAttributeModifiers.java
new file mode 100644
index 0000000000000000000000000000000000000000..948505d38121d54df62e6a67d4597bc7d42c356f
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemAttributeModifiers.java
@@ -0,0 +1,98 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.List;
+import org.bukkit.attribute.Attribute;
+import org.bukkit.attribute.AttributeModifier;
+import org.bukkit.inventory.EquipmentSlotGroup;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds attribute modifiers applied to any item.
+ *
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#ATTRIBUTE_MODIFIERS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemAttributeModifiers extends ShownInTooltip<ItemAttributeModifiers> {
+
+    @Contract(value = "-> new", pure = true)
+    static ItemAttributeModifiers.Builder itemAttributes() {
+        return ItemComponentTypesBridge.bridge().modifiers();
+    }
+
+    /**
+     * Lists the attribute modifiers that are present on this item.
+     *
+     * @return modifiers
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Entry> modifiers();
+
+    /**
+     * Holds an attribute entry.
+     */
+    @ApiStatus.NonExtendable
+    interface Entry {
+
+        /**
+         * Gets the target attribute for the paired modifier.
+         *
+         * @return the attribute
+         */
+        @Contract(pure = true)
+        Attribute attribute();
+
+        /**
+         * The modifier for the paired attribute.
+         *
+         * @return the modifier
+         */
+        @Contract(pure = true)
+        AttributeModifier modifier();
+
+        /**
+         * Gets the slot group for this attribute.
+         *
+         * @return the slot group
+         */
+        default EquipmentSlotGroup getGroup() {
+            return this.modifier().getSlotGroup();
+        }
+    }
+
+    /**
+     * Builder for {@link ItemAttributeModifiers}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<ItemAttributeModifiers> {
+
+        /**
+         * Adds a modifier to this builder.
+         *
+         * @param attribute attribute
+         * @param modifier  modifier
+         * @return the builder for chaining
+         * @see #modifiers()
+         */
+        @Contract(value = "_, _, _ -> this", mutates = "this")
+        Builder addModifier(Attribute attribute, AttributeModifier modifier);
+
+        /**
+         * Adds a modifier to this builder.
+         *
+         * @param attribute          attribute
+         * @param modifier           modifier
+         * @param equipmentSlotGroup the slot group this modifier applies to (overrides any slot group in the modifier)
+         * @return the builder for chaining
+         * @see #modifiers()
+         */
+        @Contract(value = "_, _, _ -> this", mutates = "this")
+        Builder addModifier(Attribute attribute, AttributeModifier modifier, EquipmentSlotGroup equipmentSlotGroup);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemComponentTypesBridge.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemComponentTypesBridge.java
new file mode 100644
index 0000000000000000000000000000000000000000..1ce34642371a65590ce1ac74b402ccfc301671d7
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemComponentTypesBridge.java
@@ -0,0 +1,112 @@
+package io.papermc.paper.datacomponent.item;
+
+import com.destroystokyo.paper.profile.PlayerProfile;
+import io.papermc.paper.registry.set.RegistryKeySet;
+import io.papermc.paper.registry.tag.TagKey;
+import io.papermc.paper.text.Filtered;
+import java.util.Optional;
+import java.util.ServiceLoader;
+import net.kyori.adventure.key.Key;
+import net.kyori.adventure.util.TriState;
+import org.bukkit.JukeboxSong;
+import org.bukkit.block.BlockType;
+import org.bukkit.damage.DamageType;
+import org.bukkit.inventory.EquipmentSlot;
+import org.bukkit.inventory.ItemStack;
+import org.bukkit.inventory.ItemType;
+import org.bukkit.inventory.meta.trim.ArmorTrim;
+import org.bukkit.map.MapCursor;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+@NullMarked
+@ApiStatus.Internal
+interface ItemComponentTypesBridge {
+
+    Optional<ItemComponentTypesBridge> BRIDGE = ServiceLoader.load(ItemComponentTypesBridge.class).findFirst();
+
+    static ItemComponentTypesBridge bridge() {
+        return BRIDGE.orElseThrow();
+    }
+
+    ChargedProjectiles.Builder chargedProjectiles();
+
+    PotDecorations.Builder potDecorations();
+
+    Unbreakable.Builder unbreakable();
+
+    ItemLore.Builder lore();
+
+    ItemEnchantments.Builder enchantments();
+
+    ItemAttributeModifiers.Builder modifiers();
+
+    FoodProperties.Builder food();
+
+    DyedItemColor.Builder dyedItemColor();
+
+    PotionContents.Builder potionContents();
+
+    BundleContents.Builder bundleContents();
+
+    SuspiciousStewEffects.Builder suspiciousStewEffects();
+
+    MapItemColor.Builder mapItemColor();
+
+    MapDecorations.Builder mapDecorations();
+
+    MapDecorations.DecorationEntry decorationEntry(MapCursor.Type type, double x, double z, float rotation);
+
+    SeededContainerLoot.Builder seededContainerLoot(Key lootTableKey);
+
+    WrittenBookContent.Builder writtenBookContent(Filtered<String> title, String author);
+
+    WritableBookContent.Builder writeableBookContent();
+
+    ItemArmorTrim.Builder itemArmorTrim(ArmorTrim armorTrim);
+
+    LodestoneTracker.Builder lodestoneTracker();
+
+    Fireworks.Builder fireworks();
+
+    ResolvableProfile.Builder resolvableProfile();
+
+    ResolvableProfile resolvableProfile(PlayerProfile profile);
+
+    BannerPatternLayers.Builder bannerPatternLayers();
+
+    BlockItemDataProperties.Builder blockItemStateProperties();
+
+    ItemContainerContents.Builder itemContainerContents();
+
+    JukeboxPlayable.Builder jukeboxPlayable(JukeboxSong song);
+
+    Tool.Builder tool();
+
+    Tool.Rule rule(RegistryKeySet<BlockType> blocks, @Nullable Float speed, TriState correctForDrops);
+
+    ItemAdventurePredicate.Builder itemAdventurePredicate();
+
+    CustomModelData customModelData(int id);
+
+    MapId mapId(int id);
+
+    UseRemainder useRemainder(ItemStack itemStack);
+
+    Consumable.Builder consumable();
+
+    UseCooldown.Builder useCooldown(final float seconds);
+
+    DamageResistant damageResistant(TagKey<DamageType> types);
+
+    Enchantable enchantable(int level);
+
+    Repairable repairable(RegistryKeySet<ItemType> types);
+
+    Equippable.Builder equippable(EquipmentSlot slot);
+
+    DeathProtection.Builder deathProtection();
+
+    OminousBottleAmplifier ominousBottleAmplifier(int amplifier);
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemContainerContents.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemContainerContents.java
new file mode 100644
index 0000000000000000000000000000000000000000..7d1c973ba566752d7a85496327b1352d973f2218
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemContainerContents.java
@@ -0,0 +1,63 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Arrays;
+import java.util.List;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the contents of an item container.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CONTAINER
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemContainerContents {
+
+    @Contract(value = "_ -> new", pure = true)
+    static ItemContainerContents containerContents(final List<ItemStack> contents) {
+        return containerContents().addAll(contents).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ItemContainerContents.Builder containerContents() {
+        return ItemComponentTypesBridge.bridge().itemContainerContents();
+    }
+
+    /**
+     * Gets the contents of the container.
+     *
+     * @return the contents
+     */
+    @Contract(value = "-> new", pure = true)
+    @Unmodifiable List<ItemStack> contents();
+
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<ItemContainerContents> {
+
+        /**
+         * Adds an item stack to the container.
+         *
+         * @param stack the item stack
+         * @return the builder for chaining
+         * @see #contents()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder add(ItemStack stack);
+
+        /**
+         * Adds item stacks to the container.
+         *
+         * @param stacks the item stacks
+         * @return the builder for chaining
+         * @see #contents()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(List<ItemStack> stacks);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemEnchantments.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemEnchantments.java
new file mode 100644
index 0000000000000000000000000000000000000000..fca271ea198209bd48cd02f4476e89e5e3e9f396
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemEnchantments.java
@@ -0,0 +1,68 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Map;
+import org.bukkit.enchantments.Enchantment;
+import org.checkerframework.common.value.qual.IntRange;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Stores a list of enchantments and their levels on an item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#ENCHANTMENTS
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#STORED_ENCHANTMENTS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemEnchantments extends ShownInTooltip<ItemEnchantments> {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static ItemEnchantments itemEnchantments(final Map<Enchantment, @IntRange(from = 1, to = 255) Integer> enchantments, final boolean showInTooltip) {
+        return itemEnchantments().addAll(enchantments).showInTooltip(showInTooltip).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ItemEnchantments.Builder itemEnchantments() {
+        return ItemComponentTypesBridge.bridge().enchantments();
+    }
+
+    /**
+     * Enchantments currently present on this item.
+     *
+     * @return enchantments
+     */
+    @Contract(pure = true)
+    @Unmodifiable Map<Enchantment, @IntRange(from = 1, to = 255) Integer> enchantments();
+
+    /**
+     * Builder for {@link ItemEnchantments}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<ItemEnchantments> {
+
+        /**
+         * Adds an enchantment with the given level to this component.
+         *
+         * @param enchantment enchantment
+         * @param level level
+         * @return the builder for chaining
+         * @see #enchantments()
+         */
+        @Contract(value = "_, _ -> this", mutates = "this")
+        Builder add(Enchantment enchantment, @IntRange(from = 1, to = 255) int level);
+
+        /**
+         * Adds enchantments with the given level to this component.
+         *
+         * @param enchantments enchantments
+         * @return the builder for chaining
+         * @see #enchantments()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(Map<Enchantment, @IntRange(from = 1, to = 255) Integer> enchantments);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ItemLore.java b/src/main/java/io/papermc/paper/datacomponent/item/ItemLore.java
new file mode 100644
index 0000000000000000000000000000000000000000..3be62f6005e0343c3a6ebd04e3ee824e0b969113
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ItemLore.java
@@ -0,0 +1,84 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.List;
+import net.kyori.adventure.text.Component;
+import net.kyori.adventure.text.ComponentLike;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Additional lines to include in an item's tooltip.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#LORE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ItemLore {
+
+    @Contract(value = "_ -> new", pure = true)
+    static ItemLore lore(final List<? extends ComponentLike> lines) {
+        return lore().lines(lines).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ItemLore.Builder lore() {
+        return ItemComponentTypesBridge.bridge().lore();
+    }
+
+    /**
+     * Lists the components that are added to an item's tooltip.
+     *
+     * @return component list
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Component> lines();
+
+    /**
+     * Lists the styled components (example: italicized and purple) that are added to an item's tooltip.
+     *
+     * @return component list
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Component> styledLines();
+
+    /**
+     * Builder for {@link ItemLore}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<ItemLore> {
+
+        /**
+         * Sets the components of this lore.
+         *
+         * @param lines components
+         * @return the builder for chaining
+         * @see #lines()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder lines(List<? extends ComponentLike> lines);
+
+        /**
+         * Adds a component to the lore.
+         *
+         * @param line component
+         * @return the builder for chaining
+         * @see #lines()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addLine(ComponentLike line);
+
+        /**
+         * Adds components to the lore.
+         *
+         * @param lines components
+         * @return the builder for chaining
+         * @see #lines()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addLines(List<? extends ComponentLike> lines);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/JukeboxPlayable.java b/src/main/java/io/papermc/paper/datacomponent/item/JukeboxPlayable.java
new file mode 100644
index 0000000000000000000000000000000000000000..c59942df7101c7630eabeb247b9690b9c4c76da4
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/JukeboxPlayable.java
@@ -0,0 +1,43 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.JukeboxSong;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the jukebox song for an item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#JUKEBOX_PLAYABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface JukeboxPlayable extends ShownInTooltip<JukeboxPlayable> {
+
+    @Contract(value = "_ -> new", pure = true)
+    static JukeboxPlayable.Builder jukeboxPlayable(final JukeboxSong song) {
+        return ItemComponentTypesBridge.bridge().jukeboxPlayable(song);
+    }
+
+    @Contract(pure = true)
+    JukeboxSong jukeboxSong();
+
+    /**
+     * Builder for {@link JukeboxPlayable}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<JukeboxPlayable.Builder>, DataComponentBuilder<JukeboxPlayable> {
+
+        /**
+         * Sets the jukebox song.
+         *
+         * @param song the song
+         * @return the builder for chaining
+         * @see #jukeboxSong()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder jukeboxSong(JukeboxSong song);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/LodestoneTracker.java b/src/main/java/io/papermc/paper/datacomponent/item/LodestoneTracker.java
new file mode 100644
index 0000000000000000000000000000000000000000..b919672ceea74ae09324653847b30fde293054d8
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/LodestoneTracker.java
@@ -0,0 +1,72 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.Location;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * If present, specifies the target Lodestone that a Compass should point towards.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#LODESTONE_TRACKER
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface LodestoneTracker {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static LodestoneTracker lodestoneTracker(final @Nullable Location location, final boolean tracked) {
+        return lodestoneTracker().location(location).tracked(tracked).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static LodestoneTracker.Builder lodestoneTracker() {
+        return ItemComponentTypesBridge.bridge().lodestoneTracker();
+    }
+
+    /**
+     * The location that the compass should point towards.
+     *
+     * @return location
+     */
+    @Contract(value = "-> new", pure = true)
+    @Nullable Location location();
+
+    /**
+     * If {@code true}, when the Lodestone at the target position is removed, the component will be removed.
+     *
+     * @return tracked
+     */
+    @Contract(pure = true)
+    boolean tracked();
+
+    /**
+     * Builder for {@link LodestoneTracker}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<LodestoneTracker> {
+
+        /**
+         * Sets the location to point towards for this builder.
+         *
+         * @param location location to point towards
+         * @return the builder for chaining
+         * @see #location()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder location(@Nullable Location location);
+
+        /**
+         * Sets if this location lodestone is tracked for this builder.
+         *
+         * @param tracked is tracked
+         * @return the builder for chaining
+         * @see #tracked()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder tracked(boolean tracked);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/MapDecorations.java b/src/main/java/io/papermc/paper/datacomponent/item/MapDecorations.java
new file mode 100644
index 0000000000000000000000000000000000000000..1e611f1f918c33f8d89ad23cf2fc44a127af233c
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/MapDecorations.java
@@ -0,0 +1,121 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Map;
+import org.bukkit.map.MapCursor;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Holds a list of markers to be placed on a Filled Map (used for Explorer Maps).
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#MAP_DECORATIONS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface MapDecorations {
+
+    @Contract(value = "_ -> new", pure = true)
+    static MapDecorations mapDecorations(final Map<String, DecorationEntry> entries) {
+        return mapDecorations().putAll(entries).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static MapDecorations.Builder mapDecorations() {
+        return ItemComponentTypesBridge.bridge().mapDecorations();
+    }
+
+    @Contract(value = "_, _, _, _ -> new", pure = true)
+    static DecorationEntry decorationEntry(final MapCursor.Type type, final double x, final double z, final float rotation) {
+        return ItemComponentTypesBridge.bridge().decorationEntry(type, x, z, rotation);
+    }
+
+    /**
+     * Gets the decoration entry with the given id.
+     *
+     * @param id id
+     * @return decoration entry, or {@code null} if not present
+     */
+    @Contract(pure = true)
+    @Nullable DecorationEntry decoration(String id);
+
+    /**
+     * Gets the decoration entries.
+     *
+     * @return the decoration entries
+     */
+    @Contract(pure = true)
+    @Unmodifiable Map<String, DecorationEntry> decorations();
+
+    /**
+     * Decoration present on the map.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface DecorationEntry {
+
+        /**
+         * Type of decoration.
+         *
+         * @return type
+         */
+        @Contract(pure = true)
+        MapCursor.Type type();
+
+        /**
+         * X world coordinate of the decoration.
+         *
+         * @return x coordinate
+         */
+        @Contract(pure = true)
+        double x();
+
+        /**
+         * Z world coordinate of the decoration.
+         *
+         * @return z coordinate
+         */
+        @Contract(pure = true)
+        double z();
+
+        /**
+         * Clockwise rotation from north in degrees.
+         *
+         * @return rotation
+         */
+        @Contract(pure = true)
+        float rotation();
+    }
+
+    /**
+     * Builder for {@link MapDecorations}.
+     */
+    @ApiStatus.NonExtendable
+    @ApiStatus.Experimental
+    interface Builder extends DataComponentBuilder<MapDecorations> {
+
+        /**
+         * Puts the decoration with the given id in this builder.
+         *
+         * @param id id
+         * @param entry decoration
+         * @return the builder for chaining
+         * @see #decorations()
+         */
+        @Contract(value = "_, _ -> this", mutates = "this")
+        MapDecorations.Builder put(String id, DecorationEntry entry);
+
+        /**
+         * Puts all the decoration with the given id in this builder.
+         *
+         * @param entries decorations
+         * @return the builder for chaining
+         * @see #decorations()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        MapDecorations.Builder putAll(Map<String, DecorationEntry> entries);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/MapId.java b/src/main/java/io/papermc/paper/datacomponent/item/MapId.java
new file mode 100644
index 0000000000000000000000000000000000000000..045bfe0ce5080b57a40be03a65b1a2aaf9089120
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/MapId.java
@@ -0,0 +1,28 @@
+package io.papermc.paper.datacomponent.item;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * References the shared map state holding map contents and markers for a Filled Map.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#MAP_ID
+ */
+@NullMarked
+@ApiStatus.NonExtendable
+@ApiStatus.Experimental
+public interface MapId {
+
+    @Contract(value = "_ -> new", pure = true)
+    static MapId mapId(final int id) {
+        return ItemComponentTypesBridge.bridge().mapId(id);
+    }
+
+    /**
+     * The map id.
+     *
+     * @return id
+     */
+    @Contract(pure = true)
+    int id();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/MapItemColor.java b/src/main/java/io/papermc/paper/datacomponent/item/MapItemColor.java
new file mode 100644
index 0000000000000000000000000000000000000000..87845d19a25ed2ae79b868fcfe40b88a2dc83f97
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/MapItemColor.java
@@ -0,0 +1,43 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.Color;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Represents the tint of the decorations on the Filled Map item.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#MAP_COLOR
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface MapItemColor {
+
+    @Contract(value = "-> new", pure = true)
+    static MapItemColor.Builder mapItemColor() {
+        return ItemComponentTypesBridge.bridge().mapItemColor();
+    }
+
+    /**
+     * The tint to apply.
+     *
+     * @return color
+     */
+    Color color();
+
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<MapItemColor> {
+
+        /**
+         * Sets the tint color of this map.
+         *
+         * @param color tint color
+         * @return the builder for chaining
+         * @see #color()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder color(Color color);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/OminousBottleAmplifier.java b/src/main/java/io/papermc/paper/datacomponent/item/OminousBottleAmplifier.java
new file mode 100644
index 0000000000000000000000000000000000000000..4f16e08f04c2cea24f3cb132ff21f4bdd6b70582
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/OminousBottleAmplifier.java
@@ -0,0 +1,29 @@
+package io.papermc.paper.datacomponent.item;
+
+import org.checkerframework.common.value.qual.IntRange;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the ominous bottle amplifier.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#OMINOUS_BOTTLE_AMPLIFIER
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface OminousBottleAmplifier {
+
+    @Contract(value = "_ -> new", pure = true)
+    static OminousBottleAmplifier amplifier(final @IntRange(from = 0, to = 4) int amplifier) {
+        return ItemComponentTypesBridge.bridge().ominousBottleAmplifier(amplifier);
+    }
+
+    /**
+     * Gets the bottle amplifier.
+     *
+     * @return the amplifier
+     */
+    @Contract(pure = true)
+    @IntRange(from = 0, to = 4) int amplifier();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/PotDecorations.java b/src/main/java/io/papermc/paper/datacomponent/item/PotDecorations.java
new file mode 100644
index 0000000000000000000000000000000000000000..6da78b8735a6cadd1282fa2fafd8b0f74f087fb4
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/PotDecorations.java
@@ -0,0 +1,109 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.inventory.ItemType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+// CONTRIBUTORS: LEAVE THIS AS ITEM TYPE!!!
+/**
+ * Holds the item types for the decorations on a flower pot.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#POT_DECORATIONS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface PotDecorations {
+
+    @Contract(value = "_, _, _, _ -> new", pure = true)
+    static PotDecorations potDecorations(final @Nullable ItemType back, final @Nullable ItemType left, final @Nullable ItemType right, final @Nullable ItemType front) {
+        return potDecorations().back(back).left(left).right(right).front(front).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static PotDecorations.Builder potDecorations() {
+        return ItemComponentTypesBridge.bridge().potDecorations();
+    }
+
+    /**
+     * Get the item type for the back.
+     *
+     * @return the back item type.
+     */
+    @Contract(pure = true)
+    @Nullable ItemType back();
+
+    /**
+     * Get the item type for the left.
+     *
+     * @return the left item type.
+     */
+    @Contract(pure = true)
+    @Nullable ItemType left();
+
+    /**
+     * Get the item type for the right.
+     *
+     * @return the right item type.
+     */
+    @Contract(pure = true)
+    @Nullable ItemType right();
+
+    /**
+     * Get the item type for the front.
+     *
+     * @return the front item type.
+     */
+    @Contract(pure = true)
+    @Nullable ItemType front();
+
+    /**
+     * Builder for {@link PotDecorations}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<PotDecorations> {
+
+        /**
+         * Set the {@link ItemType} for the back.
+         *
+         * @param back item for the back
+         * @return the builder for chaining
+         * @see #back()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder back(@Nullable ItemType back);
+
+        /**
+         * Set the {@link ItemType} for the left.
+         *
+         * @param left item for the left
+         * @return the builder for chaining
+         * @see #left()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder left(@Nullable ItemType left);
+
+        /**
+         * Set the {@link ItemType} for the right.
+         *
+         * @param right item for the right
+         * @return the builder for chaining
+         * @see #right()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder right(@Nullable ItemType right);
+
+        /**
+         * Set the {@link ItemType} for the front.
+         *
+         * @param front item for the front
+         * @return the builder for chaining
+         * @see #front()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder front(@Nullable ItemType front);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/PotionContents.java b/src/main/java/io/papermc/paper/datacomponent/item/PotionContents.java
new file mode 100644
index 0000000000000000000000000000000000000000..7cf05b382319064d45433a7e2678f65c25d11b14
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/PotionContents.java
@@ -0,0 +1,120 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.List;
+import org.bukkit.Color;
+import org.bukkit.potion.PotionEffect;
+import org.bukkit.potion.PotionType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Holds the contents of a potion (Potion, Splash Potion, Lingering Potion), or potion applied to a Tipped Arrow.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#POTION_CONTENTS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface PotionContents {
+
+    @Contract(value = "-> new", pure = true)
+    static PotionContents.Builder potionContents() {
+        return ItemComponentTypesBridge.bridge().potionContents();
+    }
+
+    /**
+     * The potion type in this item: the item will inherit all effects from this.
+     *
+     * @return potion type, or {@code null} if not present
+     */
+    @Contract(pure = true)
+    @Nullable PotionType potion();
+
+    /**
+     * Overrides the visual color of the potion.
+     *
+     * @return color override, or {@code null} if not present
+     * @apiNote alpha channel of the color is only relevant
+     * for Tipped Arrow
+     */
+    @Contract(pure = true)
+    @Nullable Color customColor();
+
+    /**
+     * Additional list of effect instances that this item should apply.
+     *
+     * @return effects
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<PotionEffect> customEffects();
+
+    /**
+     * Suffix to the translation key of the potion item.
+     *
+     * @return translation key suffix, or {@code null} if not present
+     * @apiNote This is used in the display of tipped arrow and potion items.
+     */
+    @Contract(pure = true)
+    @Nullable String customName();
+
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<PotionContents> {
+
+        /**
+         * Sets the potion type for this builder.
+         *
+         * @param type builder
+         * @return the builder for chaining
+         * @see #potion()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder potion(@Nullable PotionType type);
+
+        /**
+         * Sets the color override for this builder.
+         *
+         * @param color color
+         * @return the builder for chaining
+         * @see #customColor()
+         * @apiNote alpha channel of the color is supported only for Tipped Arrow
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder customColor(@Nullable Color color);
+
+        /**
+         * Sets the suffix to the translation key of the potion item.
+         *
+         * @param name name
+         * @return the builder for chaining
+         * @see #customName()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder customName(@Nullable String name);
+
+        /**
+         * Adds a custom effect instance to this builder.
+         *
+         * @param effect effect
+         * @see #customEffects()
+         * @return the builder for chaining
+         * @see #customEffects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addCustomEffect(PotionEffect effect);
+
+        /**
+         * Adds custom effect instances to this builder.
+         *
+         * @param effects effects
+         * @see #customEffects()
+         * @return the builder for chaining
+         * @see #customEffects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addCustomEffects(List<PotionEffect> effects);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Repairable.java b/src/main/java/io/papermc/paper/datacomponent/item/Repairable.java
new file mode 100644
index 0000000000000000000000000000000000000000..ff84d9123aab0ad2f93b397e20a37f21894547a3
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Repairable.java
@@ -0,0 +1,30 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.registry.set.RegistryKeySet;
+import org.bukkit.inventory.ItemType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds if this item is repairable, and what item types it can be repaired with.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#REPAIRABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Repairable {
+
+    @Contract(value = "_ -> new", pure = true)
+    static Repairable repairable(final RegistryKeySet<ItemType> types) {
+        return ItemComponentTypesBridge.bridge().repairable(types);
+    }
+
+    /**
+     * The types that this item is repairable to.
+     *
+     * @return item
+     */
+    @Contract(value = "-> new", pure = true)
+    RegistryKeySet<ItemType> types();
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ResolvableProfile.java b/src/main/java/io/papermc/paper/datacomponent/item/ResolvableProfile.java
new file mode 100644
index 0000000000000000000000000000000000000000..dc6cd191553e7ca5b6c5768f594924e4c39fcbbe
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ResolvableProfile.java
@@ -0,0 +1,123 @@
+package io.papermc.paper.datacomponent.item;
+
+import com.destroystokyo.paper.profile.PlayerProfile;
+import com.destroystokyo.paper.profile.ProfileProperty;
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import java.util.Collection;
+import java.util.UUID;
+import java.util.concurrent.CompletableFuture;
+import org.intellij.lang.annotations.Pattern;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Holds player profile data that can be resolved to a {@link PlayerProfile}.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#PROFILE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ResolvableProfile {
+
+    @Contract(value = "_ -> new", pure = true)
+    static ResolvableProfile resolvableProfile(final PlayerProfile profile) {
+        return ItemComponentTypesBridge.bridge().resolvableProfile(profile);
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static ResolvableProfile.Builder resolvableProfile() {
+        return ItemComponentTypesBridge.bridge().resolvableProfile();
+    }
+
+    @Contract(pure = true)
+    @Nullable UUID uuid();
+
+    @Contract(pure = true)
+    @Nullable String name();
+
+    @Contract(pure = true)
+    @Unmodifiable Collection<ProfileProperty> properties();
+
+    /**
+     * Produces an updated player profile based on this.
+     * <p>
+     * This tries to produce a completed profile by filling in missing
+     * properties (name, unique id, textures, etc.), and updates existing
+     * properties (e.g. name, textures, etc.) to their official and up-to-date
+     * values. This operation does not alter the current profile, but produces a
+     * new updated {@link PlayerProfile}.
+     * <p>
+     * If no player exists for the unique id or name of this profile, this
+     * operation yields a profile that is equal to the current profile, which
+     * might not be complete.
+     * <p>
+     * This is an asynchronous operation: Updating the profile can result in an
+     * outgoing connection in another thread in order to fetch the latest
+     * profile properties. The returned {@link CompletableFuture} will be
+     * completed once the updated profile is available. In order to not block
+     * the server's main thread, you should not wait for the result of the
+     * returned CompletableFuture on the server's main thread. Instead, if you
+     * want to do something with the updated player profile on the server's main
+     * thread once it is available, you could do something like this:
+     * <pre>
+     * profile.resolve().thenAcceptAsync(updatedProfile -> {
+     *     // Do something with the updated profile:
+     *     // ...
+     * }, runnable -> Bukkit.getScheduler().runTask(plugin, runnable));
+     * </pre>
+     */
+    @Contract(pure = true)
+    CompletableFuture<PlayerProfile> resolve();
+
+    /**
+     * Builder for {@link ResolvableProfile}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<ResolvableProfile> {
+
+        /**
+         * Sets the name for this profile. Must be 16-or-less
+         * characters and not contain invalid characters.
+         *
+         * @param name the name
+         * @return the builder for chaining
+         * @see #name()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder name(@Pattern("^[!-~]{0,16}$") @Nullable String name);
+
+        /**
+         * Sets the UUID for this profile.
+         *
+         * @param uuid the UUID
+         * @return the builder for chaining
+         * @see #uuid()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder uuid(@Nullable UUID uuid);
+
+        /**
+         * Adds a property to this profile.
+         *
+         * @param property the property
+         * @return the builder for chaining
+         * @see #properties()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addProperty(ProfileProperty property);
+
+        /**
+         * Adds properties to this profile.
+         *
+         * @param properties the properties
+         * @return the builder for chaining
+         * @see #properties()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addProperties(Collection<ProfileProperty> properties);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/SeededContainerLoot.java b/src/main/java/io/papermc/paper/datacomponent/item/SeededContainerLoot.java
new file mode 100644
index 0000000000000000000000000000000000000000..f79af65e8f3f8ffbb9be1cf1c6b537cd1e2b1031
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/SeededContainerLoot.java
@@ -0,0 +1,71 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import net.kyori.adventure.key.Key;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the loot table and seed for a container.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#CONTAINER_LOOT
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface SeededContainerLoot {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static SeededContainerLoot seededContainerLoot(final Key lootTableKey, final long seed) {
+        return SeededContainerLoot.seededContainerLoot(lootTableKey).seed(seed).build();
+    }
+
+    @Contract(value = "_ -> new", pure = true)
+    static SeededContainerLoot.Builder seededContainerLoot(final Key lootTableKey) {
+        return ItemComponentTypesBridge.bridge().seededContainerLoot(lootTableKey);
+    }
+
+    /**
+     * Gets the loot table key.
+     *
+     * @return the loot table key
+     */
+    @Contract(pure = true)
+    Key lootTable();
+
+    /**
+     * Gets the loot table seed.
+     *
+     * @return the seed
+     */
+    @Contract(pure = true)
+    long seed();
+
+    /**
+     * Builder for {@link SeededContainerLoot}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<SeededContainerLoot> {
+
+        /**
+         * Sets the loot table key.
+         *
+         * @param key the loot table key
+         * @return the builder for chaining
+         * @see #lootTable()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder lootTable(Key key);
+
+        /**
+         * Sets the loot table seed.
+         *
+         * @param seed the seed
+         * @return the builder for chaining
+         * @see #seed()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder seed(long seed);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/ShownInTooltip.java b/src/main/java/io/papermc/paper/datacomponent/item/ShownInTooltip.java
new file mode 100644
index 0000000000000000000000000000000000000000..7e058aebcbd768517f6db51540598721cdae4425
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/ShownInTooltip.java
@@ -0,0 +1,52 @@
+package io.papermc.paper.datacomponent.item;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the state of whether a data component should be shown
+ * in an item's tooltip.
+ * @param <T> the data component type
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ShownInTooltip<T> {
+
+    /**
+     * Gets if the data component should be shown in the item's tooltip.
+     *
+     * @return {@code true} to show in the tooltip
+     */
+    @Contract(pure = true)
+    boolean showInTooltip();
+
+    /**
+     * Returns a copy of this data component with the specified
+     * show-in-tooltip state.
+     * @param showInTooltip {@code true} to show in the tooltip
+     * @return the new data component
+     */
+    @Contract(value = "_ -> new", pure = true)
+    T showInTooltip(boolean showInTooltip);
+
+    /**
+     * A builder for creating a {@link ShownInTooltip} data component.
+     * @param <B> builder type
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder<B> {
+
+        /**
+         * Sets if the data component should be shown in the item's tooltip.
+         *
+         * @param showInTooltip {@code true} to show in the tooltip
+         * @return the builder for chaining
+         * @see #showInTooltip()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        B showInTooltip(boolean showInTooltip);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/SuspiciousStewEffects.java b/src/main/java/io/papermc/paper/datacomponent/item/SuspiciousStewEffects.java
new file mode 100644
index 0000000000000000000000000000000000000000..422bb5ccc42b94b60fba6714e9e6fb8aced6eb0c
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/SuspiciousStewEffects.java
@@ -0,0 +1,67 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.potion.SuspiciousEffectEntry;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the effects that will be applied when consuming Suspicious Stew.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#SUSPICIOUS_STEW_EFFECTS
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface SuspiciousStewEffects {
+
+    @Contract(value = "_ -> new", pure = true)
+    static SuspiciousStewEffects suspiciousStewEffects(final Collection<SuspiciousEffectEntry> effects) {
+        return suspiciousStewEffects().addAll(effects).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static SuspiciousStewEffects.Builder suspiciousStewEffects() {
+        return ItemComponentTypesBridge.bridge().suspiciousStewEffects();
+    }
+
+    /**
+     * Effects that will be applied when consuming Suspicious Stew.
+     *
+     * @return effects
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<SuspiciousEffectEntry> effects();
+
+    /**
+     * Builder for {@link SuspiciousStewEffects}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<SuspiciousStewEffects> {
+
+        /**
+         * Adds an effect applied to this builder.
+         *
+         * @param entry effect
+         * @return the builder for chaining
+         * @see #effects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder add(SuspiciousEffectEntry entry);
+
+        /**
+         * Adds effects applied to this builder.
+         *
+         * @param entries effect
+         * @return the builder for chaining
+         * @see #effects()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addAll(Collection<SuspiciousEffectEntry> entries);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Tool.java b/src/main/java/io/papermc/paper/datacomponent/item/Tool.java
new file mode 100644
index 0000000000000000000000000000000000000000..4e87feb83204266e1fefdafe7b7e5ac53da3160e
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Tool.java
@@ -0,0 +1,149 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.registry.set.RegistryKeySet;
+import java.util.Collection;
+import java.util.List;
+import net.kyori.adventure.util.TriState;
+import org.bukkit.block.BlockType;
+import org.checkerframework.checker.index.qual.NonNegative;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Controls the behavior of the item as a tool.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#TOOL
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Tool {
+
+    @Contract(value = "-> new", pure = true)
+    static Tool.Builder tool() {
+        return ItemComponentTypesBridge.bridge().tool();
+    }
+
+    /**
+     * Creates a mining rule that specifies how an item interacts with certain block types.
+     *
+     * <p>This method allows you to define a rule for a set of block types, optionally setting a custom mining speed
+     * and determining whether the item should correct for drops when mining these blocks.</p>
+     *
+     * @param blocks          The set of block types this rule applies to.
+     * @param speed           The custom mining speed multiplier for these blocks. If {@code null}, the default speed is used.
+     * @param correctForDrops A {@link TriState} indicating how to handle item drops:
+     *                        <ul>
+     *                          <li>{@link TriState#TRUE} - Items will be dropped.</li>
+     *                          <li>{@link TriState#FALSE} - Items will not be dropped.</li>
+     *                          <li>{@link TriState#NOT_SET} - The default drop behavior is used.</li>
+     *                        </ul>
+     * @return A new {@link Rule} instance representing the mining rule.
+     */
+    static Rule rule(final RegistryKeySet<BlockType> blocks, final @Nullable Float speed, final TriState correctForDrops) {
+        return ItemComponentTypesBridge.bridge().rule(blocks, speed, correctForDrops);
+    }
+
+    /**
+     * Mining speed to use if no rules match and don't override mining speed.
+     *
+     * @return default mining speed
+     */
+    @Contract(pure = true)
+    float defaultMiningSpeed();
+
+    /**
+     * Amount of durability to remove each time a block is mined with this tool.
+     *
+     * @return durability
+     */
+    @Contract(pure = true)
+    @NonNegative int damagePerBlock();
+
+    /**
+     * List of rule entries.
+     *
+     * @return rules
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Tool.Rule> rules();
+
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Rule {
+
+        /**
+         * Blocks to match.
+         *
+         * @return blocks
+         */
+        RegistryKeySet<BlockType> blocks();
+
+        /**
+         * Overrides the mining speed if present and matched.
+         * <p>
+         * {@code true} will cause the block to mine at its most efficient speed, and drop items if the targeted block requires that.
+         *
+         * @return speed override
+         */
+        @Nullable Float speed();
+
+        /**
+         * Overrides whether this tool is considered 'correct' if present and matched.
+         *
+         * @return a tri-state
+         */
+        TriState correctForDrops();
+    }
+
+    /**
+     * Builder for {@link Tool}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<Tool> {
+
+        /**
+         * Controls the amount of durability to remove each time a block is mined with this tool.
+         *
+         * @param damage durability to remove
+         * @return the builder for chaining
+         * @see #damagePerBlock()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder damagePerBlock(@NonNegative int damage);
+
+        /**
+         * Controls mining speed to use if no rules match and don't override mining speed.
+         *
+         * @param miningSpeed mining speed
+         * @return the builder for chaining
+         * @see #defaultMiningSpeed()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder defaultMiningSpeed(float miningSpeed);
+
+        /**
+         * Adds a rule to the tool that controls the breaking speed / damage per block if matched.
+         *
+         * @param rule rule
+         * @return the builder for chaining
+         * @see #rules()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addRule(Rule rule);
+
+        /**
+         * Adds rules to the tool that control the breaking speed / damage per block if matched.
+         *
+         * @param rules rules
+         * @return the builder for chaining
+         * @see #rules()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addRules(Collection<Rule> rules);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/Unbreakable.java b/src/main/java/io/papermc/paper/datacomponent/item/Unbreakable.java
new file mode 100644
index 0000000000000000000000000000000000000000..498eb479dce406d2b0b470b327eac8279a0d98bc
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/Unbreakable.java
@@ -0,0 +1,34 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * If set, the item will not lose any durability when used.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#UNBREAKABLE
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface Unbreakable extends ShownInTooltip<Unbreakable> {
+
+    @Contract(value = "_ -> new", pure = true)
+    static Unbreakable unbreakable(final boolean showInTooltip) {
+        return unbreakable().showInTooltip(showInTooltip).build();
+    }
+
+    @Contract(value = "-> new", pure = true)
+    static Unbreakable.Builder unbreakable() {
+        return ItemComponentTypesBridge.bridge().unbreakable();
+    }
+
+    /**
+     * Builder for {@link Unbreakable}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends ShownInTooltip.Builder<Builder>, DataComponentBuilder<Unbreakable> {
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/UseCooldown.java b/src/main/java/io/papermc/paper/datacomponent/item/UseCooldown.java
new file mode 100644
index 0000000000000000000000000000000000000000..57fc55ad1def2bb14fc0a95ee3c0c157b0ac53fb
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/UseCooldown.java
@@ -0,0 +1,65 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import net.kyori.adventure.key.Key;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Holds the contents of cooldown information when an item is used.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#USE_COOLDOWN
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface UseCooldown {
+
+    /**
+     * Creates a new builder for use cooldown.
+     *
+     * @param seconds the duration in seconds; must be positive
+     * @return builder
+     */
+    @Contract(value = "_ -> new", pure = true)
+    static UseCooldown.Builder useCooldown(final float seconds) {
+        return ItemComponentTypesBridge.bridge().useCooldown(seconds);
+    }
+
+    /**
+     * The amount of seconds the cooldown will be active for.
+     *
+     * @return cooldown seconds
+     */
+    @Contract(pure = true)
+    float seconds();
+
+    /**
+     * The unique resource location to identify this cooldown group.
+     * <p>
+     * This allows items to share cooldowns with other items in the same cooldown group, if present.
+     *
+     * @return cooldown group, or null if not present
+     */
+    @Contract(pure = true)
+    @Nullable Key cooldownGroup();
+
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<UseCooldown> {
+
+        /**
+         * Sets a unique resource location for this cooldown group.
+         * <p>
+         * This allows items to share cooldowns with other items in the same cooldown group.
+         * </p>
+         *
+         * @param key the unique resource location; can be null
+         * @return the builder for chaining
+         * @see #cooldownGroup()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder cooldownGroup(@Nullable Key key);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/UseRemainder.java b/src/main/java/io/papermc/paper/datacomponent/item/UseRemainder.java
new file mode 100644
index 0000000000000000000000000000000000000000..50e42e073311332142980828d0beec1828570512
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/UseRemainder.java
@@ -0,0 +1,31 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the contents of item transformation information when an item is used.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#USE_REMAINDER
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface UseRemainder {
+
+    @Contract(value = "_ -> new", pure = true)
+    static UseRemainder useRemainder(final ItemStack itemStack) {
+        return ItemComponentTypesBridge.bridge().useRemainder(itemStack);
+    }
+
+    /**
+     * The item that the item that is consumed is transformed into.
+     *
+     * @return item
+     */
+    @Contract(value = "-> new", pure = true)
+    ItemStack transformInto();
+
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/WritableBookContent.java b/src/main/java/io/papermc/paper/datacomponent/item/WritableBookContent.java
new file mode 100644
index 0000000000000000000000000000000000000000..828d3bb1c763e0f3c89a73d6b70d1f006258644f
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/WritableBookContent.java
@@ -0,0 +1,80 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.text.Filtered;
+import java.util.List;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the pages for a writable book.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#WRITABLE_BOOK_CONTENT
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface WritableBookContent {
+
+    @Contract(value = "-> new", pure = true)
+    static WritableBookContent.Builder writeableBookContent() {
+        return ItemComponentTypesBridge.bridge().writeableBookContent();
+    }
+
+    /**
+     * Holds the pages that can be written to for this component.
+     *
+     * @return pages, as filtered objects
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Filtered<String>> pages();
+
+    /**
+     * Builder for {@link WritableBookContent}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<WritableBookContent> {
+
+        /**
+         * Adds a page that can be written to for this builder.
+         *
+         * @param page page
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPage(String page);
+
+        /**
+         * Adds pages that can be written to for this builder.
+         *
+         * @param pages pages
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPages(List<String> pages);
+
+        /**
+         * Adds a filterable page that can be written to for this builder.
+         *
+         * @param page page
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addFilteredPage(Filtered<String> page);
+
+        /**
+         * Adds filterable pages that can be written to for this builder.
+         *
+         * @param pages pages
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addFilteredPages(List<Filtered<String>> pages);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/WrittenBookContent.java b/src/main/java/io/papermc/paper/datacomponent/item/WrittenBookContent.java
new file mode 100644
index 0000000000000000000000000000000000000000..979bc05009b84b6fcdb59938cceace351e61c78b
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/WrittenBookContent.java
@@ -0,0 +1,172 @@
+package io.papermc.paper.datacomponent.item;
+
+import io.papermc.paper.datacomponent.DataComponentBuilder;
+import io.papermc.paper.text.Filtered;
+import java.util.List;
+import net.kyori.adventure.text.Component;
+import net.kyori.adventure.text.ComponentLike;
+import org.checkerframework.common.value.qual.IntRange;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jetbrains.annotations.Unmodifiable;
+import org.jspecify.annotations.NullMarked;
+
+/**
+ * Holds the contents and metadata of a Written Book.
+ * @see io.papermc.paper.datacomponent.DataComponentTypes#WRITTEN_BOOK_CONTENT
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface WrittenBookContent {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static WrittenBookContent.Builder writtenBookContent(final String title, final String author) {
+        return writtenBookContent(Filtered.of(title, null), author);
+    }
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static WrittenBookContent.Builder writtenBookContent(final Filtered<String> title, final String author) {
+        return ItemComponentTypesBridge.bridge().writtenBookContent(title, author);
+    }
+
+    /**
+     * Title of this book.
+     *
+     * @return title
+     */
+    @Contract(pure = true)
+    Filtered<String> title();
+
+    /**
+     * Player name of the author of this book.
+     *
+     * @return author
+     */
+    @Contract(pure = true)
+    String author();
+
+    /**
+     * The number of times this book has been copied (0 = original).
+     *
+     * @return generation
+     */
+    @Contract(pure = true)
+    @IntRange(from = 0, to = 3) int generation();
+
+    /**
+     * Gets the pages of this book.
+     *
+     * @return pages
+     */
+    @Contract(pure = true)
+    @Unmodifiable List<Filtered<Component>> pages();
+
+    /**
+     * If the chat components in this book have already been resolved (entity selectors, scores substituted).
+     * If {@code false}, will be resolved when opened by a player.
+     *
+     * @return resolved
+     */
+    @Contract(pure = true)
+    boolean resolved();
+
+    /**
+     * Builder for {@link WrittenBookContent}.
+     */
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface Builder extends DataComponentBuilder<WrittenBookContent> {
+
+        /**
+         * Sets the title of this book.
+         *
+         * @param title the title
+         * @return the builder for chaining
+         * @see #title()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder title(String title);
+
+        /**
+         * Sets the filterable title of this book.
+         *
+         * @param title the title
+         * @return the builder for chaining
+         * @see #title()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder filteredTitle(Filtered<String> title);
+
+        /**
+         * Sets the author of this book.
+         *
+         * @param author the author
+         * @return the builder for chaining
+         * @see #author()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder author(String author);
+
+        /**
+         * Sets the generation of this book.
+         *
+         * @param generation the generation, [0-3]
+         * @return the builder for chaining
+         * @see #generation()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder generation(@IntRange(from = 0, to = 3) int generation);
+
+        /**
+         * Sets if the chat components in this book have already been resolved (entity selectors, scores substituted).
+         * If {@code false}, will be resolved when opened by a player.
+         *
+         * @param resolved resolved
+         * @return the builder for chaining
+         * @see #resolved()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder resolved(boolean resolved);
+
+        /**
+         * Adds a page to this book.
+         *
+         * @param page the page
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPage(ComponentLike page);
+
+        /**
+         * Adds pages to this book.
+         *
+         * @param page the pages
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addPages(List<? extends ComponentLike> page);
+
+        /**
+         * Adds a filterable page to this book.
+         *
+         * @param page the page
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addFilteredPage(Filtered<? extends ComponentLike> page);
+
+        /**
+         * Adds filterable pages to this book.
+         *
+         * @param pages the pages
+         * @return the builder for chaining
+         * @see #pages()
+         */
+        @Contract(value = "_ -> this", mutates = "this")
+        Builder addFilteredPages(List<Filtered<? extends ComponentLike>> pages);
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumableTypesBridge.java b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumableTypesBridge.java
new file mode 100644
index 0000000000000000000000000000000000000000..a845ccfc21f101f0632249745bbd8b334f85e72c
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumableTypesBridge.java
@@ -0,0 +1,32 @@
+package io.papermc.paper.datacomponent.item.consumable;
+
+import io.papermc.paper.registry.set.RegistryKeySet;
+import java.util.List;
+import java.util.Optional;
+import java.util.ServiceLoader;
+import net.kyori.adventure.key.Key;
+import org.bukkit.potion.PotionEffect;
+import org.bukkit.potion.PotionEffectType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+
+@NullMarked
+@ApiStatus.Internal
+interface ConsumableTypesBridge {
+
+    Optional<ConsumableTypesBridge> BRIDGE = ServiceLoader.load(ConsumableTypesBridge.class).findFirst();
+
+    static ConsumableTypesBridge bridge() {
+        return BRIDGE.orElseThrow();
+    }
+
+    ConsumeEffect.ApplyStatusEffects applyStatusEffects(List<PotionEffect> effectList, float probability);
+
+    ConsumeEffect.RemoveStatusEffects removeStatusEffects(RegistryKeySet<PotionEffectType> potionEffectTypeTagKey);
+
+    ConsumeEffect.ClearAllStatusEffects clearAllStatusEffects();
+
+    ConsumeEffect.PlaySound playSoundEffect(Key sound);
+
+    ConsumeEffect.TeleportRandomly teleportRandomlyEffect(float diameter);
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumeEffect.java b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumeEffect.java
new file mode 100644
index 0000000000000000000000000000000000000000..ff1a14e19c21dd22f249503a0b738f190a75aca0
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ConsumeEffect.java
@@ -0,0 +1,150 @@
+package io.papermc.paper.datacomponent.item.consumable;
+
+import io.papermc.paper.registry.set.RegistryKeySet;
+import net.kyori.adventure.key.Key;
+import org.bukkit.potion.PotionEffect;
+import org.bukkit.potion.PotionEffectType;
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import java.util.List;
+
+/**
+ * Effect that occurs when consuming an item.
+ */
+@NullMarked
+@ApiStatus.Experimental
+@ApiStatus.NonExtendable
+public interface ConsumeEffect {
+
+    /**
+     * Creates a consume effect that randomly teleports the entity on consumption.
+     *
+     * @param diameter diameter of random teleportation
+     * @return the effect
+     */
+    @Contract(value = "_ -> new", pure = true)
+    static TeleportRandomly teleportRandomlyEffect(final float diameter) {
+        return ConsumableTypesBridge.bridge().teleportRandomlyEffect(diameter);
+    }
+
+    /**
+     * Creates a consume effect that gives status effects on consumption.
+     *
+     * @param key the sound effect to play
+     * @return the effect
+     */
+    @Contract(value = "_ -> new", pure = true)
+    static RemoveStatusEffects removeEffects(final RegistryKeySet<PotionEffectType> key) {
+        return ConsumableTypesBridge.bridge().removeStatusEffects(key);
+    }
+
+    /**
+     * Creates a consume effect that plays a sound on consumption.
+     *
+     * @param key the sound effect to play
+     * @return the effect
+     */
+    @Contract(value = "_ -> new", pure = true)
+    static PlaySound playSoundConsumeEffect(final Key key) {
+        return ConsumableTypesBridge.bridge().playSoundEffect(key);
+    }
+
+    /**
+     * Creates a consume effect that clears all status effects.
+     *
+     * @return effect instance
+     */
+    @Contract(value = "-> new", pure = true)
+    static ClearAllStatusEffects clearAllStatusEffects() {
+        return ConsumableTypesBridge.bridge().clearAllStatusEffects();
+    }
+
+    /**
+     * Creates a consume effect that gives status effects on consumption.
+     *
+     * @param effects     the potion effects to apply
+     * @param probability the probability of these effects being applied, between 0 and 1 inclusive.
+     * @return the effect
+     */
+    @Contract(value = "_, _ -> new", pure = true)
+    static ApplyStatusEffects applyStatusEffects(final List<PotionEffect> effects, final float probability) {
+        return ConsumableTypesBridge.bridge().applyStatusEffects(effects, probability);
+    }
+
+    @NullMarked
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface TeleportRandomly extends ConsumeEffect {
+
+        /**
+         * The max range that the entity can be teleported to.
+         *
+         * @return teleportation diameter
+         */
+        float diameter();
+    }
+
+    /**
+     * Represents a consumable effect that removes status effects on consumption
+     */
+    @NullMarked
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface RemoveStatusEffects extends ConsumeEffect {
+
+        /**
+         * Potion effects to remove
+         *
+         * @return effects
+         */
+        RegistryKeySet<PotionEffectType> removeEffects();
+    }
+
+    /**
+     * Represents a consumable effect that plays a sound on consumption.
+     */
+    @NullMarked
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface PlaySound extends ConsumeEffect {
+
+        /**
+         * Sound effect to play in the world
+         *
+         * @return sound effect
+         */
+        Key sound();
+    }
+
+    /**
+     * Represents a consumable effect that clears all effects on consumption.
+     */
+    @NullMarked
+    interface ClearAllStatusEffects extends ConsumeEffect {
+
+    }
+
+    /**
+     * Represents a consumable effect that applies effects based on a probability on consumption.
+     */
+    @NullMarked
+    @ApiStatus.Experimental
+    @ApiStatus.NonExtendable
+    interface ApplyStatusEffects extends ConsumeEffect {
+
+        /**
+         * Effect instances to grant
+         *
+         * @return effect
+         */
+        List<PotionEffect> effects();
+
+        /**
+         * Float between 0 and 1, chance for the effect to be applied.
+         *
+         * @return chance
+         */
+        float probability();
+    }
+}
diff --git a/src/main/java/io/papermc/paper/datacomponent/item/consumable/ItemUseAnimation.java b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ItemUseAnimation.java
new file mode 100644
index 0000000000000000000000000000000000000000..8cd6dbe4ea5ee3270b9428a9c29cbd88823d9f6c
--- /dev/null
+++ b/src/main/java/io/papermc/paper/datacomponent/item/consumable/ItemUseAnimation.java
@@ -0,0 +1,17 @@
+package io.papermc.paper.datacomponent.item.consumable;
+
+/**
+ * Represents the hand animation that is used when a player is consuming this item.
+ */
+public enum ItemUseAnimation {
+    NONE,
+    EAT,
+    DRINK,
+    BLOCK,
+    BOW,
+    SPEAR,
+    CROSSBOW,
+    SPYGLASS,
+    TOOT_HORN,
+    BRUSH
+}
diff --git a/src/main/java/io/papermc/paper/item/MapPostProcessing.java b/src/main/java/io/papermc/paper/item/MapPostProcessing.java
new file mode 100644
index 0000000000000000000000000000000000000000..5843768d0be2ae4a0219636ed7640727808da567
--- /dev/null
+++ b/src/main/java/io/papermc/paper/item/MapPostProcessing.java
@@ -0,0 +1,6 @@
+package io.papermc.paper.item;
+
+public enum MapPostProcessing {
+    LOCK,
+    SCALE
+}
diff --git a/src/main/java/io/papermc/paper/registry/RegistryKey.java b/src/main/java/io/papermc/paper/registry/RegistryKey.java
index 9b39e33514b15a9d07104e2ad826d0da11f569d6..e5319bdb9f75358b8bb0ac35373125a7d94edfa6 100644
--- a/src/main/java/io/papermc/paper/registry/RegistryKey.java
+++ b/src/main/java/io/papermc/paper/registry/RegistryKey.java
@@ -1,5 +1,6 @@
 package io.papermc.paper.registry;
 
+import io.papermc.paper.datacomponent.DataComponentType;
 import net.kyori.adventure.key.Keyed;
 import org.bukkit.Art;
 import org.bukkit.Fluid;
@@ -124,6 +125,11 @@ public sealed interface RegistryKey<T> extends Keyed permits RegistryKeyImpl {
      * @see io.papermc.paper.registry.keys.SoundEventKeys
      */
     RegistryKey<Sound> SOUND_EVENT = create("sound_event");
+    /**
+     * Built-in registry for data component types.
+     * <!-- @see io.papermc.paper.registry.keys.DataComponentTypeKeys -->
+     */
+    RegistryKey<DataComponentType> DATA_COMPONENT_TYPE = create("data_component_type");
 
 
 
diff --git a/src/main/java/io/papermc/paper/text/Filtered.java b/src/main/java/io/papermc/paper/text/Filtered.java
new file mode 100644
index 0000000000000000000000000000000000000000..9e892621354c784632204559f9fdf0827b3bc4f1
--- /dev/null
+++ b/src/main/java/io/papermc/paper/text/Filtered.java
@@ -0,0 +1,32 @@
+package io.papermc.paper.text;
+
+import org.jetbrains.annotations.ApiStatus;
+import org.jetbrains.annotations.Contract;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Denotes that this type is filterable by the client, and may be shown differently
+ * depending on the player's set configuration.
+ *
+ * @param <T> type of value
+ */
+@ApiStatus.Experimental
+@NullMarked
+public interface Filtered<T> {
+
+    @Contract(value = "_, _ -> new", pure = true)
+    static <T> Filtered<T> of(final T raw, final @Nullable T filtered) {
+        @ApiStatus.Internal
+        record Instance<T>(T raw, @Nullable T filtered) implements Filtered<T> {}
+
+        return new Instance<>(raw, filtered);
+    }
+
+    @Contract(pure = true)
+    T raw();
+
+    @Contract(pure = true)
+    @Nullable
+    T filtered();
+}
diff --git a/src/main/java/org/bukkit/Material.java b/src/main/java/org/bukkit/Material.java
index 615eb24ffdd8f6d55ccd4f21760b809c1098bc68..c7ce8fa1ff9feda66d5a4e497112a24ff51c9d2b 100644
--- a/src/main/java/org/bukkit/Material.java
+++ b/src/main/java/org/bukkit/Material.java
@@ -137,7 +137,7 @@ import org.jetbrains.annotations.Nullable;
 @SuppressWarnings({"DeprecatedIsStillUsed", "deprecation"}) // Paper
 public enum Material implements Keyed, Translatable, net.kyori.adventure.translation.Translatable { // Paper
     //<editor-fold desc="Materials" defaultstate="collapsed">
-    AIR(9648, 0),
+    AIR(9648, 64), // Paper - air stacks to 64
     STONE(22948),
     GRANITE(21091),
     POLISHED_GRANITE(5477),
@@ -5784,6 +5784,7 @@ public enum Material implements Keyed, Translatable, net.kyori.adventure.transla
      */
     @ApiStatus.Internal
     @Nullable
+    @org.jetbrains.annotations.Contract(pure = true) // Paper
     public ItemType asItemType() {
         return itemType.get();
     }
@@ -5796,7 +5797,47 @@ public enum Material implements Keyed, Translatable, net.kyori.adventure.transla
      */
     @ApiStatus.Internal
     @Nullable
+    @org.jetbrains.annotations.Contract(pure = true) // Paper
     public BlockType asBlockType() {
         return blockType.get();
     }
+
+    // Paper start - data component API
+    /**
+     * Gets the default value of the data component type for this item type.
+     *
+     * @param type the data component type
+     * @param <T> the value type
+     * @return the default value or {@code null} if there is none
+     * @see #hasDefaultData(io.papermc.paper.datacomponent.DataComponentType) for DataComponentType.NonValued
+     * @throws IllegalArgumentException if {@link #isItem()} is {@code false}
+     */
+    public @Nullable <T> T getDefaultData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type) {
+        Preconditions.checkArgument(this.asItemType() != null);
+        return this.asItemType().getDefaultData(type);
+    }
+
+    /**
+     * Checks if the data component type has a default value for this item type.
+     *
+     * @param type the data component type
+     * @return {@code true} if there is a default value
+     * @throws IllegalArgumentException if {@link #isItem()} is {@code false}
+     */
+    public boolean hasDefaultData(final io.papermc.paper.datacomponent.@NotNull DataComponentType type) {
+        Preconditions.checkArgument(this.asItemType() != null);
+        return this.asItemType().hasDefaultData(type);
+    }
+
+    /**
+     * Gets the default data component types for this item type.
+     *
+     * @return an immutable set of data component types
+     * @throws IllegalArgumentException if {@link #isItem()} is {@code false}
+     */
+    public java.util.@org.jetbrains.annotations.Unmodifiable @NotNull Set<io.papermc.paper.datacomponent.DataComponentType> getDefaultDataTypes() {
+        Preconditions.checkArgument(this.asItemType() != null);
+        return this.asItemType().getDefaultDataTypes();
+    }
+    // Paper end - data component API
 }
diff --git a/src/main/java/org/bukkit/Registry.java b/src/main/java/org/bukkit/Registry.java
index 7cf7c6d05aa6cbf3f0c8612831404552c6a7b84a..c60e31425efd7b863941f5538faef6c0552290ae 100644
--- a/src/main/java/org/bukkit/Registry.java
+++ b/src/main/java/org/bukkit/Registry.java
@@ -376,6 +376,7 @@ public interface Registry<T extends Keyed> extends Iterable<T> {
      */
     Registry<org.bukkit.potion.PotionEffectType> POTION_EFFECT_TYPE = EFFECT;
     // Paper end - potion effect type registry
+    Registry<io.papermc.paper.datacomponent.DataComponentType> DATA_COMPONENT_TYPE = io.papermc.paper.registry.RegistryAccess.registryAccess().getRegistry(io.papermc.paper.registry.RegistryKey.DATA_COMPONENT_TYPE); // Paper
     /**
      * Get the object by its key.
      *
diff --git a/src/main/java/org/bukkit/block/BlockType.java b/src/main/java/org/bukkit/block/BlockType.java
index ed534fe4983873a2d5f623f0d9d5e3ce254615eb..f019d490794b49d21057820bab047e2f909934a1 100644
--- a/src/main/java/org/bukkit/block/BlockType.java
+++ b/src/main/java/org/bukkit/block/BlockType.java
@@ -128,7 +128,7 @@ import org.jetbrains.annotations.Nullable;
  * official replacement for the aforementioned enum. Entirely incompatible
  * changes may occur. Do not use this API in plugins.
  */
-@ApiStatus.Internal
+@org.jetbrains.annotations.ApiStatus.Experimental // Paper - data component API - already required for data component API
 public interface BlockType extends Keyed, Translatable, net.kyori.adventure.translation.Translatable, io.papermc.paper.world.flag.FeatureDependant { // Paper - add translatable & feature flag API
 
     /**
diff --git a/src/main/java/org/bukkit/inventory/ItemStack.java b/src/main/java/org/bukkit/inventory/ItemStack.java
index b59222b8c262545d100a9fd28b3bf1d2a4cf4eb0..9c5f61ea845237e78cc3da61c06506e14351f228 100644
--- a/src/main/java/org/bukkit/inventory/ItemStack.java
+++ b/src/main/java/org/bukkit/inventory/ItemStack.java
@@ -1,7 +1,6 @@
 package org.bukkit.inventory;
 
 import com.google.common.base.Preconditions;
-import com.google.common.collect.ImmutableMap;
 import java.util.LinkedHashMap;
 import java.util.Locale;
 import java.util.Map;
@@ -1137,4 +1136,185 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, Translat
         return Bukkit.getUnsafe().computeTooltipLines(this, tooltipContext, player);
     }
     // Paper end - expose itemstack tooltip lines
+
+    // Paper start - data component API
+    /**
+     * Gets the value for the data component type on this stack.
+     *
+     * @param type the data component type
+     * @param <T> the value type
+     * @return the value for the data component type, or {@code null} if not set or marked as removed
+     * @see #hasData(io.papermc.paper.datacomponent.DataComponentType) for DataComponentType.NonValued
+     */
+    @org.jetbrains.annotations.Contract(pure = true)
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public <T> @Nullable T getData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type) {
+        return this.craftDelegate.getData(type);
+    }
+
+    /**
+     * Gets the value for the data component type on this stack with
+     * a fallback value.
+     *
+     * @param type the data component type
+     * @param fallback the fallback value if the value isn't present
+     * @param <T> the value type
+     * @return the value for the data component type or the fallback value
+     */
+    @Utility
+    @org.jetbrains.annotations.Contract(value = "_, !null -> !null", pure = true)
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public <T> @Nullable T getDataOrDefault(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<? extends T> type, final @Nullable T fallback) {
+        final T object = this.getData(type);
+        return object != null ? object : fallback;
+    }
+
+    /**
+     * Checks if the data component type is set on the itemstack.
+     *
+     * @param type the data component type
+     * @return {@code true} if set, {@code false} otherwise
+     */
+    @org.jetbrains.annotations.Contract(pure = true)
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public boolean hasData(final io.papermc.paper.datacomponent.@NotNull DataComponentType type) {
+        return this.craftDelegate.hasData(type);
+    }
+
+    /**
+     * Gets all the data component types set on this stack.
+     *
+     * @return an immutable set of data component types
+     */
+    @org.jetbrains.annotations.Contract("-> new")
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public java.util.@org.jetbrains.annotations.Unmodifiable Set<io.papermc.paper.datacomponent.@NotNull DataComponentType> getDataTypes() {
+        return this.craftDelegate.getDataTypes();
+    }
+
+    /**
+     * Sets the value of the data component type for this itemstack. To
+     * reset the value to the default for the {@link #getType() item type}, use
+     * {@link #resetData(io.papermc.paper.datacomponent.DataComponentType)}. To mark the data component type
+     * as removed, use {@link #unsetData(io.papermc.paper.datacomponent.DataComponentType)}.
+     *
+     * @param type the data component type
+     * @param valueBuilder value builder
+     * @param <T> value type
+     */
+    @Utility
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public <T> void setData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type, final @NotNull io.papermc.paper.datacomponent.DataComponentBuilder<T> valueBuilder) {
+        this.setData(type, valueBuilder.build());
+    }
+
+    // /**
+    //  * Modifies the value of the specified data component type for this item stack based on the result
+    //  * of applying a given function to the current value.
+    //  *
+    //  * <p>If the function returns {@code null}, the data component type will be reset using
+    //  * {@link #unsetData(DataComponentType)}. Otherwise, the
+    //  * component value will be updated with the new result using {@link #setData(DataComponentType.Valued, Object)}.</p>
+    //  *
+    //  * @param <T>      the type of the data component's value
+    //  * @param type     the data component type to be modified
+    //  * @param consumer a function that takes the current component value (can be {@code null}) and
+    //  *                 returns the modified value (or {@code null} to unset)
+    //  */
+    // @Utility
+    // public <T> void editData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type, final @NotNull java.util.function.Function<@Nullable T, @Nullable T> consumer) {
+    //     T value = getData(type);
+    //     T newType = consumer.apply(value);
+    //     if (newType == null) {
+    //         unsetData(type);
+    //     } else {
+    //         setData(type, newType);
+    //     }
+    // }
+
+    /**
+     * Sets the value of the data component type for this itemstack. To
+     * reset the value to the default for the {@link #getType() item type}, use
+     * {@link #resetData(io.papermc.paper.datacomponent.DataComponentType)}. To mark the data component type
+     * as removed, use {@link #unsetData(io.papermc.paper.datacomponent.DataComponentType)}.
+     *
+     * @param type the data component type
+     * @param value value to set
+     * @param <T> value type
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public <T> void setData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type, final @NotNull T value) {
+        this.craftDelegate.setData(type, value);
+    }
+
+    /**
+     * Marks this non-valued data component type as present in this itemstack.
+     *
+     * @param type the data component type
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public void setData(final io.papermc.paper.datacomponent.DataComponentType.@NotNull NonValued type) {
+        this.craftDelegate.setData(type);
+    }
+
+    /**
+     * Marks this data component as removed for this itemstack.
+     *
+     * @param type the data component type
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public void unsetData(final io.papermc.paper.datacomponent.@NotNull DataComponentType type) {
+        this.craftDelegate.unsetData(type);
+    }
+
+    /**
+     * Resets the value of this component to be the default
+     * value for the item type from {@link Material#getDefaultData(io.papermc.paper.datacomponent.DataComponentType.Valued)}.
+     *
+     * @param type the data component type
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public void resetData(final io.papermc.paper.datacomponent.@NotNull DataComponentType type) {
+        this.craftDelegate.resetData(type);
+    }
+
+    /**
+     * Checks if the data component type is overridden from the default for the
+     * item type.
+     *
+     * @param type the data component type
+     * @return {@code true} if the data type is overridden
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public boolean isDataOverridden(final io.papermc.paper.datacomponent.@NotNull DataComponentType type) {
+        return this.craftDelegate.isDataOverridden(type);
+    }
+
+    /**
+     * Checks if this itemstack matches another given itemstack excluding the provided components.
+     * This is useful if you are wanting to ignore certain properties of itemstacks, such as durability.
+     *
+     * @param item the item to compare
+     * @param excludeTypes the data component types to ignore
+     * @return {@code true} if the provided item is equal, ignoring the provided components
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public boolean matchesWithoutData(final @NotNull ItemStack item, final @NotNull java.util.Set<io.papermc.paper.datacomponent.@NotNull DataComponentType> excludeTypes) {
+        return this.matchesWithoutData(item, excludeTypes, false);
+    }
+
+    /**
+     * Checks if this itemstack matches another given itemstack excluding the provided components.
+     * This is useful if you are wanting to ignore certain properties of itemstacks, such as durability.
+     *
+     * @param item the item to compare
+     * @param excludeTypes the data component types to ignore
+     * @param ignoreCount ignore the count of the item
+     * @return {@code true} if the provided item is equal, ignoring the provided components
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    public boolean matchesWithoutData(final @NotNull ItemStack item, final @NotNull java.util.Set<io.papermc.paper.datacomponent.@NotNull DataComponentType> excludeTypes, final boolean ignoreCount) {
+        return this.craftDelegate.matchesWithoutData(item, excludeTypes, ignoreCount);
+    }
+    // Paper end - data component API
 }
diff --git a/src/main/java/org/bukkit/inventory/ItemType.java b/src/main/java/org/bukkit/inventory/ItemType.java
index 72803c00e4af576f286d2af34bf300ee554a7f3c..2a3c4f055d0e4ef009caed95152570660ab100d5 100644
--- a/src/main/java/org/bukkit/inventory/ItemType.java
+++ b/src/main/java/org/bukkit/inventory/ItemType.java
@@ -2483,4 +2483,33 @@ public interface ItemType extends Keyed, Translatable, net.kyori.adventure.trans
      */
     @Nullable ItemRarity getItemRarity();
     // Paper end - expand ItemRarity API
+    // Paper start - data component API
+    /**
+     * Gets the default value of the data component type for this item type.
+     *
+     * @param type the data component type
+     * @param <T> the value type
+     * @return the default value or {@code null} if there is none
+     * @see #hasDefaultData(io.papermc.paper.datacomponent.DataComponentType) for DataComponentType.NonValued
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    @Nullable <T> T getDefaultData(io.papermc.paper.datacomponent.DataComponentType.@NotNull Valued<T> type);
+
+    /**
+     * Checks if the data component type has a default value for this item type.
+     *
+     * @param type the data component type
+     * @return {@code true} if there is a default value
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    boolean hasDefaultData(io.papermc.paper.datacomponent.@NotNull DataComponentType type);
+
+    /**
+     * Gets the default data component types for this item type.
+     *
+     * @return an immutable set of data component types
+     */
+    @org.jetbrains.annotations.ApiStatus.Experimental
+    java.util.@org.jetbrains.annotations.Unmodifiable @NotNull Set<io.papermc.paper.datacomponent.DataComponentType> getDefaultDataTypes();
+    // Paper end - data component API
 }