summaryrefslogtreecommitdiff
path: root/com.ibm.java/java11.json
blob: 00976050456f5085b87ddab67abc1060a1397b45 (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 11",
    "releaseTime": "2021-08-03T18:02:50+00:00",
    "runtimes": [
        {
            "checksum": {
                "hash": "f15e9e3e11774ba2374e549870063309085dc6510437e40c1bd520dcde1739b0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-02-25T07:43:19+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7.1_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_11.0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "67fc4ff26bbd48ef110e22e30ebe10ebf2a78aa3914ae2ddad2c28128f06c38f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-02-25T07:43:19+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7.1_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_11.0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "af43073370bc84237291c144c238befbb02620bbb6f8e7eaa728f176b71bb3ab",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-02-25T07:43:19+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7.1_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_11.0.30.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "b5d3e8bc301cd6827b31af386b951f1ccb1786bff2145517cecc2e2ce171668a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-02-25T07:43:19+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7.1_openj9-0.57.0/ibm-semeru-open-jre_aarch64_mac_11.0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "d11853bdda82f9246e012e3f619bbd66c46924199ff2d0f31079bc9637a406c0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-02-25T07:43:19+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7.1_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_11.0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "50853a87152631b13f2aed8a4a120655962d0e5a7a4cd1b98269900f7c23d464",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:03:49+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7_openj9-0.57.0/ibm-semeru-open-jre_x64_linux_11.0.30_7_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "82f92ee6d00fc56e6a6babcb4c99a618e22c431cbac095c5c00b896570469ccb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:03:49+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7_openj9-0.57.0/ibm-semeru-open-jre_x64_mac_11.0.30_7_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "ae097608c2821a02f268580e0b3041f9c2d66647e93b1c423c344a0e0ff9c01c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:03:49+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7_openj9-0.57.0/ibm-semeru-open-jre_x64_windows_11.0.30_7_openj9-0.57.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "6753db245730238b3efbcc582ad914f4adc2e1d8caa335030e0cb2d4fd099d89",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:03:49+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7_openj9-0.57.0/ibm-semeru-open-jre_aarch64_mac_11.0.30_7_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "e7d1ae806964e6b575df6fecc76f0dc2fabd475c8db810fbda36a2cef6caa612",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.30+7",
            "packageType": "jre",
            "releaseTime": "2026-01-30T05:03:49+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.30%2B7_openj9-0.57.0/ibm-semeru-open-jre_aarch64_linux_11.0.30_7_openj9-0.57.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 30
            }
        },
        {
            "checksum": {
                "hash": "474acb3b9c1ba608efe0c3aa0321a271cfbe2044e89d73e7129b0b013eb484df",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.29+7",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:43+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.29%2B7_openj9-0.56.0/ibm-semeru-open-jre_x64_linux_11.0.29_7_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 29
            }
        },
        {
            "checksum": {
                "hash": "88a91b6c51a9bd59fc6628bf86e7dbfb1c12033bbe0a54a010673938f86c733e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.29+7",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:43+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.29%2B7_openj9-0.56.0/ibm-semeru-open-jre_x64_mac_11.0.29_7_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 29
            }
        },
        {
            "checksum": {
                "hash": "9ddc9a371e4955d6eb5c37848aa3106f13b0001677382410fd118ca75a63cba0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.29+7",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:43+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.29%2B7_openj9-0.56.0/ibm-semeru-open-jre_x64_windows_11.0.29_7_openj9-0.56.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 29
            }
        },
        {
            "checksum": {
                "hash": "4ca447e78e820c980a11382474946f67c8d19e02c3bb92fba0c2c38001694804",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.29+7",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:43+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.29%2B7_openj9-0.56.0/ibm-semeru-open-jre_aarch64_mac_11.0.29_7_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 29
            }
        },
        {
            "checksum": {
                "hash": "9fd5b1e5f18c80d945570cd86db46f737fdecbdcd8978d502c4a601f704c6676",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.29+7",
            "packageType": "jre",
            "releaseTime": "2025-10-28T19:44:43+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.29%2B7_openj9-0.56.0/ibm-semeru-open-jre_aarch64_linux_11.0.29_7_openj9-0.56.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 29
            }
        },
        {
            "checksum": {
                "hash": "690d72d2662eba4a6c1ad04a99d1557e36d86d58e9a5cba60597ae393ba8ef26",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.28+6",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:50+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.28%2B6_openj9-0.53.0/ibm-semeru-open-jre_x64_linux_11.0.28_6_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 28
            }
        },
        {
            "checksum": {
                "hash": "07044f94b882fa83917c68f5ac36f529baaaf175a7fd8c161593567b030deb74",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.28+6",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:50+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.28%2B6_openj9-0.53.0/ibm-semeru-open-jre_x64_mac_11.0.28_6_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 28
            }
        },
        {
            "checksum": {
                "hash": "27a8a4e1e3e111088ecf0620822cf3e905eb4b0f68156c46f71aed2073f6386e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.28+6",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:50+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.28%2B6_openj9-0.53.0/ibm-semeru-open-jre_x64_windows_11.0.28_6_openj9-0.53.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 28
            }
        },
        {
            "checksum": {
                "hash": "472188b3ae9be5f0f54b481b6a597e4c930e662ad5ad19b22f47c2917bb8adbe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.28+6",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:50+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.28%2B6_openj9-0.53.0/ibm-semeru-open-jre_aarch64_mac_11.0.28_6_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 28
            }
        },
        {
            "checksum": {
                "hash": "4f4fe23f89ff85bf3715ec5fed8ef7e93699308ee57297bd8934cfa6675b14c9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.28+6",
            "packageType": "jre",
            "releaseTime": "2025-07-29T17:59:50+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.28%2B6_openj9-0.53.0/ibm-semeru-open-jre_aarch64_linux_11.0.28_6_openj9-0.53.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 28
            }
        },
        {
            "checksum": {
                "hash": "7aa093df03eb825d62a72a64a60e238e9fde2d36ed18f6e5418e07318ad155a2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.27+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:20+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.27%2B6_openj9-0.51.0/ibm-semeru-open-jre_aarch64_linux_11.0.27_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 27
            }
        },
        {
            "checksum": {
                "hash": "67dd98eb210d2d00b1bda21204097367e80dd54d99584eddc01733b0a6517fdb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.27+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:20+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.27%2B6_openj9-0.51.0/ibm-semeru-open-jre_aarch64_mac_11.0.27_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 27
            }
        },
        {
            "checksum": {
                "hash": "73b79ace5c4e01cf5b0c002799185a5db4a601b3158c690cb204e3b618ad7b6e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.27+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:20+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.27%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_linux_11.0.27_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 27
            }
        },
        {
            "checksum": {
                "hash": "34149836e47743c4d1dc232da2d85868515358f790f0aa8f474d1bb0c3fa9827",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.27+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:20+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.27%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_mac_11.0.27_6_openj9-0.51.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 27
            }
        },
        {
            "checksum": {
                "hash": "1c58c63109f0f9a43a1ade261487183d937345a27716ebb13d05be4b9991545f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.27+6",
            "packageType": "jre",
            "releaseTime": "2025-05-07T13:41:20+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.27%2B6_openj9-0.51.0/ibm-semeru-open-jre_x64_windows_11.0.27_6_openj9-0.51.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 6,
                "major": 11,
                "minor": 0,
                "security": 27
            }
        },
        {
            "checksum": {
                "hash": "2425d0daa7c0ef6603910c1c51ed7f3d8dbeb4dff8e1542957771ac5045fc21e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.26+4",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:43:31+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.26%2B4_openj9-0.49.0/ibm-semeru-open-jre_aarch64_linux_11.0.26_4_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 4,
                "major": 11,
                "minor": 0,
                "security": 26
            }
        },
        {
            "checksum": {
                "hash": "287780534cdc3e874dfc1c58a0233e3eda6178f10a24c6b021912c6d9ba5a9fb",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.26+4",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:43:31+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.26%2B4_openj9-0.49.0/ibm-semeru-open-jre_aarch64_mac_11.0.26_4_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 4,
                "major": 11,
                "minor": 0,
                "security": 26
            }
        },
        {
            "checksum": {
                "hash": "08586859b8a53aa9d5424a38838e8332664622049c3c33b1b0e5ea88b56ce2d9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.26+4",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:43:31+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.26%2B4_openj9-0.49.0/ibm-semeru-open-jre_x64_linux_11.0.26_4_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 4,
                "major": 11,
                "minor": 0,
                "security": 26
            }
        },
        {
            "checksum": {
                "hash": "476a65c070f6705c27059ade0bbf545b98696492d9b4ef15e67606194e2b6a4b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.26+4",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:43:31+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.26%2B4_openj9-0.49.0/ibm-semeru-open-jre_x64_mac_11.0.26_4_openj9-0.49.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 4,
                "major": 11,
                "minor": 0,
                "security": 26
            }
        },
        {
            "checksum": {
                "hash": "63c6c084b2885eb883892ce113a4460e5ac30cf0d82ad1aa5757d78d900d693f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.26+4",
            "packageType": "jre",
            "releaseTime": "2025-02-11T00:43:31+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.26%2B4_openj9-0.49.0/ibm-semeru-open-jre_x64_windows_11.0.26_4_openj9-0.49.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 4,
                "major": 11,
                "minor": 0,
                "security": 26
            }
        },
        {
            "checksum": {
                "hash": "3ebe7dc3fc6d7a0145d8834d01ca5adda19c1812af9a4f63655bc4de463377b6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:13:15+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.25%2B9_openj9-0.48.0/ibm-semeru-open-jre_aarch64_linux_11.0.25_9_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "7d8407bbc68303e84615d1981abbdda690236edfcff5535789dc7915a3c4f629",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:13:15+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.25%2B9_openj9-0.48.0/ibm-semeru-open-jre_x64_linux_11.0.25_9_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "dd8fbb29d31ed0e7430ebd6de11b0560e00bfced87b56d72ba0d823a03284027",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:13:15+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.25%2B9_openj9-0.48.0/ibm-semeru-open-jre_aarch64_mac_11.0.25_9_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "8ddfe4c3b430aa87d6f1f6370c95911c97bdb2aafd091cbe59cd282587932de5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:13:15+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.25%2B9_openj9-0.48.0/ibm-semeru-open-jre_x64_mac_11.0.25_9_openj9-0.48.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "9e13e497ef0ab002accbbae0bcea776d790adde1d6631b31a81870fc8afe3d9e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.25+9",
            "packageType": "jre",
            "releaseTime": "2024-12-10T23:13:15+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.25%2B9_openj9-0.48.0/ibm-semeru-open-jre_x64_windows_11.0.25_9_openj9-0.48.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 25
            }
        },
        {
            "checksum": {
                "hash": "010e099a8e6ff4f4ed1de40dfb536b59a5a3aaddeeaae38c1f4715e6a31ae462",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:47:31+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.1/ibm-semeru-open-jre_aarch64_linux_11.0.24_8_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "34ebbf10575043cc0c00b56115f2f5b58d3b05ec662e9a7a6ce5fa55d56d290a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:47:31+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.1/ibm-semeru-open-jre_x64_linux_11.0.24_8_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "cdafe442a7aeea6a95d1405d9292dc54640060a66ba8d60c5931c675b0397cb7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:47:31+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.1/ibm-semeru-open-jre_x64_windows_11.0.24_8_openj9-0.46.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "088ca3dc1a87431d50230fd35de6e607020d96f28f9da3754a9f0c3a60af4436",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:47:31+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.1/ibm-semeru-open-jre_aarch64_mac_11.0.24_8_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "a08f2aff5fc53d6cda3de0b0952b9d2a41ed9af14994b7db8bbe2f3bd1042345",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-09-10T17:47:31+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.1/ibm-semeru-open-jre_x64_mac_11.0.24_8_openj9-0.46.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "a034c932d1cc74c1a4d980eb49330c931c9ea0f6191d6032ec1043bb147dcf98",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:58+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.0/ibm-semeru-open-jre_aarch64_linux_11.0.24_8_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "c7c0d0c44073568cf2e04d0f4df63546364f97cde4c856d608511ba3c9198b19",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:58+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.0/ibm-semeru-open-jre_x64_linux_11.0.24_8_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "53706cf7d5fdff45231f8a428eccbfb4317a814dfe9c75e0334a287a4835d409",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:58+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.0/ibm-semeru-open-jre_x64_windows_11.0.24_8_openj9-0.46.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "0f9fc29f9baf1babe84668c8d47fc58f2b399e400108d480166f66e893207024",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:58+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.0/ibm-semeru-open-jre_aarch64_mac_11.0.24_8_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "20c856412b3a07d489c640479004f4df1831ff6955af68029157e189bbb1fcac",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.24+8",
            "packageType": "jre",
            "releaseTime": "2024-08-09T13:49:58+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.24%2B8_openj9-0.46.0/ibm-semeru-open-jre_x64_mac_11.0.24_8_openj9-0.46.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 24
            }
        },
        {
            "checksum": {
                "hash": "8613dc2b6c403f48d2a8e25da92ab9f8a7b5dd63cb81d1917e4cb070ae371557",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:36+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_linux_11.0.23_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "b9558416d6d773fce0d9b4d3f875fdfc5ffc1afd922570b0f7a6f7cbab7468ab",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:36+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_linux_11.0.23_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "4089019a429e8c95c77451c2a51529c753d6c3ab07f5a4e52ca97801ec0b07fe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:36+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_windows_11.0.23_9_openj9-0.44.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "be6ba7e6904e8ca2fab9dab38607af1e4d36f6a391584eb8c4de0804493f3626",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:36+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_aarch64_mac_11.0.23_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "9f9505e9ee5082c070de965c790d51758a9969b7bb9ca49057d0d5afb5cfc99b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.23+9",
            "packageType": "jre",
            "releaseTime": "2024-05-23T19:16:36+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.23%2B9_openj9-0.44.0/ibm-semeru-open-jre_x64_mac_11.0.23_9_openj9-0.44.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 23
            }
        },
        {
            "checksum": {
                "hash": "cf723eca95f805d5ba0dfc33aa798ccd9f2a1984d2dc72c0b2fed5df804e8edf",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:48:53+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_linux_11.0.22_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "c0677152632c8da8b840b9b4475046318b25dcb3e15096f5f7fd6a49952afd6a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:48:53+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_linux_11.0.22_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "7727fa59521dd46900e5bdeb7f10b9613a0b9200def367dcd8dae8525543d7c5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:48:53+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_windows_11.0.22_7_openj9-0.43.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "8002fe1c531144d1748d0d1d352b14bcd9fcf3bffdd9af45e87f449f28d64585",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:48:53+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_aarch64_mac_11.0.22_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "7b3261229ff3e44dcdc2bccbc15e2a3e8ffdb64df3f25a28825a362c8c6c63b0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.22+7",
            "packageType": "jre",
            "releaseTime": "2024-02-05T17:48:53+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.22%2B7_openj9-0.43.0/ibm-semeru-open-jre_x64_mac_11.0.22_7_openj9-0.43.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 22
            }
        },
        {
            "checksum": {
                "hash": "5eb5d5d6006e1066b5c72d3b000f1c8fda572fa64189af103ef1176235cd3174",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:04:18+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.21%2B9_openj9-0.41.0/ibm-semeru-open-jre_aarch64_linux_11.0.21_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "324f7e8d75490cc76d5cf6a46b43f50ec1206a97d49e1549d1c65f1583fc51d5",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:04:18+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.21%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_linux_11.0.21_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "ec7975c4e5693a271822fdc60ac2e89057f0acbf3e7712c29244fe03cbb9eb42",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:04:18+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.21%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_windows_11.0.21_9_openj9-0.41.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "fd280d597599fd23a14abdbef0e07c502326e6710dcf0676d77bf69bda83f558",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:04:18+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.21%2B9_openj9-0.41.0/ibm-semeru-open-jre_x64_mac_11.0.21_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "b9f42b9c1855f524233dd8663d0b0d6e352653fd9d0a1d6ee8ef69cfb6f1466c",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.21+9",
            "packageType": "jre",
            "releaseTime": "2023-11-28T20:04:18+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.21%2B9_openj9-0.41.0/ibm-semeru-open-jre_aarch64_mac_11.0.21_9_openj9-0.41.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 21
            }
        },
        {
            "checksum": {
                "hash": "26473d8dfd63b412ee3df4bffa0d3f7e5071dff23805f8df98ef0723712efb97",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:25+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_aarch64_linux_11.0.20.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "315c4158f93977aa3b85cd4266710bad658c889b8ba1d77033697220c595c4c2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:25+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_linux_11.0.20.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "1c958e0b2f09116306e77a669c6302590fa6160d7df4e2f51c45a623acdbd3be",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:25+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_windows_11.0.20.1_1_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "73af50fe5bf46e44466eacfde3e6b497103e2f5b8a4cac93366d3b820fa190a2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:25+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_aarch64_mac_11.0.20.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "2789756128713f50477eb09756026340936f07b52a9ff863657d24d0ec4bd5b7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+1",
            "packageType": "jre",
            "releaseTime": "2023-08-30T19:20:25+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20.1%2B1_openj9-0.40.0/ibm-semeru-open-jre_x64_mac_11.0.20.1_1_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "9e18c0e333f6d6c7962ccc0c2531c27921c4b76e108fded459e0659038c21f21",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:32:41+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20%2B8_openj9-0.40.0/ibm-semeru-open-jre_aarch64_linux_11.0.20_8_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "7706a511bded7b3972cdb98c5c7942b8f2dcf9ab4c2a6e81d72fb8a754812bb2",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:32:41+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20%2B8_openj9-0.40.0/ibm-semeru-open-jre_x64_linux_11.0.20_8_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "36db29adc5e7fc6be1cb8f6040708aff00921057d0ce58b4be5a68ea85567b9b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:32:41+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20%2B8_openj9-0.40.0/ibm-semeru-open-jre_x64_windows_11.0.20_8_openj9-0.40.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "1b4894ed535b91fc52948c620cb86ea6905f76b9a980d6bd425697c679d0c71e",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:32:41+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20%2B8_openj9-0.40.0/ibm-semeru-open-jre_aarch64_mac_11.0.20_8_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "3f0ff57b0798ac5e22ff77944d6139b1b3dc3bc9d7fa58a2c7518f403635302b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.20+8",
            "packageType": "jre",
            "releaseTime": "2023-08-12T01:32:41+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.20%2B8_openj9-0.40.0/ibm-semeru-open-jre_x64_mac_11.0.20_8_openj9-0.40.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 20
            }
        },
        {
            "checksum": {
                "hash": "7e7512bc0afbc620a4389410691340f8806eb6c113042bd5860f51e8d64f5afe",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T16:40:33+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.19%2B7_openj9-0.38.0/ibm-semeru-open-jre_aarch64_linux_11.0.19_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "35c25a4fe4cb1ab1c5e6605bc8dc6db54beca6f3d7745da2742bd0e627682ee3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T16:40:33+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.19%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_linux_11.0.19_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "66ba04bcdcdada5776912d68bd7c43a69c2e578140a38fbd027e6d3a972335ee",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T16:40:33+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.19%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_windows_11.0.19_7_openj9-0.38.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "00deaa5f2ef52e7b1e668101905776b35bee2a42638313c2683c41de9d1ffc77",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T16:40:33+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.19%2B7_openj9-0.38.0/ibm-semeru-open-jre_aarch64_mac_11.0.19_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "89d7211890a9109940f22347b9562f4734a48e4a0409d5f338a2f8d9d3cb1b35",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.19+7",
            "packageType": "jre",
            "releaseTime": "2023-05-26T16:40:33+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.19%2B7_openj9-0.38.0/ibm-semeru-open-jre_x64_mac_11.0.19_7_openj9-0.38.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 19
            }
        },
        {
            "checksum": {
                "hash": "b7dae99808061eb1774e3af436453c48c30c01213a1613ca53df698276844f65",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T04:23:20+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.18%2B10_openj9-0.36.1/ibm-semeru-open-jre_aarch64_linux_11.0.18_10_openj9-0.36.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "509a8c1e533c41896fddab187a8f6712ce1121d19eff71f4f023b58969147c9f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T04:23:20+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.18%2B10_openj9-0.36.1/ibm-semeru-open-jre_x64_linux_11.0.18_10_openj9-0.36.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "34b9d2e85319d16a12d634f2cf65004a668000d1dfd1922736c0d78b4b0b39e9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T04:23:20+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.18%2B10_openj9-0.36.1/ibm-semeru-open-jre_x64_windows_11.0.18_10_openj9-0.36.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "d07123b484d9410d3aa4d746cc4dbec3ca1130d3aaf149d1cb34721211cba8f3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T04:23:20+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.18%2B10_openj9-0.36.1/ibm-semeru-open-jre_aarch64_mac_11.0.18_10_openj9-0.36.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "08538668bc013cce8c7ae45562141d56b8d9108d88ab442b0b39bdc7a215ca3a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.18+10",
            "packageType": "jre",
            "releaseTime": "2023-02-15T04:23:20+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.18%2B10_openj9-0.36.1/ibm-semeru-open-jre_x64_mac_11.0.18_10_openj9-0.36.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 18
            }
        },
        {
            "checksum": {
                "hash": "ab7f01a961559b49ce9b0a76af20191b7c047c6c1b6e5258e38f6c38de8cdc3f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:12+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.17%2B8_openj9-0.35.0/ibm-semeru-open-jre_aarch64_linux_11.0.17_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "b1d31a4165cabcad66771a05acf8ff750f40953558494ba8d88e97fac55af6a9",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:12+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.17%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_linux_11.0.17_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "8751e76b653625ef8d230156029c1fa796843397d1c58c29db9af941bc24d6d6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:12+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.17%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_windows_11.0.17_8_openj9-0.35.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "990c3a7652f3f1dedd727543e5a4ae4d0cc90aabd1104996a2316c36269f7e87",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.17+8",
            "packageType": "jre",
            "releaseTime": "2022-11-07T14:27:12+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.17%2B8_openj9-0.35.0/ibm-semeru-open-jre_x64_mac_11.0.17_8_openj9-0.35.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 17
            }
        },
        {
            "checksum": {
                "hash": "843557b315464818b70e6814288618e2e9645455ee67faa18ada299e6fa7c50f",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:51+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_aarch64_linux_11.0.16.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "038a44d5c81f14bce6458040f7b4eec48535dcbbdc59e3c536d6adc3326b64c7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:51+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_linux_11.0.16.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "68f396df580c9b4a98ff0c53489c20de87b24aa98b5ec239e70ef09ea7986d20",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:51+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_windows_11.0.16.1_1_openj9-0.33.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "6179c9217689cd45f825d6e4fc9c707ab23fbd6e82a2e4b2ad03925a3aad5e3a",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:51+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_x64_mac_11.0.16.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "8329f83626f89c5d1d45d325b0e9074ada2f5f0832758bf3051a798146aef7e4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+1",
            "packageType": "jre",
            "releaseTime": "2022-08-19T03:54:51+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16.1%2B1_openj9-0.33.1/ibm-semeru-open-jre_aarch64_mac_11.0.16.1_1_openj9-0.33.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "49dc05a3e9f3f99c5f8fa466261aa3e33a753694c67cabfa7d3f682e5a2e3685",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:56:18+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16%2B8_openj9-0.33.0/ibm-semeru-open-jre_aarch64_linux_11.0.16_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "ba09711193b8b8664478f3f949b5320232f65c1bdf61f32a885d84de73c02767",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:56:18+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_linux_11.0.16_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "b7796c3f27e21640140fd3e731ae5ad020065dcfaaaf133f11e2ac9744c97ec3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:56:18+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_windows_11.0.16_8_openj9-0.33.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "92f87a3c2fb5fe60d3d51020ff95b9c234b2ae2677b79aebbe749dda717c9cdd",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:56:18+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16%2B8_openj9-0.33.0/ibm-semeru-open-jre_x64_mac_11.0.16_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "6b95572cf175d4242aabff3e7a5e512633145ee515ce067772114a52f91123df",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.16+8",
            "packageType": "jre",
            "releaseTime": "2022-08-07T05:56:18+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.16%2B8_openj9-0.33.0/ibm-semeru-open-jre_aarch64_mac_11.0.16_8_openj9-0.33.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 16
            }
        },
        {
            "checksum": {
                "hash": "69e4a0b383c7b4187478ddb196de3cdc91560e2be40b8ef66354591e87c36e85",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:37:49+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.15%2B10_openj9-0.32.0/ibm-semeru-open-jre_aarch64_linux_11.0.15_10_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "25d4d5e2bbe3eb19bcb9a76aec4b43d4eef5ad66200df3122118f69da5325cf6",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:37:49+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.15%2B10_openj9-0.32.0/ibm-semeru-open-jre_x64_linux_11.0.15_10_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "09b8cd0a994af2b7d7a16b80a2d053b60d960c4906d5b2b516d8eb18a3d162a4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:37:49+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.15%2B10_openj9-0.32.0/ibm-semeru-open-jre_x64_windows_11.0.15_10_openj9-0.32.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "bd1049aa98471e17e6792ef3faab912cef9b427ca86a2eebb8c39c107592e3b7",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:37:49+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.15%2B10_openj9-0.32.0/ibm-semeru-open-jre_x64_mac_11.0.15_10_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "3c35c6dde64ecdd15d1cda62588db192902f0ba4f4a35545ff30477dda6568ba",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.15+10",
            "packageType": "jre",
            "releaseTime": "2022-04-23T03:37:49+00:00",
            "runtimeOS": "mac-os-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.15%2B10_openj9-0.32.0/ibm-semeru-open-jre_aarch64_mac_11.0.15_10_openj9-0.32.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 10,
                "major": 11,
                "minor": 0,
                "security": 15
            }
        },
        {
            "checksum": {
                "hash": "5074c60c0f71cd4523e52c6ebb0b1fb897723f9e3988f0c27cc126c774eb7bf8",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T20:02:21+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14.1%2B1_openj9-0.30.1/ibm-semeru-open-jre_aarch64_linux_11.0.14.1_1_openj9-0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "fb15a9ab7e531673f108c12919f08b4495729eeadf33a5f28d1905b420202c5b",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T20:02:21+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14.1%2B1_openj9-0.30.1/ibm-semeru-open-jre_x64_linux_11.0.14.1_1_openj9-0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "6246956d7bf8e0c17674371da73eb87fa1e0d5311c96fb22ffb3d4d4e938e225",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T20:02:21+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14.1%2B1_openj9-0.30.1/ibm-semeru-open-jre_x64_windows_11.0.14.1_1_openj9-0.30.1.zip",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "121ff3e84b45c94f07a2f7b1d6dda80eabba6baf9da8ac47a81c5fe672545eb0",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+1",
            "packageType": "jre",
            "releaseTime": "2022-02-10T20:02:21+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14.1%2B1_openj9-0.30.1/ibm-semeru-open-jre_x64_mac_11.0.14.1_1_openj9-0.30.1.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 1,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "e332a76aa4ad3d75d3d2c8bc3c5698ca1fde3a9b003ac5ca5405f4f184a57e79",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:43+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jre_aarch64_linux_11.0.14_9_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "587681b2d9098e110be0b17b03349d83995abcc51e47a386b5ecc5edf89c8b46",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:43+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jre_x64_linux_11.0.14_9_openj9-0.30.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "0ea8e494fbc375e122f37d7d3e04547ad74ae09dc8ef5d4e98795938164d29d1",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.14+9",
            "packageType": "jre",
            "releaseTime": "2022-01-28T14:13:43+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.14%2B9_openj9-0.30.0/ibm-semeru-open-jre_x64_windows_11.0.14_9_openj9-0.30.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 9,
                "major": 11,
                "minor": 0,
                "security": 14
            }
        },
        {
            "checksum": {
                "hash": "b56f464c2f46aa779897f076edb4c3c37d0280784bcc3b7a46228a32a9e62470",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:14+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jre_aarch64_linux_11.0.13_8_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "78eb54af15fac39eb2d254f51f0302aa213d3ad838f17766a9d081ca783edff4",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:14+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jre_x64_linux_11.0.13_8_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "222ee71b211f806268e6e751a3136ea7b6cd63bc67ec61115a3d4a387f2375d3",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:14+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jre_x64_windows_11.0.13_8_openj9-0.29.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "4b75ff4c072875384bb753defef97251b0aaeff7828dc76e49523038fc3b8288",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.13+8",
            "packageType": "jre",
            "releaseTime": "2021-10-22T16:14:14+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.13%2B8_openj9-0.29.0/ibm-semeru-open-jre_x64_mac_11.0.13_8_openj9-0.29.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 8,
                "major": 11,
                "minor": 0,
                "security": 13
            }
        },
        {
            "checksum": {
                "hash": "f352998f6fdf0b84f63c563608be57f30aa3f14c8117c1219422dbc712ad4f81",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-03T16:16:45+00:00",
            "runtimeOS": "linux-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jre_x64_linux_11.0.12_7_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "01b475ea245c1b39ef0695578299d0605992669f7a4ba3b1bf7d3bc3d5d2e054",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-03T16:16:45+00:00",
            "runtimeOS": "windows-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jre_x64_windows_11.0.12_7_openj9-0.27.0.zip",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "2ef8b9fec0be923a7333e6152c1b94430da1709dbe6145957003307df8c55809",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-03T16:16:45+00:00",
            "runtimeOS": "mac-os-x64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jre_x64_mac_11.0.12_7_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        },
        {
            "checksum": {
                "hash": "06fa66b99d3c9ba07f117860ef653d52bcb19dac1ea598c15f3b4eec9f832b36",
                "type": "sha256"
            },
            "downloadType": "archive",
            "name": "ibm_semeru-open_jre11.0.12+7",
            "packageType": "jre",
            "releaseTime": "2021-08-03T16:16:45+00:00",
            "runtimeOS": "linux-arm64",
            "url": "https://github.com/AdoptOpenJDK/semeru11-binaries/releases/download/jdk-11.0.12%2B7_openj9-0.27.0/ibm-semeru-open-jre_aarch64_linux_11.0.12_7_openj9-0.27.0.tar.gz",
            "vendor": "ibm",
            "version": {
                "build": 7,
                "major": 11,
                "minor": 0,
                "security": 12
            }
        }
    ],
    "uid": "com.ibm.java",
    "version": "java11"
}