summaryrefslogtreecommitdiff
path: root/com.ibm.java/java8.json
blob: 288805861d57b7ed3d89dd416d0f5f59d40efbca (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
{
    "formatVersion": 1,
    "name": "Java 8",
    "releaseTime": "2021-08-03T18:02:49+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "0bf81e496b5fed8669fc5b624ba7fb45fe05d7b9c19485f441ab48d2edad68fe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-02-27T08:48:53+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08.1_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_8.0.482.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "fdcdf104c27a1d0a858c2aa5eb37125fc9f337b4dea69c839aced8611265d6b5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-02-27T08:48:53+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08.1_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_8.0.482.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "c006cbaecd413e83f467d84b041579efad26d6faa67a2dabd78b074a7cc52fa9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-02-27T08:48:53+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08.1_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_8.0.482.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "d8fcad671559ab383d55d331db6725a5957f110faffe17d766c7ca3b14e71abd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-02-27T08:48:53+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08.1_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_8.0.482.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "35fbba7d55b53f67f1a3db015af8d5c62a6740fd8257639f1f16620389a1fe45",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-02-27T08:48:53+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08.1_openj9-0.57.0/ibm-semeru-open-jre_x86-32_windows_8.0.482.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "9f13f8c5107a4743255b7fc5c557753050d9b6f52f46e19f303878478944502b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:01:43+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_8u482b08_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "1eb30f6716b58aaeff4a4f538b3e44870074e4fda5b67cfa7d87aacb35e42451",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:01:43+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_8u482b08_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "343888485c7683312b0aa34ddb2ef288a5bdf29846d0c73aa6b863c05e24e01a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:01:43+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_8u482b08_openj9-0.57.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "9ca01471228baa5a57f2cc3a044358ab36adedecef72b07c700df40d8a0f855a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:01:43+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_8u482b08_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "5172d0a55872165760c5da175b8b6ef4f0f0d7462ed04dd78383a27a456b70e1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.482+8",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:01:43+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u482-b08_openj9-0.57.0/ibm-semeru-open-jre_x86-32_windows_8u482b08_openj9-0.57.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 482
            }
        },
        {
            "checksum": {
                "hash": "5babd67d884af6251b504932e2cdce2e5a969075efa856c91087ecc6f3933fc6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.472+8",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:18+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u472-b08_openj9-0.56.0/ibm-semeru-open-jre_x64_linux_8u472b08_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 472
            }
        },
        {
            "checksum": {
                "hash": "20c80c3304ba5125e95ff8ce56aa720644320a9c8a3adce5bb7af19184c6abba",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.472+8",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:18+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u472-b08_openj9-0.56.0/ibm-semeru-open-jre_x64_mac_8u472b08_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 472
            }
        },
        {
            "checksum": {
                "hash": "baf36de3179dbdef1ec0237eb59663ec1d976d5325493187f1cb884e7a3e780e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.472+8",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:18+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u472-b08_openj9-0.56.0/ibm-semeru-open-jre_x64_windows_8u472b08_openj9-0.56.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 472
            }
        },
        {
            "checksum": {
                "hash": "e9f04c51ace0cc724a7b3e54e58ad1823d899c77c2a141ab28efb226c3c7bb97",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.472+8",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:18+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u472-b08_openj9-0.56.0/ibm-semeru-open-jre_aarch64_linux_8u472b08_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 472
            }
        },
        {
            "checksum": {
                "hash": "9332753bdec5c7fa2696d346a3310f896e772c2ac50d4cbc516a16c247cb9d9e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.472+8",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:18+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u472-b08_openj9-0.56.0/ibm-semeru-open-jre_x86-32_windows_8u472b08_openj9-0.56.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 472
            }
        },
        {
            "checksum": {
                "hash": "1e61dc30dffea82f5dec85cb18e3d8b29ffd211ee2bc2b12a5d1e9a4725ab4f9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.462+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u462-b08_openj9-0.53.0/ibm-semeru-open-jre_x64_linux_8u462b08_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 462
            }
        },
        {
            "checksum": {
                "hash": "a911816c30e13f621e7dd68868f22a75fc27a788e2117f4a7c47fa54d36341c1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.462+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u462-b08_openj9-0.53.0/ibm-semeru-open-jre_x64_mac_8u462b08_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 462
            }
        },
        {
            "checksum": {
                "hash": "a74892795ab8b2c21417a61ede14a48aacd7419c9a2c1c2bc88881e6f595a2bd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.462+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u462-b08_openj9-0.53.0/ibm-semeru-open-jre_x64_windows_8u462b08_openj9-0.53.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 462
            }
        },
        {
            "checksum": {
                "hash": "6ecee3b35e62c11651f6725b7d7b5eabc662166008db7b8f7b49887692a17628",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.462+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u462-b08_openj9-0.53.0/ibm-semeru-open-jre_aarch64_linux_8u462b08_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 462
            }
        },
        {
            "checksum": {
                "hash": "3fdf9ec6512137109426e875131db8e713fb8f8491c86d790dff319cde1b2efb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.462+8",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u462-b08_openj9-0.53.0/ibm-semeru-open-jre_x86-32_windows_8u462b08_openj9-0.53.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 462
            }
        },
        {
            "checksum": {
                "hash": "89cf44e225cb1daa274e805a615f59bb0140dbd4bddcfbe4cecc12dd8c3a9fed",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.452+9",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:38+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u452-b09_openj9-0.51.0/ibm-semeru-open-jre_aarch64_linux_8u452b09_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 452
            }
        },
        {
            "checksum": {
                "hash": "0ac75bf18399ece85749ebf63f1fd6210daa63f6df595205edcc7a45400ba13c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.452+9",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:38+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u452-b09_openj9-0.51.0/ibm-semeru-open-jre_x64_linux_8u452b09_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 452
            }
        },
        {
            "checksum": {
                "hash": "b0a581818a70419df0943fb8a0df7a6bc43c68b157c761752d5430fcdc24ccd4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.452+9",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:38+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u452-b09_openj9-0.51.0/ibm-semeru-open-jre_x64_mac_8u452b09_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 452
            }
        },
        {
            "checksum": {
                "hash": "10103e6a3cabebf5212c98c7a0fb633d7b93ca41dab2df7d5b605771a5705249",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.452+9",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:38+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u452-b09_openj9-0.51.0/ibm-semeru-open-jre_x64_windows_8u452b09_openj9-0.51.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 452
            }
        },
        {
            "checksum": {
                "hash": "b78a1beb4324524cf0944f3edad64d2f8084f1c55b0bcef007daa1ffead4f9e1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.452+9",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:38+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u452-b09_openj9-0.51.0/ibm-semeru-open-jre_x86-32_windows_8u452b09_openj9-0.51.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 452
            }
        },
        {
            "checksum": {
                "hash": "7975d93310af64c805c76b5bcab8b195121d76321ebf72d1ff9bb2bff2426277",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.442+6",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:44:35+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u442-b06_openj9-0.49.0/ibm-semeru-open-jre_aarch64_linux_8u442b06_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 442
            }
        },
        {
            "checksum": {
                "hash": "d665f2e041c18de11f15955164c935961e7da0bf9358182769466611d83c5b32",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.442+6",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:44:35+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u442-b06_openj9-0.49.0/ibm-semeru-open-jre_x64_linux_8u442b06_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 442
            }
        },
        {
            "checksum": {
                "hash": "98db71aea28b1f028decb2d3ea76a3aea9dd88bff51cb281c39e9d02cd65acfc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.442+6",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:44:35+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u442-b06_openj9-0.49.0/ibm-semeru-open-jre_x64_mac_8u442b06_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 442
            }
        },
        {
            "checksum": {
                "hash": "c508c048920701ae9d40004508cd503b1cf68c1ec87f4d37c72ced8fdab9519f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.442+6",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:44:35+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u442-b06_openj9-0.49.0/ibm-semeru-open-jre_x64_windows_8u442b06_openj9-0.49.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 442
            }
        },
        {
            "checksum": {
                "hash": "1c060ae04b560666a5a269049b02dd4500a1d9b771cba465ae36034f31e788a5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.442+6",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:44:35+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u442-b06_openj9-0.49.0/ibm-semeru-open-jre_x86-32_windows_8u442b06_openj9-0.49.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 442
            }
        },
        {
            "checksum": {
                "hash": "01e57b0ada3dc34b08d2f4644b64244f7a1e9a63cf885f47b9baadf663230b5d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:11:43+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u432-b06_openj9-0.48.0/ibm-semeru-open-jre_aarch64_linux_8u432b06_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "b38ef6c7520463822affa424b4ad0e16686b86b01255b0c9912743d3f6e98a73",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:11:43+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u432-b06_openj9-0.48.0/ibm-semeru-open-jre_x64_linux_8u432b06_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "13f4e75ba6ae4c1f7d567de86c41dee4055e4d46210dc17d76dd815ecea42302",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:11:43+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u432-b06_openj9-0.48.0/ibm-semeru-open-jre_x64_mac_8u432b06_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "efcb9326ea89b3242806158a3b15027136da67799d5a444c99d6c30bc877074b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:11:43+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u432-b06_openj9-0.48.0/ibm-semeru-open-jre_x64_windows_8u432b06_openj9-0.48.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "e270d513fcf8b031d863254725957cd4c242ccec38947016ea3b31592c88ae59",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.432+6",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:11:43+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u432-b06_openj9-0.48.0/ibm-semeru-open-jre_x86-32_windows_8u432b06_openj9-0.48.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 432
            }
        },
        {
            "checksum": {
                "hash": "1b19a927beb900790dfac47f324d232b86ba5219ed065a33a77eb15c240595c5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:37:40+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.1/ibm-semeru-open-jre_aarch64_linux_8u422b05_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "4e737653e890c4c8a38588c887fa4081fe70b8370a46e94b0fb4121178f2f352",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:37:40+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.1/ibm-semeru-open-jre_x64_linux_8u422b05_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "8d42899bec1d5b4b06a65cf22e534fa603def3cf6c7d67bcdd521dd065f7118a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:37:40+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.1/ibm-semeru-open-jre_x64_windows_8u422b05_openj9-0.46.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "2672b62df4bcd8a60dacd612175d9390a8e8198c59659ad49a77cd3f4c755ac5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:37:40+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.1/ibm-semeru-open-jre_x86-32_windows_8u422b05_openj9-0.46.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "be7a1483583ff57b9ada760fdb3556c472653dd039f86398669f1cb8926e3e4f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:37:40+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.1/ibm-semeru-open-jre_x64_mac_8u422b05_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "bc8d17fa5435a72ccd22348b3374ce725b7e9fcdffdb65f1d3245ec84c0cc114",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:50:15+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.0/ibm-semeru-open-jre_x64_linux_8u422b05_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "50de314d46e24dfea8441d8d05a9e9b10639624b69bbe7887e57dda9c4f2c937",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:50:15+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.0/ibm-semeru-open-jre_x64_windows_8u422b05_openj9-0.46.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "c7cd8985b3c85db053629702183757614dceeb3ec955c8f65fef732a6c07437c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:50:15+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.0/ibm-semeru-open-jre_x86-32_windows_8u422b05_openj9-0.46.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "e0ac8178539f05a60719aa4b16d1678d5c6b29fb292d1079207abc6cd6bbd9d6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:50:15+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.0/ibm-semeru-open-jre_x64_mac_8u422b05_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "5b89c3f2d330edf6d338f25b5f42ca19a86e4a47bd05e2ab71588f7bf12e2a37",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.422+5",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:50:15+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u422-b05_openj9-0.46.0/ibm-semeru-open-jre_aarch64_linux_8u422b05_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 422
            }
        },
        {
            "checksum": {
                "hash": "08a41a48b79881590d65a09c62c56d8bcd9b8453f03420bcfd5dd3165bbba3c1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:33+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_8u412b08_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "ac5022b52b33b22c51d8370655f6157fd999e5e24c6525f91d1e778f34abcb8b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:33+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_8u412b08_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "2ca6551271397f13047f23a5abcdb3e45b05e8006b214af056f99bf1634b486a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:33+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_windows_8u412b08_openj9-0.44.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "300487be3b52e996267e0ee763cc64ee7b21a55ddc53c9cba8ec98a98d62a3aa",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:33+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x86-32_windows_8u412b08_openj9-0.44.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "baf7d026012acc234fb1c2e64adf544a84449c856ee25a130c5aec32fbe34e3a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.412+8",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:33+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u412-b08_openj9-0.44.0/ibm-semeru-open-jre_x64_mac_8u412b08_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 412
            }
        },
        {
            "checksum": {
                "hash": "4921671d26754483f096007cfb537922f1b190ca471aaebda6eccdefe91f7fb0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:35:03+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_8u402b06_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "6f2e0e977f833ad9b2d85e97e568aa57c658eea3f096a1544d72e70f94e55f73",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:35:03+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_8u402b06_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "1312aedca219b579b5778a6a9146f9f9e21d6b1cf8fc6db2098d54cf7e44546d",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:35:03+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_windows_8u402b06_openj9-0.43.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "e78d276d381c2923c1873e463f69f7c38a8db351aa3061d799ec63cef871bb25",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:35:03+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x86-32_windows_8u402b06_openj9-0.43.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "50039cbce2377658de7a5a57b24db4dc4d1fcd7b46f84badd24a5dc835d1ab6a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.402+6",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:35:03+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jre_x64_mac_8u402b06_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 402
            }
        },
        {
            "checksum": {
                "hash": "17df56bf2567bcca36d78ac4e46d025aec2553ba4df0b18c89464fcfebf9bb21",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-11-28T19:57:32+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u392-b08_openj9-0.41.0/ibm-semeru-open-jre_aarch64_linux_8u392b08_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "2e771721212f403dd97a132ddcd20b4ed2d0ee95d504c299517a8ce58590690e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-11-28T19:57:32+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u392-b08_openj9-0.41.0/ibm-semeru-open-jre_x64_linux_8u392b08_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "81ce858fb7a8f019acb06ad716022b7a40c966efe53062034c55fa537517b944",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-11-28T19:57:32+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u392-b08_openj9-0.41.0/ibm-semeru-open-jre_x64_windows_8u392b08_openj9-0.41.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "0e514d182bce1ab8408ce02d6b6eb0f4504b592e79841e24fb14b29342743f23",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-11-28T19:57:32+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u392-b08_openj9-0.41.0/ibm-semeru-open-jre_x86-32_windows_8u392b08_openj9-0.41.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "b40b409d461d4ee25184dc6cec84f9dc5e91179a363e628abd70109a7a3e7547",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.392+8",
            "packageType": "jre",
            "releaseTime": "2023-11-28T19:57:32+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u392-b08_openj9-0.41.0/ibm-semeru-open-jre_x64_mac_8u392b08_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 392
            }
        },
        {
            "checksum": {
                "hash": "8ec1bda269e5c9fa273e7a66339dd6f8ad275e1698280757e1c8c7c88042a169",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:15:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u382-b05_openj9-0.40.0/ibm-semeru-open-jre_aarch64_linux_8u382b05_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "ccfb3e4e261830ba1f3f485c4b5e0a05731b3c83d338dca17fe3b382fa2bdaff",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:15:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u382-b05_openj9-0.40.0/ibm-semeru-open-jre_x64_linux_8u382b05_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "0dc2c1b94dfca09800ea916ab12ebb5e7147523fdbafec740f8ca88d8daf4295",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:15:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u382-b05_openj9-0.40.0/ibm-semeru-open-jre_x64_windows_8u382b05_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "1a376f6de6f6f5db5ab120847ad6f5101b3af1a5e0f2a342bd02657682ecff27",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:15:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u382-b05_openj9-0.40.0/ibm-semeru-open-jre_x86-32_windows_8u382b05_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "e3006203e0a0b5aa3c82d5a0c5442c65d588dbc197dfcb934cd3ec0dd3278aa0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.382+5",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:15:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u382-b05_openj9-0.40.0/ibm-semeru-open-jre_x64_mac_8u382b05_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 5,
                "major": 8,
                "minor": 0,
                "security": 382
            }
        },
        {
            "checksum": {
                "hash": "b0d830c47350de0b9d056d60f98b48d0452183bb640a03b316028e3c7d603162",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T15:13:47+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u372-b07_openj9-0.38.0/ibm-semeru-open-jre_aarch64_linux_8u372b07_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "ad0829fbd2473704e8103524882bc25625958b6f3038e80f8a99ab926e6b58a3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T15:13:47+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u372-b07_openj9-0.38.0/ibm-semeru-open-jre_x64_linux_8u372b07_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "728cc7b8896df2eac8711392caa01ca640be9556227f7a60ee744efce0a558cb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T15:13:47+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u372-b07_openj9-0.38.0/ibm-semeru-open-jre_x64_windows_8u372b07_openj9-0.38.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "75396a2049446778a07c72b92b1c2bc50a741207d03a390cc9dc8e73ca5eb896",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T15:13:47+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u372-b07_openj9-0.38.0/ibm-semeru-open-jre_x86-32_windows_8u372b07_openj9-0.38.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "a1e0f50b7fb45424efd652bc8f66c5176b2aa3a110d3fefea2c3f2e6841c8871",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.372+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T15:13:47+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u372-b07_openj9-0.38.0/ibm-semeru-open-jre_x64_mac_8u372b07_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 372
            }
        },
        {
            "checksum": {
                "hash": "f052623cb759a6499c9f1574761a9e08204e6cd443100afd2ae5a1ee2f233099",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:58:54+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u362-b09_openj9-0.36.0/ibm-semeru-open-jre_aarch64_linux_8u362b09_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "eab353a7cd55f66d20f39673d07c85c9bfc539406f8f6d6121dcebc8c08dc5c7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:58:54+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u362-b09_openj9-0.36.0/ibm-semeru-open-jre_x64_linux_8u362b09_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "ffd9e21ba3df38032b9119439c1112f392b8d3efc5962a56491498903ee9e31f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:58:54+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u362-b09_openj9-0.36.0/ibm-semeru-open-jre_x64_windows_8u362b09_openj9-0.36.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "7390cdb6a098125f2f4bd1f929979048e06766aed02432f7d41600d27708f889",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:58:54+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u362-b09_openj9-0.36.0/ibm-semeru-open-jre_x86-32_windows_8u362b09_openj9-0.36.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "2a1884ab1355ebe3e011cb84ffef826258626816a0cf7a1415a35f38280e235b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.362+9",
            "packageType": "jre",
            "releaseTime": "2023-02-15T18:58:54+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u362-b09_openj9-0.36.0/ibm-semeru-open-jre_x64_mac_8u362b09_openj9-0.36.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 362
            }
        },
        {
            "checksum": {
                "hash": "2cae4af0185761b30999a0caff6a1bade6ce0ed6f2b462056ea84c26bf9eba7f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:26:56+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u352-b08-openj9-0.35.0/ibm-semeru-open-jre_aarch64_linux_8u352b08_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "cdaea9083f7f34034d4bf8658a68b3bf96f055ecc5a1c1dc1aad1bab41415d25",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:26:56+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u352-b08-openj9-0.35.0/ibm-semeru-open-jre_x64_linux_8u352b08_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "1ad91cf0d406e1168caa4f3eef746d0856aa00517582d565ef73e9c5487820b8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:26:56+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u352-b08-openj9-0.35.0/ibm-semeru-open-jre_x64_windows_8u352b08_openj9-0.35.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "b11872084a97a41003e02f2d8d7458574920024ab7e3c0dcdccd9d65a81e53f1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:26:56+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u352-b08-openj9-0.35.0/ibm-semeru-open-jre_x86-32_windows_8u352b08_openj9-0.35.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "5fc5dd8c85e8f175565347d583de401c8c0341946e33e92924675be0e959db15",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.352+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:26:56+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u352-b08-openj9-0.35.0/ibm-semeru-open-jre_x64_mac_8u352b08_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 352
            }
        },
        {
            "checksum": {
                "hash": "91479aa6163d196982f036bf5260e77f27085e5d65de50d68a3b9cb3903f6e15",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:30:55+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.1/ibm-semeru-open-jre_aarch64_linux_8u345b01_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "e8cbdfb677777544981d4c5290c19bef288d430978c2feb2dcf06e285f83a69a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:30:55+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.1/ibm-semeru-open-jre_x64_linux_8u345b01_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "7f44460421a296c2908318e89bfee61735d190851d7dc43494eee237b498a7a7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:30:55+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.1/ibm-semeru-open-jre_x64_windows_8u345b01_openj9-0.33.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "7833b9090e2f25b62aca866d630b1e75870f799f5a27567c555a3b28dd7777cc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:30:55+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.1/ibm-semeru-open-jre_x86-32_windows_8u345b01_openj9-0.33.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "09b3ae7ea16d3feca77e3997e2dde20a753eb07e249cdc22981f5c60ff83550b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:30:55+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.1/ibm-semeru-open-jre_x64_mac_8u345b01_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "03caff41622e84a6e7fa66a225414a9b6eefb38dd215f830cae0bc4bbfc55b5c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T16:41:19+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_aarch64_linux_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "0d4fe62716b9da2ccce324b5b46d57e8d47e5dfb5d128f87e16135ee9bc36cdc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T16:41:19+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_linux_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "c4469532296913528b814ccb370087be4aeeb18caac72062c619b267eb82a219",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T16:41:19+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_windows_8u345b01_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "895014e4e1e1d5c8d6f3b067351ef46604c283b4b45e06f39908ae5b73866550",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T16:41:19+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x86-32_windows_8u345b01_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "019e08dea8fbd54517dacbeac791d85717902800dd8bba77fbca1dfc6b0abd9e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T16:41:19+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_mac_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "03caff41622e84a6e7fa66a225414a9b6eefb38dd215f830cae0bc4bbfc55b5c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T01:45:39+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_aarch64_linux_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "0d4fe62716b9da2ccce324b5b46d57e8d47e5dfb5d128f87e16135ee9bc36cdc",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T01:45:39+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_linux_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "c4469532296913528b814ccb370087be4aeeb18caac72062c619b267eb82a219",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T01:45:39+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_windows_8u345b01_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "895014e4e1e1d5c8d6f3b067351ef46604c283b4b45e06f39908ae5b73866550",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T01:45:39+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x86-32_windows_8u345b01_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "019e08dea8fbd54517dacbeac791d85717902800dd8bba77fbca1dfc6b0abd9e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.345+1",
            "packageType": "jre",
            "releaseTime": "2022-08-08T01:45:39+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/8u345-b01_openj9-0.33.0/ibm-semeru-open-jre_x64_mac_8u345b01_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 8,
                "minor": 0,
                "security": 345
            }
        },
        {
            "checksum": {
                "hash": "0c8842db66c0b4052db8c29846f05292e16d9fedad4d709f31ba890f315337a2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:35:29+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u332-b09_openj9-0.32.0/ibm-semeru-open-jre_aarch64_linux_8u332b09_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "2acd73ad996814b8e3814049827de8e20ac0fbf49d336606ee67e0bfb5d4642a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:35:29+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u332-b09_openj9-0.32.0/ibm-semeru-open-jre_x64_linux_8u332b09_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "44bc62db465e3f5887c793c7daa097dd3bc37b45585ea64f02babe5104f52a28",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:35:29+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u332-b09_openj9-0.32.0/ibm-semeru-open-jre_x64_windows_8u332b09_openj9-0.32.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "2541333dea4cd76d0ede6959103c754a5b596e7e06987c3f6088f3c3e85dc45e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:35:29+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u332-b09_openj9-0.32.0/ibm-semeru-open-jre_x86-32_windows_8u332b09_openj9-0.32.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "b2ca05ba54901babc4350534a2f1d80d7cf0eb47e6cc5174443378b3a45d322a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.332+9",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:35:29+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u332-b09_openj9-0.32.0/ibm-semeru-open-jre_x64_mac_8u332b09_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 8,
                "minor": 0,
                "security": 332
            }
        },
        {
            "checksum": {
                "hash": "734f4ce4bedadb71ec58311775a38313261250a5d30bd6af74e9ad991b8500bd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:47+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jre_aarch64_linux_8u322b06_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "be7620c6d0472d18bd40ef014704cf66f95e761a41adce8e297c908539766eee",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:47+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jre_x64_linux_8u322b06_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "b3fe6e3c8fe0686f42c6d0600a41c3302d16aed6adb9c7c557d73a5f3f7fc4bb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:47+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jre_x64_windows_8u322b06_openj9-0.30.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "043f7e657d299edc1bb3ecada9090a4b72bedd6b46bb7bb9d985499d86976b3e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.322+6",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:47+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u322-b06_openj9-0.30.0/ibm-semeru-open-jre_x86-32_windows_8u322b06_openj9-0.30.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 8,
                "minor": 0,
                "security": 322
            }
        },
        {
            "checksum": {
                "hash": "1ecfa7bb83136d139e137dad9fcc5f02bd931f789d12167cb63f44102b1cad62",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:40+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jre_aarch64_linux_8u312b07_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "0bdd811bb21b4664ff955c95ce462aaa3ace7669b56a3db79cf22ef0b9dbd1b4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:40+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jre_x64_linux_8u312b07_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "5e6d205f46715c967f705d5934790f597207643ac61d807a2e974bd03bb419b0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:40+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jre_x64_windows_8u312b07_openj9-0.29.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "42e5484cc5db2ab75040e3727d87322558e9dc764c84222b134a06ea71452e90",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:40+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jre_x86-32_windows_8u312b07_openj9-0.29.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "9c4e76abb56f07d92938a889b5063382b36e89ae2ffe82f3a44f77b7112cf623",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.312+7",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:40+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u312-b07_openj9-0.29.0/ibm-semeru-open-jre_x64_mac_8u312b07_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 8,
                "minor": 0,
                "security": 312
            }
        },
        {
            "checksum": {
                "hash": "9d3d4234b9a579251426c6d498f407bcbed94d10ca572dfdc82c387b9fe9c158",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-08-03T18:02:49+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jre_x64_linux_8u302b08_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "63157bfb01cf3329284e0e9751338368a1b9ff780c9c34abc65228ac2f829e9a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-08-03T18:02:49+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jre_x64_windows_8u302b08_openj9-0.27.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "9a036dd8f480926c3123e0faf799aa7796a8c0d69101c1d30d807fb84a9d9ab7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-08-03T18:02:49+00:00",
            "runtimeOS": "windows-x86",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jre_x86-32_windows_8u302b08_openj9-0.27.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "dcbe2baf876b86a540ab1f8fcba3f6ca444199a95c438450b49aa52a26905502",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-08-03T18:02:49+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jre_x64_mac_8u302b08_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        },
        {
            "checksum": {
                "hash": "bf60d798d430769c20569a36f25b10e7a4681e4b1ad3d7f7fd91c5717c8642d6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre8.0.302+8",
            "packageType": "jre",
            "releaseTime": "2021-08-03T18:02:49+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru8-binaries/releases/download/jdk8u302-b08_openj9-0.27.0/ibm-semeru-open-jre_aarch64_linux_8u302b08_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 8,
                "minor": 0,
                "security": 302
            }
        }
    ],
    "uid": "com.ibm.java",
    "version": "java8"
}