@nexeraid/identity-schemas 2.78.0-dev → 2.79.0-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/{CoinMarketCap.schema-aa5828c7.cjs.prod.cjs → CoinMarketCap.schema-898f7352.cjs.prod.cjs} +2 -2
  2. package/dist/{CoinMarketCap.schema-c0235e2f.esm.mjs → CoinMarketCap.schema-9ed30efb.esm.mjs} +2 -2
  3. package/dist/{CoinMarketCap.schema-bf7b056e.cjs.dev.cjs → CoinMarketCap.schema-cb2cb990.cjs.dev.cjs} +2 -2
  4. package/dist/declarations/src/vault/schemas/generated/Transaction.schema.json.d.ts +800 -0
  5. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts +18 -0
  6. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts.map +1 -1
  7. package/dist/declarations/src/vault/vault.schema.d.ts +141 -0
  8. package/dist/declarations/src/vault/vault.schema.d.ts.map +1 -1
  9. package/dist/{identity-api.schema-5d1ea875.cjs.prod.cjs → identity-api.schema-281e27f8.cjs.prod.cjs} +1 -1
  10. package/dist/{identity-api.schema-c8cf0fc7.cjs.dev.cjs → identity-api.schema-924918d6.cjs.dev.cjs} +1 -1
  11. package/dist/{identity-api.schema-9d6c83f9.esm.mjs → identity-api.schema-a1e12180.esm.mjs} +1 -1
  12. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +3 -3
  13. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +3 -3
  14. package/dist/nexeraid-identity-schemas.esm.mjs +4 -4
  15. package/dist/package.json +1 -1
  16. package/dist/{tfhe-utilities-7701c871.cjs.prod.cjs → tfhe-utilities-791a7163.cjs.prod.cjs} +2 -2
  17. package/dist/{tfhe-utilities-6de59992.cjs.dev.cjs → tfhe-utilities-dadd90dd.cjs.dev.cjs} +2 -2
  18. package/dist/{tfhe-utilities-1053105c.esm.mjs → tfhe-utilities-ec01285b.esm.mjs} +2 -2
  19. package/dist/{vault.schema-9359863a.esm.mjs → vault.schema-1731457a.esm.mjs} +826 -2
  20. package/dist/{vault.schema-2f9ee3e3.cjs.prod.cjs → vault.schema-2462a106.cjs.prod.cjs} +826 -2
  21. package/dist/{vault.schema-89066148.cjs.dev.cjs → vault.schema-bcad47da.cjs.dev.cjs} +826 -2
  22. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
  23. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
  24. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
  25. package/package.json +1 -1
  26. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +3 -3
  27. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +3 -3
  28. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
  29. package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +1 -1
  30. package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +1 -1
  31. package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +1 -1
  32. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
  33. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
  34. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
  35. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +3 -3
  36. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +3 -3
  37. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +4 -4
@@ -1157,6 +1157,806 @@ interface Transaction {
1157
1157
  };
1158
1158
  additionalProperties: false;
1159
1159
  };
1160
+ walletScreening: {
1161
+ type: "object";
1162
+ properties: {
1163
+ riskLevel: {
1164
+ type: "string";
1165
+ enum: [
1166
+ "No Risk",
1167
+ "Low Risk",
1168
+ "Medium Risk",
1169
+ "High Risk",
1170
+ "Critical Risk",
1171
+ ];
1172
+ };
1173
+ riskScore: { type: "number"; minimum: 0; maximum: 100 };
1174
+ firstActive: { type: "number" };
1175
+ lastActive: { type: "number" };
1176
+ lastScreened: { type: "number" };
1177
+ entities: {
1178
+ type: "array";
1179
+ items: {
1180
+ type: "object";
1181
+ properties: {
1182
+ name: { type: "string" };
1183
+ entityType: {
1184
+ type: "string";
1185
+ enum: [
1186
+ "ATM",
1187
+ "Airdrop",
1188
+ "Auctioned assets",
1189
+ "Bank",
1190
+ "Block reward",
1191
+ "Bot",
1192
+ "Child abuse",
1193
+ "Cloud mining",
1194
+ "Community reported scam",
1195
+ "Cross-chain Bridge Protocol",
1196
+ "Darkweb",
1197
+ "Decentralized service",
1198
+ "Dex",
1199
+ "Donations",
1200
+ "Exchange",
1201
+ "Gambling",
1202
+ "Hack",
1203
+ "ICO",
1204
+ "Ignored small amounts",
1205
+ "Investment management firm",
1206
+ "Large transaction",
1207
+ "Large unnamed entity",
1208
+ "Mining pool",
1209
+ "Mixing pattern",
1210
+ "Mixing service",
1211
+ "NFT Marketplace",
1212
+ "No entities found",
1213
+ "Ongoing legal action",
1214
+ "Payment Service Provider",
1215
+ "Payment channel",
1216
+ "Peeling chain of unknown origin",
1217
+ "Phishing",
1218
+ "Ransomware",
1219
+ "Real World Asset",
1220
+ "Sanction list",
1221
+ "Scam",
1222
+ "Seized assets",
1223
+ "Service",
1224
+ "Staking pool",
1225
+ "Suspicious",
1226
+ "Terrorism",
1227
+ "Token",
1228
+ "Token burning",
1229
+ "Token minting",
1230
+ "Unspent output",
1231
+ "Wallet",
1232
+ "OFAC sanction list",
1233
+ "Closed exchange",
1234
+ "Custom group",
1235
+ ];
1236
+ };
1237
+ };
1238
+ required: ["name", "entityType"];
1239
+ additionalProperties: false;
1240
+ };
1241
+ };
1242
+ blockchainsActive: {
1243
+ type: "array";
1244
+ items: {
1245
+ type: "string";
1246
+ enum: [
1247
+ "BITCOIN",
1248
+ "ETHEREUM",
1249
+ "BITCOINCASH",
1250
+ "LITECOIN",
1251
+ "DASH",
1252
+ "RIPPLE",
1253
+ "TEZOS",
1254
+ "TRON",
1255
+ "BSC",
1256
+ "STELLAR",
1257
+ "CARDANO",
1258
+ "ZCASH",
1259
+ "MONERO",
1260
+ "SOLANA",
1261
+ "POLKADOT",
1262
+ "ICON",
1263
+ "DOGECOIN",
1264
+ "FILECOIN",
1265
+ "ARBITRUMONE",
1266
+ "COSMOS",
1267
+ "ALGORAND",
1268
+ "CELO",
1269
+ "POLYGON",
1270
+ "EOS",
1271
+ "ETHEREUMCLASSIC",
1272
+ "FLOW",
1273
+ "FANTOM",
1274
+ "MOONBEAM",
1275
+ "GROESTLCOIN",
1276
+ "INTERNETCOMPUTERPROTOCOL",
1277
+ "INJECTIVEPROTOCOL",
1278
+ "KUSAMA",
1279
+ "LISK",
1280
+ "TERRACLASSIC",
1281
+ "MOONRIVER",
1282
+ "NEARPROTOCOL",
1283
+ "BITCOINGOLD",
1284
+ "THORCHAIN",
1285
+ "SIACOIN",
1286
+ "ECREDITS",
1287
+ "BITCOINSV",
1288
+ "RADIX",
1289
+ "STACKS",
1290
+ "THETANETWORK",
1291
+ "VECHAIN",
1292
+ "VITE",
1293
+ "ZILLIQA",
1294
+ "NEM",
1295
+ "NEO",
1296
+ "VERGE",
1297
+ "AVALANCHE",
1298
+ "GNOSIS",
1299
+ "APTOS",
1300
+ "BNBBEACONCHAIN",
1301
+ "OPTIMISM",
1302
+ "VENIDIUM",
1303
+ "MULTIVERSX",
1304
+ "HARMONY",
1305
+ "TON",
1306
+ "WEMIX",
1307
+ "CRONOS",
1308
+ "AVALANCHEP-XCHAIN",
1309
+ "SUI",
1310
+ "METIS",
1311
+ "AETERNITY",
1312
+ "COTI",
1313
+ "CASPER",
1314
+ "CONSTELLATION",
1315
+ "ELECTRONEUM",
1316
+ "EVERSCALE",
1317
+ "DECENTRALIZEDPICTURES",
1318
+ "HEDERA",
1319
+ "CIRRUS",
1320
+ "HATHOR",
1321
+ "KADENA",
1322
+ "STRATIS",
1323
+ "IOST",
1324
+ "DIGIBYTE",
1325
+ "KOMODO",
1326
+ "RAVENCOIN",
1327
+ "TELOS",
1328
+ "DIGITALBITS",
1329
+ "NERVOS",
1330
+ "DIVI",
1331
+ "HIVE",
1332
+ "NANO",
1333
+ "XDCNETWORK",
1334
+ "FUSE",
1335
+ "ZKSYNC",
1336
+ "BOBA",
1337
+ "HECO",
1338
+ "PULSECHAIN",
1339
+ "BASE",
1340
+ "HELIUM",
1341
+ "DOGECHAIN",
1342
+ "KASPA",
1343
+ "MANTLE",
1344
+ "SEI",
1345
+ "COMDEX",
1346
+ "FIRO",
1347
+ "ECASH",
1348
+ "XDAG",
1349
+ "RONIN",
1350
+ "KLEVER",
1351
+ "BAHAMUT",
1352
+ "FLARE",
1353
+ "CELESTIA",
1354
+ "BNBOPTIMISTIC",
1355
+ "OSMOSIS",
1356
+ "MANTANETWORK",
1357
+ "CONFLUX",
1358
+ "IOTA",
1359
+ "STARKNET",
1360
+ "PARTISIA",
1361
+ "LINEA",
1362
+ "NIBIRUCHAIN",
1363
+ "DYDXCHAIN",
1364
+ "DYMENSION",
1365
+ "OKB",
1366
+ "POLYGONZKEVM",
1367
+ "LUMIA",
1368
+ ];
1369
+ };
1370
+ };
1371
+ countries: {
1372
+ type: "array";
1373
+ items: {
1374
+ type: "string";
1375
+ enum: [
1376
+ "Afghanistan",
1377
+ "Åland Islands",
1378
+ "Albania",
1379
+ "Algeria",
1380
+ "American Samoa",
1381
+ "Andorra",
1382
+ "Angola",
1383
+ "Anguilla",
1384
+ "Antigua and Barbuda",
1385
+ "Argentina",
1386
+ "Armenia",
1387
+ "Aruba",
1388
+ "Australia",
1389
+ "Austria",
1390
+ "Azerbaijan",
1391
+ "Bahamas",
1392
+ "Bahrain",
1393
+ "Bangladesh",
1394
+ "Barbados",
1395
+ "Belarus",
1396
+ "Belgium",
1397
+ "Belize",
1398
+ "Benin",
1399
+ "Bermuda",
1400
+ "Bhutan",
1401
+ "Bolivia",
1402
+ "Bonaire, Sint Eustatius and Saba",
1403
+ "Bosnia-Herzegovina",
1404
+ "Botswana",
1405
+ "Brazil",
1406
+ "British Indian Ocean Territory",
1407
+ "British Virgin Islands",
1408
+ "Brunei Darussalam",
1409
+ "Bulgaria",
1410
+ "Burkina Faso",
1411
+ "Burundi",
1412
+ "Cambodia",
1413
+ "Cameroon",
1414
+ "Canada",
1415
+ "Cape Verde",
1416
+ "Cayman Islands",
1417
+ "Central African Rep",
1418
+ "Chad",
1419
+ "Chile",
1420
+ "China",
1421
+ "Christmas Island",
1422
+ "Cocos (Keeling) Islands",
1423
+ "Colombia",
1424
+ "Comoros",
1425
+ "Congo (Brazzaville)",
1426
+ "Congo, the Democratic Republic",
1427
+ "Cook Islands",
1428
+ "Costa Rica",
1429
+ "Cote D'Ivoire",
1430
+ "Croatia",
1431
+ "Cuba",
1432
+ "Curacao",
1433
+ "Cyprus",
1434
+ "Czech Republic",
1435
+ "Denmark",
1436
+ "Djibouti",
1437
+ "Dominica",
1438
+ "Dominican Republic",
1439
+ "Ecuador",
1440
+ "Egypt",
1441
+ "El Salvador",
1442
+ "Equatorial Guinea",
1443
+ "Eritrea",
1444
+ "Estonia",
1445
+ "Eswatini",
1446
+ "Ethiopia",
1447
+ "Falkland Islands (Malvinas)",
1448
+ "Faroe islands",
1449
+ "Fiji",
1450
+ "Finland",
1451
+ "France",
1452
+ "French Guiana",
1453
+ "French Polynesia",
1454
+ "Gabon",
1455
+ "Gambia",
1456
+ "Georgia",
1457
+ "Germany",
1458
+ "Ghana",
1459
+ "Gibraltar",
1460
+ "Greece",
1461
+ "Greenland",
1462
+ "Grenada",
1463
+ "Guadeloupe",
1464
+ "Guam",
1465
+ "Guatemala",
1466
+ "Guernsey",
1467
+ "Guinea",
1468
+ "Guinea Bissau",
1469
+ "Guyana",
1470
+ "Haiti",
1471
+ "Honduras",
1472
+ "Hong Kong",
1473
+ "Hungary",
1474
+ "Iceland",
1475
+ "India",
1476
+ "Indonesia",
1477
+ "Iran, Islamic Republic of",
1478
+ "Iraq",
1479
+ "Ireland",
1480
+ "Isle Of Man",
1481
+ "Israel",
1482
+ "Italy",
1483
+ "Jamaica",
1484
+ "Japan",
1485
+ "Jersey",
1486
+ "Jordan",
1487
+ "Kazakhstan",
1488
+ "Kenya",
1489
+ "Kiribati",
1490
+ "Kosovo",
1491
+ "Kuwait",
1492
+ "Kyrgyzstan",
1493
+ "Lao People's Democratic Republic",
1494
+ "Latvia",
1495
+ "Lebanon",
1496
+ "Lesotho",
1497
+ "Liberia",
1498
+ "Libya",
1499
+ "Liechtenstein",
1500
+ "Lithuania",
1501
+ "Luxembourg",
1502
+ "Macau",
1503
+ "Madagascar",
1504
+ "Malawi",
1505
+ "Malaysia",
1506
+ "Maldives",
1507
+ "Mali",
1508
+ "Malta",
1509
+ "Marshall Islands",
1510
+ "Martinique",
1511
+ "Mauritania",
1512
+ "Mauritius",
1513
+ "Mayotte",
1514
+ "Mexico",
1515
+ "Micronesia",
1516
+ "Moldova",
1517
+ "Monaco",
1518
+ "Mongolia",
1519
+ "Montenegro",
1520
+ "Montserrat",
1521
+ "Morocco",
1522
+ "Mozambique",
1523
+ "Myanmar",
1524
+ "Namibia",
1525
+ "Nauru",
1526
+ "Nepal",
1527
+ "Netherlands",
1528
+ "New Caledonia",
1529
+ "New Zealand",
1530
+ "Nicaragua",
1531
+ "Niger",
1532
+ "Nigeria",
1533
+ "Niue",
1534
+ "Norfolk Island",
1535
+ "North Korea",
1536
+ "North Macedonia",
1537
+ "North Mariana Islands",
1538
+ "Norway",
1539
+ "Oman",
1540
+ "Pakistan",
1541
+ "Palau",
1542
+ "Palestine, State of",
1543
+ "Panama",
1544
+ "Papua New Guinea",
1545
+ "Paraguay",
1546
+ "Peru",
1547
+ "Philippines",
1548
+ "Pitcairn",
1549
+ "Poland",
1550
+ "Portugal",
1551
+ "Puerto Rico",
1552
+ "Qatar",
1553
+ "Réunion",
1554
+ "Romania",
1555
+ "Russian Federation",
1556
+ "Rwanda",
1557
+ "Saint Barthélemy",
1558
+ "Saint Helena, Ascension and Tristan",
1559
+ "Saint Kitts & Nevis",
1560
+ "Saint Lucia",
1561
+ "Saint Maarten",
1562
+ "Saint Martin (French part)",
1563
+ "Saint Pierre and Miquelon",
1564
+ "Saint Vincent & Grenadines",
1565
+ "Samoa",
1566
+ "San Marino",
1567
+ "Sao Tome & Prin.",
1568
+ "Saudi Arabia",
1569
+ "Senegal",
1570
+ "Serbia",
1571
+ "Seychelles",
1572
+ "Sierra Leone",
1573
+ "Singapore",
1574
+ "Slovakia",
1575
+ "Slovenia",
1576
+ "Solomon Islands",
1577
+ "Somalia",
1578
+ "South Africa",
1579
+ "South Korea",
1580
+ "South Sudan",
1581
+ "Spain",
1582
+ "Sri Lanka",
1583
+ "Sudan",
1584
+ "Suriname",
1585
+ "Svalbard and Mayen",
1586
+ "Sweden",
1587
+ "Switzerland",
1588
+ "Syria",
1589
+ "Taiwan",
1590
+ "Tajikistan",
1591
+ "Tanzania",
1592
+ "Thailand",
1593
+ "Timor-Leste",
1594
+ "Togo",
1595
+ "Tokelau",
1596
+ "Tonga",
1597
+ "Trinidad & Tobago",
1598
+ "Tunisia",
1599
+ "Turkey",
1600
+ "Turkmenistan",
1601
+ "Turks & Caicos",
1602
+ "Tuvalu",
1603
+ "Uganda",
1604
+ "Ukraine",
1605
+ "United Arab Emirates",
1606
+ "United Kingdom",
1607
+ "United States",
1608
+ "United States Virgin Islands",
1609
+ "Uruguay",
1610
+ "Uzbekistan",
1611
+ "Vanuatu",
1612
+ "Vatican City State (Holy See)",
1613
+ "Venezuela",
1614
+ "Vietnam",
1615
+ "Wallis and Futuna",
1616
+ "Western Sahara",
1617
+ "Yemen",
1618
+ "Zambia",
1619
+ "Zimbabwe",
1620
+ "Undefined",
1621
+ "Netherlands Antiles",
1622
+ "Antarctica",
1623
+ "Bouvet Island",
1624
+ "French Southern Territories",
1625
+ "Heard Island & Mcdonald Islands",
1626
+ "South Georgia And Sandwich Isl.",
1627
+ "United States Outlying Islands",
1628
+ ];
1629
+ };
1630
+ };
1631
+ relatedCountries: {
1632
+ type: "array";
1633
+ items: {
1634
+ type: "string";
1635
+ enum: [
1636
+ "Afghanistan",
1637
+ "Åland Islands",
1638
+ "Albania",
1639
+ "Algeria",
1640
+ "American Samoa",
1641
+ "Andorra",
1642
+ "Angola",
1643
+ "Anguilla",
1644
+ "Antigua and Barbuda",
1645
+ "Argentina",
1646
+ "Armenia",
1647
+ "Aruba",
1648
+ "Australia",
1649
+ "Austria",
1650
+ "Azerbaijan",
1651
+ "Bahamas",
1652
+ "Bahrain",
1653
+ "Bangladesh",
1654
+ "Barbados",
1655
+ "Belarus",
1656
+ "Belgium",
1657
+ "Belize",
1658
+ "Benin",
1659
+ "Bermuda",
1660
+ "Bhutan",
1661
+ "Bolivia",
1662
+ "Bonaire, Sint Eustatius and Saba",
1663
+ "Bosnia-Herzegovina",
1664
+ "Botswana",
1665
+ "Brazil",
1666
+ "British Indian Ocean Territory",
1667
+ "British Virgin Islands",
1668
+ "Brunei Darussalam",
1669
+ "Bulgaria",
1670
+ "Burkina Faso",
1671
+ "Burundi",
1672
+ "Cambodia",
1673
+ "Cameroon",
1674
+ "Canada",
1675
+ "Cape Verde",
1676
+ "Cayman Islands",
1677
+ "Central African Rep",
1678
+ "Chad",
1679
+ "Chile",
1680
+ "China",
1681
+ "Christmas Island",
1682
+ "Cocos (Keeling) Islands",
1683
+ "Colombia",
1684
+ "Comoros",
1685
+ "Congo (Brazzaville)",
1686
+ "Congo, the Democratic Republic",
1687
+ "Cook Islands",
1688
+ "Costa Rica",
1689
+ "Cote D'Ivoire",
1690
+ "Croatia",
1691
+ "Cuba",
1692
+ "Curacao",
1693
+ "Cyprus",
1694
+ "Czech Republic",
1695
+ "Denmark",
1696
+ "Djibouti",
1697
+ "Dominica",
1698
+ "Dominican Republic",
1699
+ "Ecuador",
1700
+ "Egypt",
1701
+ "El Salvador",
1702
+ "Equatorial Guinea",
1703
+ "Eritrea",
1704
+ "Estonia",
1705
+ "Eswatini",
1706
+ "Ethiopia",
1707
+ "Falkland Islands (Malvinas)",
1708
+ "Faroe islands",
1709
+ "Fiji",
1710
+ "Finland",
1711
+ "France",
1712
+ "French Guiana",
1713
+ "French Polynesia",
1714
+ "Gabon",
1715
+ "Gambia",
1716
+ "Georgia",
1717
+ "Germany",
1718
+ "Ghana",
1719
+ "Gibraltar",
1720
+ "Greece",
1721
+ "Greenland",
1722
+ "Grenada",
1723
+ "Guadeloupe",
1724
+ "Guam",
1725
+ "Guatemala",
1726
+ "Guernsey",
1727
+ "Guinea",
1728
+ "Guinea Bissau",
1729
+ "Guyana",
1730
+ "Haiti",
1731
+ "Honduras",
1732
+ "Hong Kong",
1733
+ "Hungary",
1734
+ "Iceland",
1735
+ "India",
1736
+ "Indonesia",
1737
+ "Iran, Islamic Republic of",
1738
+ "Iraq",
1739
+ "Ireland",
1740
+ "Isle Of Man",
1741
+ "Israel",
1742
+ "Italy",
1743
+ "Jamaica",
1744
+ "Japan",
1745
+ "Jersey",
1746
+ "Jordan",
1747
+ "Kazakhstan",
1748
+ "Kenya",
1749
+ "Kiribati",
1750
+ "Kosovo",
1751
+ "Kuwait",
1752
+ "Kyrgyzstan",
1753
+ "Lao People's Democratic Republic",
1754
+ "Latvia",
1755
+ "Lebanon",
1756
+ "Lesotho",
1757
+ "Liberia",
1758
+ "Libya",
1759
+ "Liechtenstein",
1760
+ "Lithuania",
1761
+ "Luxembourg",
1762
+ "Macau",
1763
+ "Madagascar",
1764
+ "Malawi",
1765
+ "Malaysia",
1766
+ "Maldives",
1767
+ "Mali",
1768
+ "Malta",
1769
+ "Marshall Islands",
1770
+ "Martinique",
1771
+ "Mauritania",
1772
+ "Mauritius",
1773
+ "Mayotte",
1774
+ "Mexico",
1775
+ "Micronesia",
1776
+ "Moldova",
1777
+ "Monaco",
1778
+ "Mongolia",
1779
+ "Montenegro",
1780
+ "Montserrat",
1781
+ "Morocco",
1782
+ "Mozambique",
1783
+ "Myanmar",
1784
+ "Namibia",
1785
+ "Nauru",
1786
+ "Nepal",
1787
+ "Netherlands",
1788
+ "New Caledonia",
1789
+ "New Zealand",
1790
+ "Nicaragua",
1791
+ "Niger",
1792
+ "Nigeria",
1793
+ "Niue",
1794
+ "Norfolk Island",
1795
+ "North Korea",
1796
+ "North Macedonia",
1797
+ "North Mariana Islands",
1798
+ "Norway",
1799
+ "Oman",
1800
+ "Pakistan",
1801
+ "Palau",
1802
+ "Palestine, State of",
1803
+ "Panama",
1804
+ "Papua New Guinea",
1805
+ "Paraguay",
1806
+ "Peru",
1807
+ "Philippines",
1808
+ "Pitcairn",
1809
+ "Poland",
1810
+ "Portugal",
1811
+ "Puerto Rico",
1812
+ "Qatar",
1813
+ "Réunion",
1814
+ "Romania",
1815
+ "Russian Federation",
1816
+ "Rwanda",
1817
+ "Saint Barthélemy",
1818
+ "Saint Helena, Ascension and Tristan",
1819
+ "Saint Kitts & Nevis",
1820
+ "Saint Lucia",
1821
+ "Saint Maarten",
1822
+ "Saint Martin (French part)",
1823
+ "Saint Pierre and Miquelon",
1824
+ "Saint Vincent & Grenadines",
1825
+ "Samoa",
1826
+ "San Marino",
1827
+ "Sao Tome & Prin.",
1828
+ "Saudi Arabia",
1829
+ "Senegal",
1830
+ "Serbia",
1831
+ "Seychelles",
1832
+ "Sierra Leone",
1833
+ "Singapore",
1834
+ "Slovakia",
1835
+ "Slovenia",
1836
+ "Solomon Islands",
1837
+ "Somalia",
1838
+ "South Africa",
1839
+ "South Korea",
1840
+ "South Sudan",
1841
+ "Spain",
1842
+ "Sri Lanka",
1843
+ "Sudan",
1844
+ "Suriname",
1845
+ "Svalbard and Mayen",
1846
+ "Sweden",
1847
+ "Switzerland",
1848
+ "Syria",
1849
+ "Taiwan",
1850
+ "Tajikistan",
1851
+ "Tanzania",
1852
+ "Thailand",
1853
+ "Timor-Leste",
1854
+ "Togo",
1855
+ "Tokelau",
1856
+ "Tonga",
1857
+ "Trinidad & Tobago",
1858
+ "Tunisia",
1859
+ "Turkey",
1860
+ "Turkmenistan",
1861
+ "Turks & Caicos",
1862
+ "Tuvalu",
1863
+ "Uganda",
1864
+ "Ukraine",
1865
+ "United Arab Emirates",
1866
+ "United Kingdom",
1867
+ "United States",
1868
+ "United States Virgin Islands",
1869
+ "Uruguay",
1870
+ "Uzbekistan",
1871
+ "Vanuatu",
1872
+ "Vatican City State (Holy See)",
1873
+ "Venezuela",
1874
+ "Vietnam",
1875
+ "Wallis and Futuna",
1876
+ "Western Sahara",
1877
+ "Yemen",
1878
+ "Zambia",
1879
+ "Zimbabwe",
1880
+ "Undefined",
1881
+ "Netherlands Antiles",
1882
+ "Antarctica",
1883
+ "Bouvet Island",
1884
+ "French Southern Territories",
1885
+ "Heard Island & Mcdonald Islands",
1886
+ "South Georgia And Sandwich Isl.",
1887
+ "United States Outlying Islands",
1888
+ ];
1889
+ };
1890
+ };
1891
+ relatedEntities: {
1892
+ type: "array";
1893
+ items: {
1894
+ type: "object";
1895
+ properties: {
1896
+ name: { type: "string" };
1897
+ entityType: {
1898
+ type: "string";
1899
+ enum: [
1900
+ "ATM",
1901
+ "Airdrop",
1902
+ "Auctioned assets",
1903
+ "Bank",
1904
+ "Block reward",
1905
+ "Bot",
1906
+ "Child abuse",
1907
+ "Cloud mining",
1908
+ "Community reported scam",
1909
+ "Cross-chain Bridge Protocol",
1910
+ "Darkweb",
1911
+ "Decentralized service",
1912
+ "Dex",
1913
+ "Donations",
1914
+ "Exchange",
1915
+ "Gambling",
1916
+ "Hack",
1917
+ "ICO",
1918
+ "Ignored small amounts",
1919
+ "Investment management firm",
1920
+ "Large transaction",
1921
+ "Large unnamed entity",
1922
+ "Mining pool",
1923
+ "Mixing pattern",
1924
+ "Mixing service",
1925
+ "NFT Marketplace",
1926
+ "No entities found",
1927
+ "Ongoing legal action",
1928
+ "Payment Service Provider",
1929
+ "Payment channel",
1930
+ "Peeling chain of unknown origin",
1931
+ "Phishing",
1932
+ "Ransomware",
1933
+ "Real World Asset",
1934
+ "Sanction list",
1935
+ "Scam",
1936
+ "Seized assets",
1937
+ "Service",
1938
+ "Staking pool",
1939
+ "Suspicious",
1940
+ "Terrorism",
1941
+ "Token",
1942
+ "Token burning",
1943
+ "Token minting",
1944
+ "Unspent output",
1945
+ "Wallet",
1946
+ "OFAC sanction list",
1947
+ "Closed exchange",
1948
+ "Custom group",
1949
+ ];
1950
+ };
1951
+ };
1952
+ required: ["name", "entityType"];
1953
+ additionalProperties: false;
1954
+ };
1955
+ };
1956
+ };
1957
+ required: ["riskLevel"];
1958
+ additionalProperties: false;
1959
+ };
1160
1960
  };
1161
1961
  additionalProperties: false;
1162
1962
  };