@forge/manifest 7.5.4-next.0-experimental-264fa0f → 7.5.4-next.2
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.
- package/CHANGELOG.md +10 -3
- package/out/schema/manifest-schema.json +2030 -193
- package/out/schema/manifest.d.ts +951 -187
- package/out/scopes/shipyard-scopes.json +2 -0
- package/out/validators/resources-validator.js +2 -2
- package/package.json +2 -2
|
@@ -998,9 +998,34 @@
|
|
|
998
998
|
"type": "object",
|
|
999
999
|
"properties": {
|
|
1000
1000
|
"title": {
|
|
1001
|
+
"oneOf": [
|
|
1002
|
+
{
|
|
1003
|
+
"type": "object",
|
|
1004
|
+
"additionalProperties": false,
|
|
1005
|
+
"properties": {
|
|
1006
|
+
"i18n": {
|
|
1007
|
+
"type": "string",
|
|
1008
|
+
"minLength": 1,
|
|
1009
|
+
"maxLength": 300,
|
|
1010
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1011
|
+
}
|
|
1012
|
+
},
|
|
1013
|
+
"required": [
|
|
1014
|
+
"i18n"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"type": "string",
|
|
1019
|
+
"minLength": 1,
|
|
1020
|
+
"maxLength": 255
|
|
1021
|
+
}
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
"title__i18n": {
|
|
1001
1025
|
"type": "string",
|
|
1002
1026
|
"minLength": 1,
|
|
1003
|
-
"maxLength":
|
|
1027
|
+
"maxLength": 300,
|
|
1028
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1004
1029
|
},
|
|
1005
1030
|
"function": {
|
|
1006
1031
|
"type": "string",
|
|
@@ -1009,9 +1034,34 @@
|
|
|
1009
1034
|
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1010
1035
|
},
|
|
1011
1036
|
"description": {
|
|
1037
|
+
"oneOf": [
|
|
1038
|
+
{
|
|
1039
|
+
"type": "object",
|
|
1040
|
+
"additionalProperties": false,
|
|
1041
|
+
"properties": {
|
|
1042
|
+
"i18n": {
|
|
1043
|
+
"type": "string",
|
|
1044
|
+
"minLength": 1,
|
|
1045
|
+
"maxLength": 300,
|
|
1046
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"required": [
|
|
1050
|
+
"i18n"
|
|
1051
|
+
]
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"type": "string",
|
|
1055
|
+
"minLength": 1,
|
|
1056
|
+
"maxLength": 10000
|
|
1057
|
+
}
|
|
1058
|
+
]
|
|
1059
|
+
},
|
|
1060
|
+
"description__i18n": {
|
|
1012
1061
|
"type": "string",
|
|
1013
1062
|
"minLength": 1,
|
|
1014
|
-
"maxLength":
|
|
1063
|
+
"maxLength": 300,
|
|
1064
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1015
1065
|
},
|
|
1016
1066
|
"refDataSchema": {
|
|
1017
1067
|
"type": "object",
|
|
@@ -1083,9 +1133,34 @@
|
|
|
1083
1133
|
"type": "object",
|
|
1084
1134
|
"properties": {
|
|
1085
1135
|
"title": {
|
|
1136
|
+
"oneOf": [
|
|
1137
|
+
{
|
|
1138
|
+
"type": "object",
|
|
1139
|
+
"additionalProperties": false,
|
|
1140
|
+
"properties": {
|
|
1141
|
+
"i18n": {
|
|
1142
|
+
"type": "string",
|
|
1143
|
+
"minLength": 1,
|
|
1144
|
+
"maxLength": 300,
|
|
1145
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
"required": [
|
|
1149
|
+
"i18n"
|
|
1150
|
+
]
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"type": "string",
|
|
1154
|
+
"minLength": 1,
|
|
1155
|
+
"maxLength": 255
|
|
1156
|
+
}
|
|
1157
|
+
]
|
|
1158
|
+
},
|
|
1159
|
+
"title__i18n": {
|
|
1086
1160
|
"type": "string",
|
|
1087
1161
|
"minLength": 1,
|
|
1088
|
-
"maxLength":
|
|
1162
|
+
"maxLength": 300,
|
|
1163
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1089
1164
|
},
|
|
1090
1165
|
"resolver": {
|
|
1091
1166
|
"anyOf": [
|
|
@@ -1133,9 +1208,34 @@
|
|
|
1133
1208
|
"maxLength": 255
|
|
1134
1209
|
},
|
|
1135
1210
|
"description": {
|
|
1211
|
+
"oneOf": [
|
|
1212
|
+
{
|
|
1213
|
+
"type": "object",
|
|
1214
|
+
"additionalProperties": false,
|
|
1215
|
+
"properties": {
|
|
1216
|
+
"i18n": {
|
|
1217
|
+
"type": "string",
|
|
1218
|
+
"minLength": 1,
|
|
1219
|
+
"maxLength": 300,
|
|
1220
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1221
|
+
}
|
|
1222
|
+
},
|
|
1223
|
+
"required": [
|
|
1224
|
+
"i18n"
|
|
1225
|
+
]
|
|
1226
|
+
},
|
|
1227
|
+
{
|
|
1228
|
+
"type": "string",
|
|
1229
|
+
"minLength": 1,
|
|
1230
|
+
"maxLength": 10000
|
|
1231
|
+
}
|
|
1232
|
+
]
|
|
1233
|
+
},
|
|
1234
|
+
"description__i18n": {
|
|
1136
1235
|
"type": "string",
|
|
1137
1236
|
"minLength": 1,
|
|
1138
|
-
"maxLength":
|
|
1237
|
+
"maxLength": 300,
|
|
1238
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1139
1239
|
},
|
|
1140
1240
|
"adfExport": {
|
|
1141
1241
|
"type": "object",
|
|
@@ -1254,9 +1354,34 @@
|
|
|
1254
1354
|
"type": "object",
|
|
1255
1355
|
"properties": {
|
|
1256
1356
|
"title": {
|
|
1357
|
+
"oneOf": [
|
|
1358
|
+
{
|
|
1359
|
+
"type": "object",
|
|
1360
|
+
"additionalProperties": false,
|
|
1361
|
+
"properties": {
|
|
1362
|
+
"i18n": {
|
|
1363
|
+
"type": "string",
|
|
1364
|
+
"minLength": 1,
|
|
1365
|
+
"maxLength": 300,
|
|
1366
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"required": [
|
|
1370
|
+
"i18n"
|
|
1371
|
+
]
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"type": "string",
|
|
1375
|
+
"minLength": 1,
|
|
1376
|
+
"maxLength": 255
|
|
1377
|
+
}
|
|
1378
|
+
]
|
|
1379
|
+
},
|
|
1380
|
+
"title__i18n": {
|
|
1257
1381
|
"type": "string",
|
|
1258
1382
|
"minLength": 1,
|
|
1259
|
-
"maxLength":
|
|
1383
|
+
"maxLength": 300,
|
|
1384
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1260
1385
|
},
|
|
1261
1386
|
"function": {
|
|
1262
1387
|
"type": "string",
|
|
@@ -1278,9 +1403,34 @@
|
|
|
1278
1403
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1279
1404
|
},
|
|
1280
1405
|
"description": {
|
|
1406
|
+
"oneOf": [
|
|
1407
|
+
{
|
|
1408
|
+
"type": "object",
|
|
1409
|
+
"additionalProperties": false,
|
|
1410
|
+
"properties": {
|
|
1411
|
+
"i18n": {
|
|
1412
|
+
"type": "string",
|
|
1413
|
+
"minLength": 1,
|
|
1414
|
+
"maxLength": 300,
|
|
1415
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
"required": [
|
|
1419
|
+
"i18n"
|
|
1420
|
+
]
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"type": "string",
|
|
1424
|
+
"minLength": 1,
|
|
1425
|
+
"maxLength": 1000
|
|
1426
|
+
}
|
|
1427
|
+
]
|
|
1428
|
+
},
|
|
1429
|
+
"description__i18n": {
|
|
1281
1430
|
"type": "string",
|
|
1282
1431
|
"minLength": 1,
|
|
1283
|
-
"maxLength":
|
|
1432
|
+
"maxLength": 300,
|
|
1433
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1284
1434
|
}
|
|
1285
1435
|
},
|
|
1286
1436
|
"required": [
|
|
@@ -1306,9 +1456,34 @@
|
|
|
1306
1456
|
"type": "object",
|
|
1307
1457
|
"properties": {
|
|
1308
1458
|
"title": {
|
|
1459
|
+
"oneOf": [
|
|
1460
|
+
{
|
|
1461
|
+
"type": "object",
|
|
1462
|
+
"additionalProperties": false,
|
|
1463
|
+
"properties": {
|
|
1464
|
+
"i18n": {
|
|
1465
|
+
"type": "string",
|
|
1466
|
+
"minLength": 1,
|
|
1467
|
+
"maxLength": 300,
|
|
1468
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"required": [
|
|
1472
|
+
"i18n"
|
|
1473
|
+
]
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"type": "string",
|
|
1477
|
+
"minLength": 1,
|
|
1478
|
+
"maxLength": 255
|
|
1479
|
+
}
|
|
1480
|
+
]
|
|
1481
|
+
},
|
|
1482
|
+
"title__i18n": {
|
|
1309
1483
|
"type": "string",
|
|
1310
1484
|
"minLength": 1,
|
|
1311
|
-
"maxLength":
|
|
1485
|
+
"maxLength": 300,
|
|
1486
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1312
1487
|
},
|
|
1313
1488
|
"resolver": {
|
|
1314
1489
|
"anyOf": [
|
|
@@ -1379,9 +1554,34 @@
|
|
|
1379
1554
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1380
1555
|
},
|
|
1381
1556
|
"description": {
|
|
1557
|
+
"oneOf": [
|
|
1558
|
+
{
|
|
1559
|
+
"type": "object",
|
|
1560
|
+
"additionalProperties": false,
|
|
1561
|
+
"properties": {
|
|
1562
|
+
"i18n": {
|
|
1563
|
+
"type": "string",
|
|
1564
|
+
"minLength": 1,
|
|
1565
|
+
"maxLength": 300,
|
|
1566
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
"required": [
|
|
1570
|
+
"i18n"
|
|
1571
|
+
]
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"type": "string",
|
|
1575
|
+
"minLength": 1,
|
|
1576
|
+
"maxLength": 1000
|
|
1577
|
+
}
|
|
1578
|
+
]
|
|
1579
|
+
},
|
|
1580
|
+
"description__i18n": {
|
|
1382
1581
|
"type": "string",
|
|
1383
1582
|
"minLength": 1,
|
|
1384
|
-
"maxLength":
|
|
1583
|
+
"maxLength": 300,
|
|
1584
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1385
1585
|
}
|
|
1386
1586
|
},
|
|
1387
1587
|
"required": [
|
|
@@ -1423,9 +1623,34 @@
|
|
|
1423
1623
|
"type": "object",
|
|
1424
1624
|
"properties": {
|
|
1425
1625
|
"title": {
|
|
1626
|
+
"oneOf": [
|
|
1627
|
+
{
|
|
1628
|
+
"type": "object",
|
|
1629
|
+
"additionalProperties": false,
|
|
1630
|
+
"properties": {
|
|
1631
|
+
"i18n": {
|
|
1632
|
+
"type": "string",
|
|
1633
|
+
"minLength": 1,
|
|
1634
|
+
"maxLength": 300,
|
|
1635
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1636
|
+
}
|
|
1637
|
+
},
|
|
1638
|
+
"required": [
|
|
1639
|
+
"i18n"
|
|
1640
|
+
]
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"type": "string",
|
|
1644
|
+
"minLength": 1,
|
|
1645
|
+
"maxLength": 255
|
|
1646
|
+
}
|
|
1647
|
+
]
|
|
1648
|
+
},
|
|
1649
|
+
"title__i18n": {
|
|
1426
1650
|
"type": "string",
|
|
1427
1651
|
"minLength": 1,
|
|
1428
|
-
"maxLength":
|
|
1652
|
+
"maxLength": 300,
|
|
1653
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1429
1654
|
},
|
|
1430
1655
|
"function": {
|
|
1431
1656
|
"type": "string",
|
|
@@ -1447,9 +1672,34 @@
|
|
|
1447
1672
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1448
1673
|
},
|
|
1449
1674
|
"description": {
|
|
1675
|
+
"oneOf": [
|
|
1676
|
+
{
|
|
1677
|
+
"type": "object",
|
|
1678
|
+
"additionalProperties": false,
|
|
1679
|
+
"properties": {
|
|
1680
|
+
"i18n": {
|
|
1681
|
+
"type": "string",
|
|
1682
|
+
"minLength": 1,
|
|
1683
|
+
"maxLength": 300,
|
|
1684
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
"required": [
|
|
1688
|
+
"i18n"
|
|
1689
|
+
]
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"type": "string",
|
|
1693
|
+
"minLength": 1,
|
|
1694
|
+
"maxLength": 1000
|
|
1695
|
+
}
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1698
|
+
"description__i18n": {
|
|
1450
1699
|
"type": "string",
|
|
1451
1700
|
"minLength": 1,
|
|
1452
|
-
"maxLength":
|
|
1701
|
+
"maxLength": 300,
|
|
1702
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1453
1703
|
}
|
|
1454
1704
|
},
|
|
1455
1705
|
"required": [
|
|
@@ -1475,9 +1725,34 @@
|
|
|
1475
1725
|
"type": "object",
|
|
1476
1726
|
"properties": {
|
|
1477
1727
|
"title": {
|
|
1728
|
+
"oneOf": [
|
|
1729
|
+
{
|
|
1730
|
+
"type": "object",
|
|
1731
|
+
"additionalProperties": false,
|
|
1732
|
+
"properties": {
|
|
1733
|
+
"i18n": {
|
|
1734
|
+
"type": "string",
|
|
1735
|
+
"minLength": 1,
|
|
1736
|
+
"maxLength": 300,
|
|
1737
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1740
|
+
"required": [
|
|
1741
|
+
"i18n"
|
|
1742
|
+
]
|
|
1743
|
+
},
|
|
1744
|
+
{
|
|
1745
|
+
"type": "string",
|
|
1746
|
+
"minLength": 1,
|
|
1747
|
+
"maxLength": 255
|
|
1748
|
+
}
|
|
1749
|
+
]
|
|
1750
|
+
},
|
|
1751
|
+
"title__i18n": {
|
|
1478
1752
|
"type": "string",
|
|
1479
1753
|
"minLength": 1,
|
|
1480
|
-
"maxLength":
|
|
1754
|
+
"maxLength": 300,
|
|
1755
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1481
1756
|
},
|
|
1482
1757
|
"resolver": {
|
|
1483
1758
|
"anyOf": [
|
|
@@ -1550,9 +1825,34 @@
|
|
|
1550
1825
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1551
1826
|
},
|
|
1552
1827
|
"description": {
|
|
1828
|
+
"oneOf": [
|
|
1829
|
+
{
|
|
1830
|
+
"type": "object",
|
|
1831
|
+
"additionalProperties": false,
|
|
1832
|
+
"properties": {
|
|
1833
|
+
"i18n": {
|
|
1834
|
+
"type": "string",
|
|
1835
|
+
"minLength": 1,
|
|
1836
|
+
"maxLength": 300,
|
|
1837
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1840
|
+
"required": [
|
|
1841
|
+
"i18n"
|
|
1842
|
+
]
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"type": "string",
|
|
1846
|
+
"minLength": 1,
|
|
1847
|
+
"maxLength": 1000
|
|
1848
|
+
}
|
|
1849
|
+
]
|
|
1850
|
+
},
|
|
1851
|
+
"description__i18n": {
|
|
1553
1852
|
"type": "string",
|
|
1554
1853
|
"minLength": 1,
|
|
1555
|
-
"maxLength":
|
|
1854
|
+
"maxLength": 300,
|
|
1855
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1556
1856
|
}
|
|
1557
1857
|
},
|
|
1558
1858
|
"required": [
|
|
@@ -1595,14 +1895,64 @@
|
|
|
1595
1895
|
"additionalProperties": false,
|
|
1596
1896
|
"properties": {
|
|
1597
1897
|
"title": {
|
|
1898
|
+
"oneOf": [
|
|
1899
|
+
{
|
|
1900
|
+
"type": "object",
|
|
1901
|
+
"additionalProperties": false,
|
|
1902
|
+
"properties": {
|
|
1903
|
+
"i18n": {
|
|
1904
|
+
"type": "string",
|
|
1905
|
+
"minLength": 1,
|
|
1906
|
+
"maxLength": 300,
|
|
1907
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1908
|
+
}
|
|
1909
|
+
},
|
|
1910
|
+
"required": [
|
|
1911
|
+
"i18n"
|
|
1912
|
+
]
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"type": "string",
|
|
1916
|
+
"minLength": 1,
|
|
1917
|
+
"maxLength": 255
|
|
1918
|
+
}
|
|
1919
|
+
]
|
|
1920
|
+
},
|
|
1921
|
+
"title__i18n": {
|
|
1598
1922
|
"type": "string",
|
|
1599
1923
|
"minLength": 1,
|
|
1600
|
-
"maxLength":
|
|
1924
|
+
"maxLength": 300,
|
|
1925
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1601
1926
|
},
|
|
1602
1927
|
"tooltip": {
|
|
1928
|
+
"oneOf": [
|
|
1929
|
+
{
|
|
1930
|
+
"type": "object",
|
|
1931
|
+
"additionalProperties": false,
|
|
1932
|
+
"properties": {
|
|
1933
|
+
"i18n": {
|
|
1934
|
+
"type": "string",
|
|
1935
|
+
"minLength": 1,
|
|
1936
|
+
"maxLength": 300,
|
|
1937
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
"required": [
|
|
1941
|
+
"i18n"
|
|
1942
|
+
]
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
"type": "string",
|
|
1946
|
+
"minLength": 1,
|
|
1947
|
+
"maxLength": 255
|
|
1948
|
+
}
|
|
1949
|
+
]
|
|
1950
|
+
},
|
|
1951
|
+
"tooltip__i18n": {
|
|
1603
1952
|
"type": "string",
|
|
1604
1953
|
"minLength": 1,
|
|
1605
|
-
"maxLength":
|
|
1954
|
+
"maxLength": 300,
|
|
1955
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1606
1956
|
},
|
|
1607
1957
|
"icon": {
|
|
1608
1958
|
"type": "string",
|
|
@@ -1610,9 +1960,34 @@
|
|
|
1610
1960
|
"maxLength": 255
|
|
1611
1961
|
},
|
|
1612
1962
|
"description": {
|
|
1963
|
+
"oneOf": [
|
|
1964
|
+
{
|
|
1965
|
+
"type": "object",
|
|
1966
|
+
"additionalProperties": false,
|
|
1967
|
+
"properties": {
|
|
1968
|
+
"i18n": {
|
|
1969
|
+
"type": "string",
|
|
1970
|
+
"minLength": 1,
|
|
1971
|
+
"maxLength": 300,
|
|
1972
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
"required": [
|
|
1976
|
+
"i18n"
|
|
1977
|
+
]
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"type": "string",
|
|
1981
|
+
"minLength": 1,
|
|
1982
|
+
"maxLength": 1000
|
|
1983
|
+
}
|
|
1984
|
+
]
|
|
1985
|
+
},
|
|
1986
|
+
"description__i18n": {
|
|
1613
1987
|
"type": "string",
|
|
1614
1988
|
"minLength": 1,
|
|
1615
|
-
"maxLength":
|
|
1989
|
+
"maxLength": 300,
|
|
1990
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1616
1991
|
},
|
|
1617
1992
|
"function": {
|
|
1618
1993
|
"type": "string",
|
|
@@ -1649,9 +2024,34 @@
|
|
|
1649
2024
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1650
2025
|
},
|
|
1651
2026
|
"description": {
|
|
2027
|
+
"oneOf": [
|
|
2028
|
+
{
|
|
2029
|
+
"type": "object",
|
|
2030
|
+
"additionalProperties": false,
|
|
2031
|
+
"properties": {
|
|
2032
|
+
"i18n": {
|
|
2033
|
+
"type": "string",
|
|
2034
|
+
"minLength": 1,
|
|
2035
|
+
"maxLength": 300,
|
|
2036
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
"required": [
|
|
2040
|
+
"i18n"
|
|
2041
|
+
]
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"type": "string",
|
|
2045
|
+
"minLength": 1,
|
|
2046
|
+
"maxLength": 1000
|
|
2047
|
+
}
|
|
2048
|
+
]
|
|
2049
|
+
},
|
|
2050
|
+
"description__i18n": {
|
|
1652
2051
|
"type": "string",
|
|
1653
2052
|
"minLength": 1,
|
|
1654
|
-
"maxLength":
|
|
2053
|
+
"maxLength": 300,
|
|
2054
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1655
2055
|
}
|
|
1656
2056
|
},
|
|
1657
2057
|
"required": [
|
|
@@ -1678,14 +2078,64 @@
|
|
|
1678
2078
|
"additionalProperties": false,
|
|
1679
2079
|
"properties": {
|
|
1680
2080
|
"title": {
|
|
2081
|
+
"oneOf": [
|
|
2082
|
+
{
|
|
2083
|
+
"type": "object",
|
|
2084
|
+
"additionalProperties": false,
|
|
2085
|
+
"properties": {
|
|
2086
|
+
"i18n": {
|
|
2087
|
+
"type": "string",
|
|
2088
|
+
"minLength": 1,
|
|
2089
|
+
"maxLength": 300,
|
|
2090
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
2093
|
+
"required": [
|
|
2094
|
+
"i18n"
|
|
2095
|
+
]
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"type": "string",
|
|
2099
|
+
"minLength": 1,
|
|
2100
|
+
"maxLength": 255
|
|
2101
|
+
}
|
|
2102
|
+
]
|
|
2103
|
+
},
|
|
2104
|
+
"title__i18n": {
|
|
1681
2105
|
"type": "string",
|
|
1682
2106
|
"minLength": 1,
|
|
1683
|
-
"maxLength":
|
|
2107
|
+
"maxLength": 300,
|
|
2108
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1684
2109
|
},
|
|
1685
2110
|
"tooltip": {
|
|
2111
|
+
"oneOf": [
|
|
2112
|
+
{
|
|
2113
|
+
"type": "object",
|
|
2114
|
+
"additionalProperties": false,
|
|
2115
|
+
"properties": {
|
|
2116
|
+
"i18n": {
|
|
2117
|
+
"type": "string",
|
|
2118
|
+
"minLength": 1,
|
|
2119
|
+
"maxLength": 300,
|
|
2120
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"required": [
|
|
2124
|
+
"i18n"
|
|
2125
|
+
]
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
"type": "string",
|
|
2129
|
+
"minLength": 1,
|
|
2130
|
+
"maxLength": 255
|
|
2131
|
+
}
|
|
2132
|
+
]
|
|
2133
|
+
},
|
|
2134
|
+
"tooltip__i18n": {
|
|
1686
2135
|
"type": "string",
|
|
1687
2136
|
"minLength": 1,
|
|
1688
|
-
"maxLength":
|
|
2137
|
+
"maxLength": 300,
|
|
2138
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1689
2139
|
},
|
|
1690
2140
|
"icon": {
|
|
1691
2141
|
"type": "string",
|
|
@@ -1693,9 +2143,34 @@
|
|
|
1693
2143
|
"maxLength": 255
|
|
1694
2144
|
},
|
|
1695
2145
|
"description": {
|
|
2146
|
+
"oneOf": [
|
|
2147
|
+
{
|
|
2148
|
+
"type": "object",
|
|
2149
|
+
"additionalProperties": false,
|
|
2150
|
+
"properties": {
|
|
2151
|
+
"i18n": {
|
|
2152
|
+
"type": "string",
|
|
2153
|
+
"minLength": 1,
|
|
2154
|
+
"maxLength": 300,
|
|
2155
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2156
|
+
}
|
|
2157
|
+
},
|
|
2158
|
+
"required": [
|
|
2159
|
+
"i18n"
|
|
2160
|
+
]
|
|
2161
|
+
},
|
|
2162
|
+
{
|
|
2163
|
+
"type": "string",
|
|
2164
|
+
"minLength": 1,
|
|
2165
|
+
"maxLength": 1000
|
|
2166
|
+
}
|
|
2167
|
+
]
|
|
2168
|
+
},
|
|
2169
|
+
"description__i18n": {
|
|
1696
2170
|
"type": "string",
|
|
1697
2171
|
"minLength": 1,
|
|
1698
|
-
"maxLength":
|
|
2172
|
+
"maxLength": 300,
|
|
2173
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1699
2174
|
},
|
|
1700
2175
|
"resolver": {
|
|
1701
2176
|
"anyOf": [
|
|
@@ -1781,9 +2256,34 @@
|
|
|
1781
2256
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1782
2257
|
},
|
|
1783
2258
|
"description": {
|
|
2259
|
+
"oneOf": [
|
|
2260
|
+
{
|
|
2261
|
+
"type": "object",
|
|
2262
|
+
"additionalProperties": false,
|
|
2263
|
+
"properties": {
|
|
2264
|
+
"i18n": {
|
|
2265
|
+
"type": "string",
|
|
2266
|
+
"minLength": 1,
|
|
2267
|
+
"maxLength": 300,
|
|
2268
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
"required": [
|
|
2272
|
+
"i18n"
|
|
2273
|
+
]
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
"type": "string",
|
|
2277
|
+
"minLength": 1,
|
|
2278
|
+
"maxLength": 1000
|
|
2279
|
+
}
|
|
2280
|
+
]
|
|
2281
|
+
},
|
|
2282
|
+
"description__i18n": {
|
|
1784
2283
|
"type": "string",
|
|
1785
2284
|
"minLength": 1,
|
|
1786
|
-
"maxLength":
|
|
2285
|
+
"maxLength": 300,
|
|
2286
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1787
2287
|
}
|
|
1788
2288
|
},
|
|
1789
2289
|
"required": [
|
|
@@ -1825,9 +2325,34 @@
|
|
|
1825
2325
|
"type": "object",
|
|
1826
2326
|
"properties": {
|
|
1827
2327
|
"title": {
|
|
2328
|
+
"oneOf": [
|
|
2329
|
+
{
|
|
2330
|
+
"type": "object",
|
|
2331
|
+
"additionalProperties": false,
|
|
2332
|
+
"properties": {
|
|
2333
|
+
"i18n": {
|
|
2334
|
+
"type": "string",
|
|
2335
|
+
"minLength": 1,
|
|
2336
|
+
"maxLength": 300,
|
|
2337
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
"required": [
|
|
2341
|
+
"i18n"
|
|
2342
|
+
]
|
|
2343
|
+
},
|
|
2344
|
+
{
|
|
2345
|
+
"type": "string",
|
|
2346
|
+
"minLength": 1,
|
|
2347
|
+
"maxLength": 255
|
|
2348
|
+
}
|
|
2349
|
+
]
|
|
2350
|
+
},
|
|
2351
|
+
"title__i18n": {
|
|
1828
2352
|
"type": "string",
|
|
1829
2353
|
"minLength": 1,
|
|
1830
|
-
"maxLength":
|
|
2354
|
+
"maxLength": 300,
|
|
2355
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1831
2356
|
},
|
|
1832
2357
|
"function": {
|
|
1833
2358
|
"type": "string",
|
|
@@ -1849,9 +2374,34 @@
|
|
|
1849
2374
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1850
2375
|
},
|
|
1851
2376
|
"description": {
|
|
2377
|
+
"oneOf": [
|
|
2378
|
+
{
|
|
2379
|
+
"type": "object",
|
|
2380
|
+
"additionalProperties": false,
|
|
2381
|
+
"properties": {
|
|
2382
|
+
"i18n": {
|
|
2383
|
+
"type": "string",
|
|
2384
|
+
"minLength": 1,
|
|
2385
|
+
"maxLength": 300,
|
|
2386
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"required": [
|
|
2390
|
+
"i18n"
|
|
2391
|
+
]
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"type": "string",
|
|
2395
|
+
"minLength": 1,
|
|
2396
|
+
"maxLength": 1000
|
|
2397
|
+
}
|
|
2398
|
+
]
|
|
2399
|
+
},
|
|
2400
|
+
"description__i18n": {
|
|
1852
2401
|
"type": "string",
|
|
1853
2402
|
"minLength": 1,
|
|
1854
|
-
"maxLength":
|
|
2403
|
+
"maxLength": 300,
|
|
2404
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1855
2405
|
}
|
|
1856
2406
|
},
|
|
1857
2407
|
"required": [
|
|
@@ -1877,9 +2427,34 @@
|
|
|
1877
2427
|
"type": "object",
|
|
1878
2428
|
"properties": {
|
|
1879
2429
|
"title": {
|
|
2430
|
+
"oneOf": [
|
|
2431
|
+
{
|
|
2432
|
+
"type": "object",
|
|
2433
|
+
"additionalProperties": false,
|
|
2434
|
+
"properties": {
|
|
2435
|
+
"i18n": {
|
|
2436
|
+
"type": "string",
|
|
2437
|
+
"minLength": 1,
|
|
2438
|
+
"maxLength": 300,
|
|
2439
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2440
|
+
}
|
|
2441
|
+
},
|
|
2442
|
+
"required": [
|
|
2443
|
+
"i18n"
|
|
2444
|
+
]
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"type": "string",
|
|
2448
|
+
"minLength": 1,
|
|
2449
|
+
"maxLength": 255
|
|
2450
|
+
}
|
|
2451
|
+
]
|
|
2452
|
+
},
|
|
2453
|
+
"title__i18n": {
|
|
1880
2454
|
"type": "string",
|
|
1881
2455
|
"minLength": 1,
|
|
1882
|
-
"maxLength":
|
|
2456
|
+
"maxLength": 300,
|
|
2457
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1883
2458
|
},
|
|
1884
2459
|
"resolver": {
|
|
1885
2460
|
"anyOf": [
|
|
@@ -1952,9 +2527,34 @@
|
|
|
1952
2527
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
1953
2528
|
},
|
|
1954
2529
|
"description": {
|
|
2530
|
+
"oneOf": [
|
|
2531
|
+
{
|
|
2532
|
+
"type": "object",
|
|
2533
|
+
"additionalProperties": false,
|
|
2534
|
+
"properties": {
|
|
2535
|
+
"i18n": {
|
|
2536
|
+
"type": "string",
|
|
2537
|
+
"minLength": 1,
|
|
2538
|
+
"maxLength": 300,
|
|
2539
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"required": [
|
|
2543
|
+
"i18n"
|
|
2544
|
+
]
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
"type": "string",
|
|
2548
|
+
"minLength": 1,
|
|
2549
|
+
"maxLength": 1000
|
|
2550
|
+
}
|
|
2551
|
+
]
|
|
2552
|
+
},
|
|
2553
|
+
"description__i18n": {
|
|
1955
2554
|
"type": "string",
|
|
1956
2555
|
"minLength": 1,
|
|
1957
|
-
"maxLength":
|
|
2556
|
+
"maxLength": 300,
|
|
2557
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
1958
2558
|
}
|
|
1959
2559
|
},
|
|
1960
2560
|
"required": [
|
|
@@ -1996,9 +2596,34 @@
|
|
|
1996
2596
|
"type": "object",
|
|
1997
2597
|
"properties": {
|
|
1998
2598
|
"title": {
|
|
2599
|
+
"oneOf": [
|
|
2600
|
+
{
|
|
2601
|
+
"type": "object",
|
|
2602
|
+
"additionalProperties": false,
|
|
2603
|
+
"properties": {
|
|
2604
|
+
"i18n": {
|
|
2605
|
+
"type": "string",
|
|
2606
|
+
"minLength": 1,
|
|
2607
|
+
"maxLength": 300,
|
|
2608
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2609
|
+
}
|
|
2610
|
+
},
|
|
2611
|
+
"required": [
|
|
2612
|
+
"i18n"
|
|
2613
|
+
]
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"type": "string",
|
|
2617
|
+
"minLength": 1,
|
|
2618
|
+
"maxLength": 255
|
|
2619
|
+
}
|
|
2620
|
+
]
|
|
2621
|
+
},
|
|
2622
|
+
"title__i18n": {
|
|
1999
2623
|
"type": "string",
|
|
2000
2624
|
"minLength": 1,
|
|
2001
|
-
"maxLength":
|
|
2625
|
+
"maxLength": 300,
|
|
2626
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2002
2627
|
},
|
|
2003
2628
|
"icon": {
|
|
2004
2629
|
"type": "string",
|
|
@@ -2031,9 +2656,34 @@
|
|
|
2031
2656
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2032
2657
|
},
|
|
2033
2658
|
"description": {
|
|
2659
|
+
"oneOf": [
|
|
2660
|
+
{
|
|
2661
|
+
"type": "object",
|
|
2662
|
+
"additionalProperties": false,
|
|
2663
|
+
"properties": {
|
|
2664
|
+
"i18n": {
|
|
2665
|
+
"type": "string",
|
|
2666
|
+
"minLength": 1,
|
|
2667
|
+
"maxLength": 300,
|
|
2668
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2669
|
+
}
|
|
2670
|
+
},
|
|
2671
|
+
"required": [
|
|
2672
|
+
"i18n"
|
|
2673
|
+
]
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"type": "string",
|
|
2677
|
+
"minLength": 1,
|
|
2678
|
+
"maxLength": 1000
|
|
2679
|
+
}
|
|
2680
|
+
]
|
|
2681
|
+
},
|
|
2682
|
+
"description__i18n": {
|
|
2034
2683
|
"type": "string",
|
|
2035
2684
|
"minLength": 1,
|
|
2036
|
-
"maxLength":
|
|
2685
|
+
"maxLength": 300,
|
|
2686
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2037
2687
|
}
|
|
2038
2688
|
},
|
|
2039
2689
|
"required": [
|
|
@@ -2060,9 +2710,34 @@
|
|
|
2060
2710
|
"type": "object",
|
|
2061
2711
|
"properties": {
|
|
2062
2712
|
"title": {
|
|
2713
|
+
"oneOf": [
|
|
2714
|
+
{
|
|
2715
|
+
"type": "object",
|
|
2716
|
+
"additionalProperties": false,
|
|
2717
|
+
"properties": {
|
|
2718
|
+
"i18n": {
|
|
2719
|
+
"type": "string",
|
|
2720
|
+
"minLength": 1,
|
|
2721
|
+
"maxLength": 300,
|
|
2722
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2723
|
+
}
|
|
2724
|
+
},
|
|
2725
|
+
"required": [
|
|
2726
|
+
"i18n"
|
|
2727
|
+
]
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"type": "string",
|
|
2731
|
+
"minLength": 1,
|
|
2732
|
+
"maxLength": 255
|
|
2733
|
+
}
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
"title__i18n": {
|
|
2063
2737
|
"type": "string",
|
|
2064
2738
|
"minLength": 1,
|
|
2065
|
-
"maxLength":
|
|
2739
|
+
"maxLength": 300,
|
|
2740
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2066
2741
|
},
|
|
2067
2742
|
"icon": {
|
|
2068
2743
|
"type": "string",
|
|
@@ -2134,9 +2809,34 @@
|
|
|
2134
2809
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2135
2810
|
},
|
|
2136
2811
|
"description": {
|
|
2812
|
+
"oneOf": [
|
|
2813
|
+
{
|
|
2814
|
+
"type": "object",
|
|
2815
|
+
"additionalProperties": false,
|
|
2816
|
+
"properties": {
|
|
2817
|
+
"i18n": {
|
|
2818
|
+
"type": "string",
|
|
2819
|
+
"minLength": 1,
|
|
2820
|
+
"maxLength": 300,
|
|
2821
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2822
|
+
}
|
|
2823
|
+
},
|
|
2824
|
+
"required": [
|
|
2825
|
+
"i18n"
|
|
2826
|
+
]
|
|
2827
|
+
},
|
|
2828
|
+
{
|
|
2829
|
+
"type": "string",
|
|
2830
|
+
"minLength": 1,
|
|
2831
|
+
"maxLength": 1000
|
|
2832
|
+
}
|
|
2833
|
+
]
|
|
2834
|
+
},
|
|
2835
|
+
"description__i18n": {
|
|
2137
2836
|
"type": "string",
|
|
2138
2837
|
"minLength": 1,
|
|
2139
|
-
"maxLength":
|
|
2838
|
+
"maxLength": 300,
|
|
2839
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2140
2840
|
}
|
|
2141
2841
|
},
|
|
2142
2842
|
"required": [
|
|
@@ -2179,9 +2879,34 @@
|
|
|
2179
2879
|
"type": "object",
|
|
2180
2880
|
"properties": {
|
|
2181
2881
|
"title": {
|
|
2882
|
+
"oneOf": [
|
|
2883
|
+
{
|
|
2884
|
+
"type": "object",
|
|
2885
|
+
"additionalProperties": false,
|
|
2886
|
+
"properties": {
|
|
2887
|
+
"i18n": {
|
|
2888
|
+
"type": "string",
|
|
2889
|
+
"minLength": 1,
|
|
2890
|
+
"maxLength": 300,
|
|
2891
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
"required": [
|
|
2895
|
+
"i18n"
|
|
2896
|
+
]
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"type": "string",
|
|
2900
|
+
"minLength": 1,
|
|
2901
|
+
"maxLength": 255
|
|
2902
|
+
}
|
|
2903
|
+
]
|
|
2904
|
+
},
|
|
2905
|
+
"title__i18n": {
|
|
2182
2906
|
"type": "string",
|
|
2183
2907
|
"minLength": 1,
|
|
2184
|
-
"maxLength":
|
|
2908
|
+
"maxLength": 300,
|
|
2909
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2185
2910
|
},
|
|
2186
2911
|
"route": {
|
|
2187
2912
|
"type": "string",
|
|
@@ -2209,9 +2934,34 @@
|
|
|
2209
2934
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2210
2935
|
},
|
|
2211
2936
|
"description": {
|
|
2937
|
+
"oneOf": [
|
|
2938
|
+
{
|
|
2939
|
+
"type": "object",
|
|
2940
|
+
"additionalProperties": false,
|
|
2941
|
+
"properties": {
|
|
2942
|
+
"i18n": {
|
|
2943
|
+
"type": "string",
|
|
2944
|
+
"minLength": 1,
|
|
2945
|
+
"maxLength": 300,
|
|
2946
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2947
|
+
}
|
|
2948
|
+
},
|
|
2949
|
+
"required": [
|
|
2950
|
+
"i18n"
|
|
2951
|
+
]
|
|
2952
|
+
},
|
|
2953
|
+
{
|
|
2954
|
+
"type": "string",
|
|
2955
|
+
"minLength": 1,
|
|
2956
|
+
"maxLength": 1000
|
|
2957
|
+
}
|
|
2958
|
+
]
|
|
2959
|
+
},
|
|
2960
|
+
"description__i18n": {
|
|
2212
2961
|
"type": "string",
|
|
2213
2962
|
"minLength": 1,
|
|
2214
|
-
"maxLength":
|
|
2963
|
+
"maxLength": 300,
|
|
2964
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2215
2965
|
}
|
|
2216
2966
|
},
|
|
2217
2967
|
"required": [
|
|
@@ -2238,9 +2988,34 @@
|
|
|
2238
2988
|
"type": "object",
|
|
2239
2989
|
"properties": {
|
|
2240
2990
|
"title": {
|
|
2991
|
+
"oneOf": [
|
|
2992
|
+
{
|
|
2993
|
+
"type": "object",
|
|
2994
|
+
"additionalProperties": false,
|
|
2995
|
+
"properties": {
|
|
2996
|
+
"i18n": {
|
|
2997
|
+
"type": "string",
|
|
2998
|
+
"minLength": 1,
|
|
2999
|
+
"maxLength": 300,
|
|
3000
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3001
|
+
}
|
|
3002
|
+
},
|
|
3003
|
+
"required": [
|
|
3004
|
+
"i18n"
|
|
3005
|
+
]
|
|
3006
|
+
},
|
|
3007
|
+
{
|
|
3008
|
+
"type": "string",
|
|
3009
|
+
"minLength": 1,
|
|
3010
|
+
"maxLength": 255
|
|
3011
|
+
}
|
|
3012
|
+
]
|
|
3013
|
+
},
|
|
3014
|
+
"title__i18n": {
|
|
2241
3015
|
"type": "string",
|
|
2242
3016
|
"minLength": 1,
|
|
2243
|
-
"maxLength":
|
|
3017
|
+
"maxLength": 300,
|
|
3018
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2244
3019
|
},
|
|
2245
3020
|
"route": {
|
|
2246
3021
|
"type": "string",
|
|
@@ -2307,9 +3082,34 @@
|
|
|
2307
3082
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2308
3083
|
},
|
|
2309
3084
|
"description": {
|
|
3085
|
+
"oneOf": [
|
|
3086
|
+
{
|
|
3087
|
+
"type": "object",
|
|
3088
|
+
"additionalProperties": false,
|
|
3089
|
+
"properties": {
|
|
3090
|
+
"i18n": {
|
|
3091
|
+
"type": "string",
|
|
3092
|
+
"minLength": 1,
|
|
3093
|
+
"maxLength": 300,
|
|
3094
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3095
|
+
}
|
|
3096
|
+
},
|
|
3097
|
+
"required": [
|
|
3098
|
+
"i18n"
|
|
3099
|
+
]
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"type": "string",
|
|
3103
|
+
"minLength": 1,
|
|
3104
|
+
"maxLength": 1000
|
|
3105
|
+
}
|
|
3106
|
+
]
|
|
3107
|
+
},
|
|
3108
|
+
"description__i18n": {
|
|
2310
3109
|
"type": "string",
|
|
2311
3110
|
"minLength": 1,
|
|
2312
|
-
"maxLength":
|
|
3111
|
+
"maxLength": 300,
|
|
3112
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2313
3113
|
}
|
|
2314
3114
|
},
|
|
2315
3115
|
"required": [
|
|
@@ -2352,9 +3152,34 @@
|
|
|
2352
3152
|
"type": "object",
|
|
2353
3153
|
"properties": {
|
|
2354
3154
|
"title": {
|
|
3155
|
+
"oneOf": [
|
|
3156
|
+
{
|
|
3157
|
+
"type": "object",
|
|
3158
|
+
"additionalProperties": false,
|
|
3159
|
+
"properties": {
|
|
3160
|
+
"i18n": {
|
|
3161
|
+
"type": "string",
|
|
3162
|
+
"minLength": 1,
|
|
3163
|
+
"maxLength": 300,
|
|
3164
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
"required": [
|
|
3168
|
+
"i18n"
|
|
3169
|
+
]
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
"type": "string",
|
|
3173
|
+
"minLength": 1,
|
|
3174
|
+
"maxLength": 255
|
|
3175
|
+
}
|
|
3176
|
+
]
|
|
3177
|
+
},
|
|
3178
|
+
"title__i18n": {
|
|
2355
3179
|
"type": "string",
|
|
2356
3180
|
"minLength": 1,
|
|
2357
|
-
"maxLength":
|
|
3181
|
+
"maxLength": 300,
|
|
3182
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2358
3183
|
},
|
|
2359
3184
|
"function": {
|
|
2360
3185
|
"type": "string",
|
|
@@ -2386,9 +3211,34 @@
|
|
|
2386
3211
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2387
3212
|
},
|
|
2388
3213
|
"description": {
|
|
3214
|
+
"oneOf": [
|
|
3215
|
+
{
|
|
3216
|
+
"type": "object",
|
|
3217
|
+
"additionalProperties": false,
|
|
3218
|
+
"properties": {
|
|
3219
|
+
"i18n": {
|
|
3220
|
+
"type": "string",
|
|
3221
|
+
"minLength": 1,
|
|
3222
|
+
"maxLength": 300,
|
|
3223
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3224
|
+
}
|
|
3225
|
+
},
|
|
3226
|
+
"required": [
|
|
3227
|
+
"i18n"
|
|
3228
|
+
]
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"type": "string",
|
|
3232
|
+
"minLength": 1,
|
|
3233
|
+
"maxLength": 1000
|
|
3234
|
+
}
|
|
3235
|
+
]
|
|
3236
|
+
},
|
|
3237
|
+
"description__i18n": {
|
|
2389
3238
|
"type": "string",
|
|
2390
3239
|
"minLength": 1,
|
|
2391
|
-
"maxLength":
|
|
3240
|
+
"maxLength": 300,
|
|
3241
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2392
3242
|
}
|
|
2393
3243
|
},
|
|
2394
3244
|
"required": [
|
|
@@ -2414,9 +3264,34 @@
|
|
|
2414
3264
|
"type": "object",
|
|
2415
3265
|
"properties": {
|
|
2416
3266
|
"title": {
|
|
3267
|
+
"oneOf": [
|
|
3268
|
+
{
|
|
3269
|
+
"type": "object",
|
|
3270
|
+
"additionalProperties": false,
|
|
3271
|
+
"properties": {
|
|
3272
|
+
"i18n": {
|
|
3273
|
+
"type": "string",
|
|
3274
|
+
"minLength": 1,
|
|
3275
|
+
"maxLength": 300,
|
|
3276
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3277
|
+
}
|
|
3278
|
+
},
|
|
3279
|
+
"required": [
|
|
3280
|
+
"i18n"
|
|
3281
|
+
]
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
"type": "string",
|
|
3285
|
+
"minLength": 1,
|
|
3286
|
+
"maxLength": 255
|
|
3287
|
+
}
|
|
3288
|
+
]
|
|
3289
|
+
},
|
|
3290
|
+
"title__i18n": {
|
|
2417
3291
|
"type": "string",
|
|
2418
3292
|
"minLength": 1,
|
|
2419
|
-
"maxLength":
|
|
3293
|
+
"maxLength": 300,
|
|
3294
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2420
3295
|
},
|
|
2421
3296
|
"resolver": {
|
|
2422
3297
|
"anyOf": [
|
|
@@ -2487,9 +3362,34 @@
|
|
|
2487
3362
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2488
3363
|
},
|
|
2489
3364
|
"description": {
|
|
3365
|
+
"oneOf": [
|
|
3366
|
+
{
|
|
3367
|
+
"type": "object",
|
|
3368
|
+
"additionalProperties": false,
|
|
3369
|
+
"properties": {
|
|
3370
|
+
"i18n": {
|
|
3371
|
+
"type": "string",
|
|
3372
|
+
"minLength": 1,
|
|
3373
|
+
"maxLength": 300,
|
|
3374
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3375
|
+
}
|
|
3376
|
+
},
|
|
3377
|
+
"required": [
|
|
3378
|
+
"i18n"
|
|
3379
|
+
]
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"type": "string",
|
|
3383
|
+
"minLength": 1,
|
|
3384
|
+
"maxLength": 1000
|
|
3385
|
+
}
|
|
3386
|
+
]
|
|
3387
|
+
},
|
|
3388
|
+
"description__i18n": {
|
|
2490
3389
|
"type": "string",
|
|
2491
3390
|
"minLength": 1,
|
|
2492
|
-
"maxLength":
|
|
3391
|
+
"maxLength": 300,
|
|
3392
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2493
3393
|
}
|
|
2494
3394
|
},
|
|
2495
3395
|
"required": [
|
|
@@ -2532,9 +3432,34 @@
|
|
|
2532
3432
|
"additionalProperties": false,
|
|
2533
3433
|
"properties": {
|
|
2534
3434
|
"title": {
|
|
3435
|
+
"oneOf": [
|
|
3436
|
+
{
|
|
3437
|
+
"type": "object",
|
|
3438
|
+
"additionalProperties": false,
|
|
3439
|
+
"properties": {
|
|
3440
|
+
"i18n": {
|
|
3441
|
+
"type": "string",
|
|
3442
|
+
"minLength": 1,
|
|
3443
|
+
"maxLength": 300,
|
|
3444
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3445
|
+
}
|
|
3446
|
+
},
|
|
3447
|
+
"required": [
|
|
3448
|
+
"i18n"
|
|
3449
|
+
]
|
|
3450
|
+
},
|
|
3451
|
+
{
|
|
3452
|
+
"type": "string",
|
|
3453
|
+
"minLength": 1,
|
|
3454
|
+
"maxLength": 255
|
|
3455
|
+
}
|
|
3456
|
+
]
|
|
3457
|
+
},
|
|
3458
|
+
"title__i18n": {
|
|
2535
3459
|
"type": "string",
|
|
2536
3460
|
"minLength": 1,
|
|
2537
|
-
"maxLength":
|
|
3461
|
+
"maxLength": 300,
|
|
3462
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2538
3463
|
},
|
|
2539
3464
|
"icon": {
|
|
2540
3465
|
"type": "string",
|
|
@@ -2567,9 +3492,34 @@
|
|
|
2567
3492
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2568
3493
|
},
|
|
2569
3494
|
"description": {
|
|
3495
|
+
"oneOf": [
|
|
3496
|
+
{
|
|
3497
|
+
"type": "object",
|
|
3498
|
+
"additionalProperties": false,
|
|
3499
|
+
"properties": {
|
|
3500
|
+
"i18n": {
|
|
3501
|
+
"type": "string",
|
|
3502
|
+
"minLength": 1,
|
|
3503
|
+
"maxLength": 300,
|
|
3504
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3505
|
+
}
|
|
3506
|
+
},
|
|
3507
|
+
"required": [
|
|
3508
|
+
"i18n"
|
|
3509
|
+
]
|
|
3510
|
+
},
|
|
3511
|
+
{
|
|
3512
|
+
"type": "string",
|
|
3513
|
+
"minLength": 1,
|
|
3514
|
+
"maxLength": 1000
|
|
3515
|
+
}
|
|
3516
|
+
]
|
|
3517
|
+
},
|
|
3518
|
+
"description__i18n": {
|
|
2570
3519
|
"type": "string",
|
|
2571
3520
|
"minLength": 1,
|
|
2572
|
-
"maxLength":
|
|
3521
|
+
"maxLength": 300,
|
|
3522
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2573
3523
|
}
|
|
2574
3524
|
},
|
|
2575
3525
|
"required": [
|
|
@@ -2597,9 +3547,34 @@
|
|
|
2597
3547
|
"additionalProperties": false,
|
|
2598
3548
|
"properties": {
|
|
2599
3549
|
"title": {
|
|
3550
|
+
"oneOf": [
|
|
3551
|
+
{
|
|
3552
|
+
"type": "object",
|
|
3553
|
+
"additionalProperties": false,
|
|
3554
|
+
"properties": {
|
|
3555
|
+
"i18n": {
|
|
3556
|
+
"type": "string",
|
|
3557
|
+
"minLength": 1,
|
|
3558
|
+
"maxLength": 300,
|
|
3559
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3560
|
+
}
|
|
3561
|
+
},
|
|
3562
|
+
"required": [
|
|
3563
|
+
"i18n"
|
|
3564
|
+
]
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"type": "string",
|
|
3568
|
+
"minLength": 1,
|
|
3569
|
+
"maxLength": 255
|
|
3570
|
+
}
|
|
3571
|
+
]
|
|
3572
|
+
},
|
|
3573
|
+
"title__i18n": {
|
|
2600
3574
|
"type": "string",
|
|
2601
3575
|
"minLength": 1,
|
|
2602
|
-
"maxLength":
|
|
3576
|
+
"maxLength": 300,
|
|
3577
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2603
3578
|
},
|
|
2604
3579
|
"icon": {
|
|
2605
3580
|
"type": "string",
|
|
@@ -2671,9 +3646,34 @@
|
|
|
2671
3646
|
"description": "Keyboard key(s)/combination(s) used to trigger this module."
|
|
2672
3647
|
},
|
|
2673
3648
|
"description": {
|
|
3649
|
+
"oneOf": [
|
|
3650
|
+
{
|
|
3651
|
+
"type": "object",
|
|
3652
|
+
"additionalProperties": false,
|
|
3653
|
+
"properties": {
|
|
3654
|
+
"i18n": {
|
|
3655
|
+
"type": "string",
|
|
3656
|
+
"minLength": 1,
|
|
3657
|
+
"maxLength": 300,
|
|
3658
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3659
|
+
}
|
|
3660
|
+
},
|
|
3661
|
+
"required": [
|
|
3662
|
+
"i18n"
|
|
3663
|
+
]
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"type": "string",
|
|
3667
|
+
"minLength": 1,
|
|
3668
|
+
"maxLength": 1000
|
|
3669
|
+
}
|
|
3670
|
+
]
|
|
3671
|
+
},
|
|
3672
|
+
"description__i18n": {
|
|
2674
3673
|
"type": "string",
|
|
2675
3674
|
"minLength": 1,
|
|
2676
|
-
"maxLength":
|
|
3675
|
+
"maxLength": 300,
|
|
3676
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2677
3677
|
}
|
|
2678
3678
|
},
|
|
2679
3679
|
"required": [
|
|
@@ -2717,14 +3717,64 @@
|
|
|
2717
3717
|
"additionalProperties": false,
|
|
2718
3718
|
"properties": {
|
|
2719
3719
|
"title": {
|
|
3720
|
+
"oneOf": [
|
|
3721
|
+
{
|
|
3722
|
+
"type": "object",
|
|
3723
|
+
"additionalProperties": false,
|
|
3724
|
+
"properties": {
|
|
3725
|
+
"i18n": {
|
|
3726
|
+
"type": "string",
|
|
3727
|
+
"minLength": 1,
|
|
3728
|
+
"maxLength": 300,
|
|
3729
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3730
|
+
}
|
|
3731
|
+
},
|
|
3732
|
+
"required": [
|
|
3733
|
+
"i18n"
|
|
3734
|
+
]
|
|
3735
|
+
},
|
|
3736
|
+
{
|
|
3737
|
+
"type": "string",
|
|
3738
|
+
"minLength": 1,
|
|
3739
|
+
"maxLength": 255
|
|
3740
|
+
}
|
|
3741
|
+
]
|
|
3742
|
+
},
|
|
3743
|
+
"title__i18n": {
|
|
2720
3744
|
"type": "string",
|
|
2721
3745
|
"minLength": 1,
|
|
2722
|
-
"maxLength":
|
|
3746
|
+
"maxLength": 300,
|
|
3747
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2723
3748
|
},
|
|
2724
3749
|
"description": {
|
|
3750
|
+
"oneOf": [
|
|
3751
|
+
{
|
|
3752
|
+
"type": "object",
|
|
3753
|
+
"additionalProperties": false,
|
|
3754
|
+
"properties": {
|
|
3755
|
+
"i18n": {
|
|
3756
|
+
"type": "string",
|
|
3757
|
+
"minLength": 1,
|
|
3758
|
+
"maxLength": 300,
|
|
3759
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3760
|
+
}
|
|
3761
|
+
},
|
|
3762
|
+
"required": [
|
|
3763
|
+
"i18n"
|
|
3764
|
+
]
|
|
3765
|
+
},
|
|
3766
|
+
{
|
|
3767
|
+
"type": "string",
|
|
3768
|
+
"minLength": 1,
|
|
3769
|
+
"maxLength": 1000
|
|
3770
|
+
}
|
|
3771
|
+
]
|
|
3772
|
+
},
|
|
3773
|
+
"description__i18n": {
|
|
2725
3774
|
"type": "string",
|
|
2726
3775
|
"minLength": 1,
|
|
2727
|
-
"maxLength":
|
|
3776
|
+
"maxLength": 300,
|
|
3777
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2728
3778
|
},
|
|
2729
3779
|
"icon": {
|
|
2730
3780
|
"type": "string",
|
|
@@ -2806,14 +3856,64 @@
|
|
|
2806
3856
|
"additionalProperties": false,
|
|
2807
3857
|
"properties": {
|
|
2808
3858
|
"title": {
|
|
3859
|
+
"oneOf": [
|
|
3860
|
+
{
|
|
3861
|
+
"type": "object",
|
|
3862
|
+
"additionalProperties": false,
|
|
3863
|
+
"properties": {
|
|
3864
|
+
"i18n": {
|
|
3865
|
+
"type": "string",
|
|
3866
|
+
"minLength": 1,
|
|
3867
|
+
"maxLength": 300,
|
|
3868
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3869
|
+
}
|
|
3870
|
+
},
|
|
3871
|
+
"required": [
|
|
3872
|
+
"i18n"
|
|
3873
|
+
]
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"type": "string",
|
|
3877
|
+
"minLength": 1,
|
|
3878
|
+
"maxLength": 255
|
|
3879
|
+
}
|
|
3880
|
+
]
|
|
3881
|
+
},
|
|
3882
|
+
"title__i18n": {
|
|
2809
3883
|
"type": "string",
|
|
2810
3884
|
"minLength": 1,
|
|
2811
|
-
"maxLength":
|
|
3885
|
+
"maxLength": 300,
|
|
3886
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2812
3887
|
},
|
|
2813
3888
|
"description": {
|
|
3889
|
+
"oneOf": [
|
|
3890
|
+
{
|
|
3891
|
+
"type": "object",
|
|
3892
|
+
"additionalProperties": false,
|
|
3893
|
+
"properties": {
|
|
3894
|
+
"i18n": {
|
|
3895
|
+
"type": "string",
|
|
3896
|
+
"minLength": 1,
|
|
3897
|
+
"maxLength": 300,
|
|
3898
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
3899
|
+
}
|
|
3900
|
+
},
|
|
3901
|
+
"required": [
|
|
3902
|
+
"i18n"
|
|
3903
|
+
]
|
|
3904
|
+
},
|
|
3905
|
+
{
|
|
3906
|
+
"type": "string",
|
|
3907
|
+
"minLength": 1,
|
|
3908
|
+
"maxLength": 1000
|
|
3909
|
+
}
|
|
3910
|
+
]
|
|
3911
|
+
},
|
|
3912
|
+
"description__i18n": {
|
|
2814
3913
|
"type": "string",
|
|
2815
3914
|
"minLength": 1,
|
|
2816
|
-
"maxLength":
|
|
3915
|
+
"maxLength": 300,
|
|
3916
|
+
"pattern": "^[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)*$"
|
|
2817
3917
|
},
|
|
2818
3918
|
"icon": {
|
|
2819
3919
|
"type": "string",
|
|
@@ -7197,9 +8297,27 @@
|
|
|
7197
8297
|
],
|
|
7198
8298
|
"properties": {
|
|
7199
8299
|
"title": {
|
|
7200
|
-
"
|
|
7201
|
-
|
|
7202
|
-
|
|
8300
|
+
"oneOf": [
|
|
8301
|
+
{
|
|
8302
|
+
"type": "object",
|
|
8303
|
+
"additionalProperties": false,
|
|
8304
|
+
"properties": {
|
|
8305
|
+
"i18n": {
|
|
8306
|
+
"type": "string",
|
|
8307
|
+
"minLength": 1,
|
|
8308
|
+
"maxLength": 300
|
|
8309
|
+
}
|
|
8310
|
+
},
|
|
8311
|
+
"required": [
|
|
8312
|
+
"i18n"
|
|
8313
|
+
]
|
|
8314
|
+
},
|
|
8315
|
+
{
|
|
8316
|
+
"type": "string",
|
|
8317
|
+
"minLength": 1,
|
|
8318
|
+
"maxLength": 255
|
|
8319
|
+
}
|
|
8320
|
+
]
|
|
7203
8321
|
},
|
|
7204
8322
|
"icon": {
|
|
7205
8323
|
"type": "string",
|
|
@@ -7231,9 +8349,27 @@
|
|
|
7231
8349
|
],
|
|
7232
8350
|
"properties": {
|
|
7233
8351
|
"title": {
|
|
7234
|
-
"
|
|
7235
|
-
|
|
7236
|
-
|
|
8352
|
+
"oneOf": [
|
|
8353
|
+
{
|
|
8354
|
+
"type": "object",
|
|
8355
|
+
"additionalProperties": false,
|
|
8356
|
+
"properties": {
|
|
8357
|
+
"i18n": {
|
|
8358
|
+
"type": "string",
|
|
8359
|
+
"minLength": 1,
|
|
8360
|
+
"maxLength": 300
|
|
8361
|
+
}
|
|
8362
|
+
},
|
|
8363
|
+
"required": [
|
|
8364
|
+
"i18n"
|
|
8365
|
+
]
|
|
8366
|
+
},
|
|
8367
|
+
{
|
|
8368
|
+
"type": "string",
|
|
8369
|
+
"minLength": 1,
|
|
8370
|
+
"maxLength": 255
|
|
8371
|
+
}
|
|
8372
|
+
]
|
|
7237
8373
|
},
|
|
7238
8374
|
"icon": {
|
|
7239
8375
|
"type": "string",
|
|
@@ -7307,9 +8443,27 @@
|
|
|
7307
8443
|
],
|
|
7308
8444
|
"properties": {
|
|
7309
8445
|
"title": {
|
|
7310
|
-
"
|
|
7311
|
-
|
|
7312
|
-
|
|
8446
|
+
"oneOf": [
|
|
8447
|
+
{
|
|
8448
|
+
"type": "object",
|
|
8449
|
+
"additionalProperties": false,
|
|
8450
|
+
"properties": {
|
|
8451
|
+
"i18n": {
|
|
8452
|
+
"type": "string",
|
|
8453
|
+
"minLength": 1,
|
|
8454
|
+
"maxLength": 300
|
|
8455
|
+
}
|
|
8456
|
+
},
|
|
8457
|
+
"required": [
|
|
8458
|
+
"i18n"
|
|
8459
|
+
]
|
|
8460
|
+
},
|
|
8461
|
+
{
|
|
8462
|
+
"type": "string",
|
|
8463
|
+
"minLength": 1,
|
|
8464
|
+
"maxLength": 255
|
|
8465
|
+
}
|
|
8466
|
+
]
|
|
7313
8467
|
},
|
|
7314
8468
|
"icon": {
|
|
7315
8469
|
"type": "string",
|
|
@@ -7344,9 +8498,27 @@
|
|
|
7344
8498
|
],
|
|
7345
8499
|
"properties": {
|
|
7346
8500
|
"title": {
|
|
7347
|
-
"
|
|
7348
|
-
|
|
7349
|
-
|
|
8501
|
+
"oneOf": [
|
|
8502
|
+
{
|
|
8503
|
+
"type": "object",
|
|
8504
|
+
"additionalProperties": false,
|
|
8505
|
+
"properties": {
|
|
8506
|
+
"i18n": {
|
|
8507
|
+
"type": "string",
|
|
8508
|
+
"minLength": 1,
|
|
8509
|
+
"maxLength": 300
|
|
8510
|
+
}
|
|
8511
|
+
},
|
|
8512
|
+
"required": [
|
|
8513
|
+
"i18n"
|
|
8514
|
+
]
|
|
8515
|
+
},
|
|
8516
|
+
{
|
|
8517
|
+
"type": "string",
|
|
8518
|
+
"minLength": 1,
|
|
8519
|
+
"maxLength": 255
|
|
8520
|
+
}
|
|
8521
|
+
]
|
|
7350
8522
|
},
|
|
7351
8523
|
"icon": {
|
|
7352
8524
|
"type": "string",
|
|
@@ -7423,9 +8595,27 @@
|
|
|
7423
8595
|
],
|
|
7424
8596
|
"properties": {
|
|
7425
8597
|
"title": {
|
|
7426
|
-
"
|
|
7427
|
-
|
|
7428
|
-
|
|
8598
|
+
"oneOf": [
|
|
8599
|
+
{
|
|
8600
|
+
"type": "object",
|
|
8601
|
+
"additionalProperties": false,
|
|
8602
|
+
"properties": {
|
|
8603
|
+
"i18n": {
|
|
8604
|
+
"type": "string",
|
|
8605
|
+
"minLength": 1,
|
|
8606
|
+
"maxLength": 300
|
|
8607
|
+
}
|
|
8608
|
+
},
|
|
8609
|
+
"required": [
|
|
8610
|
+
"i18n"
|
|
8611
|
+
]
|
|
8612
|
+
},
|
|
8613
|
+
{
|
|
8614
|
+
"type": "string",
|
|
8615
|
+
"minLength": 1,
|
|
8616
|
+
"maxLength": 255
|
|
8617
|
+
}
|
|
8618
|
+
]
|
|
7429
8619
|
},
|
|
7430
8620
|
"icon": {
|
|
7431
8621
|
"type": "string",
|
|
@@ -7460,9 +8650,27 @@
|
|
|
7460
8650
|
],
|
|
7461
8651
|
"properties": {
|
|
7462
8652
|
"title": {
|
|
7463
|
-
"
|
|
7464
|
-
|
|
7465
|
-
|
|
8653
|
+
"oneOf": [
|
|
8654
|
+
{
|
|
8655
|
+
"type": "object",
|
|
8656
|
+
"additionalProperties": false,
|
|
8657
|
+
"properties": {
|
|
8658
|
+
"i18n": {
|
|
8659
|
+
"type": "string",
|
|
8660
|
+
"minLength": 1,
|
|
8661
|
+
"maxLength": 300
|
|
8662
|
+
}
|
|
8663
|
+
},
|
|
8664
|
+
"required": [
|
|
8665
|
+
"i18n"
|
|
8666
|
+
]
|
|
8667
|
+
},
|
|
8668
|
+
{
|
|
8669
|
+
"type": "string",
|
|
8670
|
+
"minLength": 1,
|
|
8671
|
+
"maxLength": 255
|
|
8672
|
+
}
|
|
8673
|
+
]
|
|
7466
8674
|
},
|
|
7467
8675
|
"icon": {
|
|
7468
8676
|
"type": "string",
|
|
@@ -7539,9 +8747,27 @@
|
|
|
7539
8747
|
],
|
|
7540
8748
|
"properties": {
|
|
7541
8749
|
"title": {
|
|
7542
|
-
"
|
|
7543
|
-
|
|
7544
|
-
|
|
8750
|
+
"oneOf": [
|
|
8751
|
+
{
|
|
8752
|
+
"type": "object",
|
|
8753
|
+
"additionalProperties": false,
|
|
8754
|
+
"properties": {
|
|
8755
|
+
"i18n": {
|
|
8756
|
+
"type": "string",
|
|
8757
|
+
"minLength": 1,
|
|
8758
|
+
"maxLength": 300
|
|
8759
|
+
}
|
|
8760
|
+
},
|
|
8761
|
+
"required": [
|
|
8762
|
+
"i18n"
|
|
8763
|
+
]
|
|
8764
|
+
},
|
|
8765
|
+
{
|
|
8766
|
+
"type": "string",
|
|
8767
|
+
"minLength": 1,
|
|
8768
|
+
"maxLength": 255
|
|
8769
|
+
}
|
|
8770
|
+
]
|
|
7545
8771
|
},
|
|
7546
8772
|
"icon": {
|
|
7547
8773
|
"type": "string",
|
|
@@ -7573,9 +8799,27 @@
|
|
|
7573
8799
|
],
|
|
7574
8800
|
"properties": {
|
|
7575
8801
|
"title": {
|
|
7576
|
-
"
|
|
7577
|
-
|
|
7578
|
-
|
|
8802
|
+
"oneOf": [
|
|
8803
|
+
{
|
|
8804
|
+
"type": "object",
|
|
8805
|
+
"additionalProperties": false,
|
|
8806
|
+
"properties": {
|
|
8807
|
+
"i18n": {
|
|
8808
|
+
"type": "string",
|
|
8809
|
+
"minLength": 1,
|
|
8810
|
+
"maxLength": 300
|
|
8811
|
+
}
|
|
8812
|
+
},
|
|
8813
|
+
"required": [
|
|
8814
|
+
"i18n"
|
|
8815
|
+
]
|
|
8816
|
+
},
|
|
8817
|
+
{
|
|
8818
|
+
"type": "string",
|
|
8819
|
+
"minLength": 1,
|
|
8820
|
+
"maxLength": 255
|
|
8821
|
+
}
|
|
8822
|
+
]
|
|
7579
8823
|
},
|
|
7580
8824
|
"icon": {
|
|
7581
8825
|
"type": "string",
|
|
@@ -7719,9 +8963,27 @@
|
|
|
7719
8963
|
],
|
|
7720
8964
|
"properties": {
|
|
7721
8965
|
"title": {
|
|
7722
|
-
"
|
|
7723
|
-
|
|
7724
|
-
|
|
8966
|
+
"oneOf": [
|
|
8967
|
+
{
|
|
8968
|
+
"type": "object",
|
|
8969
|
+
"additionalProperties": false,
|
|
8970
|
+
"properties": {
|
|
8971
|
+
"i18n": {
|
|
8972
|
+
"type": "string",
|
|
8973
|
+
"minLength": 1,
|
|
8974
|
+
"maxLength": 300
|
|
8975
|
+
}
|
|
8976
|
+
},
|
|
8977
|
+
"required": [
|
|
8978
|
+
"i18n"
|
|
8979
|
+
]
|
|
8980
|
+
},
|
|
8981
|
+
{
|
|
8982
|
+
"type": "string",
|
|
8983
|
+
"minLength": 1,
|
|
8984
|
+
"maxLength": 255
|
|
8985
|
+
}
|
|
8986
|
+
]
|
|
7725
8987
|
},
|
|
7726
8988
|
"icon": {
|
|
7727
8989
|
"type": "string",
|
|
@@ -7762,9 +9024,27 @@
|
|
|
7762
9024
|
],
|
|
7763
9025
|
"properties": {
|
|
7764
9026
|
"title": {
|
|
7765
|
-
"
|
|
7766
|
-
|
|
7767
|
-
|
|
9027
|
+
"oneOf": [
|
|
9028
|
+
{
|
|
9029
|
+
"type": "object",
|
|
9030
|
+
"additionalProperties": false,
|
|
9031
|
+
"properties": {
|
|
9032
|
+
"i18n": {
|
|
9033
|
+
"type": "string",
|
|
9034
|
+
"minLength": 1,
|
|
9035
|
+
"maxLength": 300
|
|
9036
|
+
}
|
|
9037
|
+
},
|
|
9038
|
+
"required": [
|
|
9039
|
+
"i18n"
|
|
9040
|
+
]
|
|
9041
|
+
},
|
|
9042
|
+
{
|
|
9043
|
+
"type": "string",
|
|
9044
|
+
"minLength": 1,
|
|
9045
|
+
"maxLength": 255
|
|
9046
|
+
}
|
|
9047
|
+
]
|
|
7768
9048
|
},
|
|
7769
9049
|
"icon": {
|
|
7770
9050
|
"type": "string",
|
|
@@ -7861,9 +9141,27 @@
|
|
|
7861
9141
|
],
|
|
7862
9142
|
"properties": {
|
|
7863
9143
|
"title": {
|
|
7864
|
-
"
|
|
7865
|
-
|
|
7866
|
-
|
|
9144
|
+
"oneOf": [
|
|
9145
|
+
{
|
|
9146
|
+
"type": "object",
|
|
9147
|
+
"additionalProperties": false,
|
|
9148
|
+
"properties": {
|
|
9149
|
+
"i18n": {
|
|
9150
|
+
"type": "string",
|
|
9151
|
+
"minLength": 1,
|
|
9152
|
+
"maxLength": 300
|
|
9153
|
+
}
|
|
9154
|
+
},
|
|
9155
|
+
"required": [
|
|
9156
|
+
"i18n"
|
|
9157
|
+
]
|
|
9158
|
+
},
|
|
9159
|
+
{
|
|
9160
|
+
"type": "string",
|
|
9161
|
+
"minLength": 1,
|
|
9162
|
+
"maxLength": 255
|
|
9163
|
+
}
|
|
9164
|
+
]
|
|
7867
9165
|
},
|
|
7868
9166
|
"icon": {
|
|
7869
9167
|
"type": "string",
|
|
@@ -7910,9 +9208,27 @@
|
|
|
7910
9208
|
],
|
|
7911
9209
|
"properties": {
|
|
7912
9210
|
"title": {
|
|
7913
|
-
"
|
|
7914
|
-
|
|
7915
|
-
|
|
9211
|
+
"oneOf": [
|
|
9212
|
+
{
|
|
9213
|
+
"type": "object",
|
|
9214
|
+
"additionalProperties": false,
|
|
9215
|
+
"properties": {
|
|
9216
|
+
"i18n": {
|
|
9217
|
+
"type": "string",
|
|
9218
|
+
"minLength": 1,
|
|
9219
|
+
"maxLength": 300
|
|
9220
|
+
}
|
|
9221
|
+
},
|
|
9222
|
+
"required": [
|
|
9223
|
+
"i18n"
|
|
9224
|
+
]
|
|
9225
|
+
},
|
|
9226
|
+
{
|
|
9227
|
+
"type": "string",
|
|
9228
|
+
"minLength": 1,
|
|
9229
|
+
"maxLength": 255
|
|
9230
|
+
}
|
|
9231
|
+
]
|
|
7916
9232
|
},
|
|
7917
9233
|
"icon": {
|
|
7918
9234
|
"type": "string",
|
|
@@ -8003,9 +9319,27 @@
|
|
|
8003
9319
|
],
|
|
8004
9320
|
"properties": {
|
|
8005
9321
|
"title": {
|
|
8006
|
-
"
|
|
8007
|
-
|
|
8008
|
-
|
|
9322
|
+
"oneOf": [
|
|
9323
|
+
{
|
|
9324
|
+
"type": "object",
|
|
9325
|
+
"additionalProperties": false,
|
|
9326
|
+
"properties": {
|
|
9327
|
+
"i18n": {
|
|
9328
|
+
"type": "string",
|
|
9329
|
+
"minLength": 1,
|
|
9330
|
+
"maxLength": 300
|
|
9331
|
+
}
|
|
9332
|
+
},
|
|
9333
|
+
"required": [
|
|
9334
|
+
"i18n"
|
|
9335
|
+
]
|
|
9336
|
+
},
|
|
9337
|
+
{
|
|
9338
|
+
"type": "string",
|
|
9339
|
+
"minLength": 1,
|
|
9340
|
+
"maxLength": 255
|
|
9341
|
+
}
|
|
9342
|
+
]
|
|
8009
9343
|
},
|
|
8010
9344
|
"icon": {
|
|
8011
9345
|
"type": "string",
|
|
@@ -8052,9 +9386,27 @@
|
|
|
8052
9386
|
],
|
|
8053
9387
|
"properties": {
|
|
8054
9388
|
"title": {
|
|
8055
|
-
"
|
|
8056
|
-
|
|
8057
|
-
|
|
9389
|
+
"oneOf": [
|
|
9390
|
+
{
|
|
9391
|
+
"type": "object",
|
|
9392
|
+
"additionalProperties": false,
|
|
9393
|
+
"properties": {
|
|
9394
|
+
"i18n": {
|
|
9395
|
+
"type": "string",
|
|
9396
|
+
"minLength": 1,
|
|
9397
|
+
"maxLength": 300
|
|
9398
|
+
}
|
|
9399
|
+
},
|
|
9400
|
+
"required": [
|
|
9401
|
+
"i18n"
|
|
9402
|
+
]
|
|
9403
|
+
},
|
|
9404
|
+
{
|
|
9405
|
+
"type": "string",
|
|
9406
|
+
"minLength": 1,
|
|
9407
|
+
"maxLength": 255
|
|
9408
|
+
}
|
|
9409
|
+
]
|
|
8058
9410
|
},
|
|
8059
9411
|
"icon": {
|
|
8060
9412
|
"type": "string",
|
|
@@ -8145,9 +9497,27 @@
|
|
|
8145
9497
|
],
|
|
8146
9498
|
"properties": {
|
|
8147
9499
|
"title": {
|
|
8148
|
-
"
|
|
8149
|
-
|
|
8150
|
-
|
|
9500
|
+
"oneOf": [
|
|
9501
|
+
{
|
|
9502
|
+
"type": "object",
|
|
9503
|
+
"additionalProperties": false,
|
|
9504
|
+
"properties": {
|
|
9505
|
+
"i18n": {
|
|
9506
|
+
"type": "string",
|
|
9507
|
+
"minLength": 1,
|
|
9508
|
+
"maxLength": 300
|
|
9509
|
+
}
|
|
9510
|
+
},
|
|
9511
|
+
"required": [
|
|
9512
|
+
"i18n"
|
|
9513
|
+
]
|
|
9514
|
+
},
|
|
9515
|
+
{
|
|
9516
|
+
"type": "string",
|
|
9517
|
+
"minLength": 1,
|
|
9518
|
+
"maxLength": 255
|
|
9519
|
+
}
|
|
9520
|
+
]
|
|
8151
9521
|
},
|
|
8152
9522
|
"icon": {
|
|
8153
9523
|
"type": "string",
|
|
@@ -8188,9 +9558,27 @@
|
|
|
8188
9558
|
],
|
|
8189
9559
|
"properties": {
|
|
8190
9560
|
"title": {
|
|
8191
|
-
"
|
|
8192
|
-
|
|
8193
|
-
|
|
9561
|
+
"oneOf": [
|
|
9562
|
+
{
|
|
9563
|
+
"type": "object",
|
|
9564
|
+
"additionalProperties": false,
|
|
9565
|
+
"properties": {
|
|
9566
|
+
"i18n": {
|
|
9567
|
+
"type": "string",
|
|
9568
|
+
"minLength": 1,
|
|
9569
|
+
"maxLength": 300
|
|
9570
|
+
}
|
|
9571
|
+
},
|
|
9572
|
+
"required": [
|
|
9573
|
+
"i18n"
|
|
9574
|
+
]
|
|
9575
|
+
},
|
|
9576
|
+
{
|
|
9577
|
+
"type": "string",
|
|
9578
|
+
"minLength": 1,
|
|
9579
|
+
"maxLength": 255
|
|
9580
|
+
}
|
|
9581
|
+
]
|
|
8194
9582
|
},
|
|
8195
9583
|
"icon": {
|
|
8196
9584
|
"type": "string",
|
|
@@ -8741,9 +10129,27 @@
|
|
|
8741
10129
|
],
|
|
8742
10130
|
"properties": {
|
|
8743
10131
|
"title": {
|
|
8744
|
-
"
|
|
8745
|
-
|
|
8746
|
-
|
|
10132
|
+
"oneOf": [
|
|
10133
|
+
{
|
|
10134
|
+
"type": "object",
|
|
10135
|
+
"additionalProperties": false,
|
|
10136
|
+
"properties": {
|
|
10137
|
+
"i18n": {
|
|
10138
|
+
"type": "string",
|
|
10139
|
+
"minLength": 1,
|
|
10140
|
+
"maxLength": 300
|
|
10141
|
+
}
|
|
10142
|
+
},
|
|
10143
|
+
"required": [
|
|
10144
|
+
"i18n"
|
|
10145
|
+
]
|
|
10146
|
+
},
|
|
10147
|
+
{
|
|
10148
|
+
"type": "string",
|
|
10149
|
+
"minLength": 1,
|
|
10150
|
+
"maxLength": 255
|
|
10151
|
+
}
|
|
10152
|
+
]
|
|
8747
10153
|
},
|
|
8748
10154
|
"icon": {
|
|
8749
10155
|
"type": "string",
|
|
@@ -8779,9 +10185,27 @@
|
|
|
8779
10185
|
],
|
|
8780
10186
|
"properties": {
|
|
8781
10187
|
"title": {
|
|
8782
|
-
"
|
|
8783
|
-
|
|
8784
|
-
|
|
10188
|
+
"oneOf": [
|
|
10189
|
+
{
|
|
10190
|
+
"type": "object",
|
|
10191
|
+
"additionalProperties": false,
|
|
10192
|
+
"properties": {
|
|
10193
|
+
"i18n": {
|
|
10194
|
+
"type": "string",
|
|
10195
|
+
"minLength": 1,
|
|
10196
|
+
"maxLength": 300
|
|
10197
|
+
}
|
|
10198
|
+
},
|
|
10199
|
+
"required": [
|
|
10200
|
+
"i18n"
|
|
10201
|
+
]
|
|
10202
|
+
},
|
|
10203
|
+
{
|
|
10204
|
+
"type": "string",
|
|
10205
|
+
"minLength": 1,
|
|
10206
|
+
"maxLength": 255
|
|
10207
|
+
}
|
|
10208
|
+
]
|
|
8785
10209
|
},
|
|
8786
10210
|
"icon": {
|
|
8787
10211
|
"type": "string",
|
|
@@ -8878,9 +10302,27 @@
|
|
|
8878
10302
|
"type": "object",
|
|
8879
10303
|
"properties": {
|
|
8880
10304
|
"title": {
|
|
8881
|
-
"
|
|
8882
|
-
|
|
8883
|
-
|
|
10305
|
+
"oneOf": [
|
|
10306
|
+
{
|
|
10307
|
+
"type": "object",
|
|
10308
|
+
"additionalProperties": false,
|
|
10309
|
+
"properties": {
|
|
10310
|
+
"i18n": {
|
|
10311
|
+
"type": "string",
|
|
10312
|
+
"minLength": 1,
|
|
10313
|
+
"maxLength": 300
|
|
10314
|
+
}
|
|
10315
|
+
},
|
|
10316
|
+
"required": [
|
|
10317
|
+
"i18n"
|
|
10318
|
+
]
|
|
10319
|
+
},
|
|
10320
|
+
{
|
|
10321
|
+
"type": "string",
|
|
10322
|
+
"minLength": 1,
|
|
10323
|
+
"maxLength": 255
|
|
10324
|
+
}
|
|
10325
|
+
]
|
|
8884
10326
|
},
|
|
8885
10327
|
"function": {
|
|
8886
10328
|
"type": "string",
|
|
@@ -8906,9 +10348,27 @@
|
|
|
8906
10348
|
"type": "object",
|
|
8907
10349
|
"properties": {
|
|
8908
10350
|
"title": {
|
|
8909
|
-
"
|
|
8910
|
-
|
|
8911
|
-
|
|
10351
|
+
"oneOf": [
|
|
10352
|
+
{
|
|
10353
|
+
"type": "object",
|
|
10354
|
+
"additionalProperties": false,
|
|
10355
|
+
"properties": {
|
|
10356
|
+
"i18n": {
|
|
10357
|
+
"type": "string",
|
|
10358
|
+
"minLength": 1,
|
|
10359
|
+
"maxLength": 300
|
|
10360
|
+
}
|
|
10361
|
+
},
|
|
10362
|
+
"required": [
|
|
10363
|
+
"i18n"
|
|
10364
|
+
]
|
|
10365
|
+
},
|
|
10366
|
+
{
|
|
10367
|
+
"type": "string",
|
|
10368
|
+
"minLength": 1,
|
|
10369
|
+
"maxLength": 255
|
|
10370
|
+
}
|
|
10371
|
+
]
|
|
8912
10372
|
},
|
|
8913
10373
|
"resolver": {
|
|
8914
10374
|
"anyOf": [
|
|
@@ -9000,9 +10460,27 @@
|
|
|
9000
10460
|
"type": "object",
|
|
9001
10461
|
"properties": {
|
|
9002
10462
|
"title": {
|
|
9003
|
-
"
|
|
9004
|
-
|
|
9005
|
-
|
|
10463
|
+
"oneOf": [
|
|
10464
|
+
{
|
|
10465
|
+
"type": "object",
|
|
10466
|
+
"additionalProperties": false,
|
|
10467
|
+
"properties": {
|
|
10468
|
+
"i18n": {
|
|
10469
|
+
"type": "string",
|
|
10470
|
+
"minLength": 1,
|
|
10471
|
+
"maxLength": 300
|
|
10472
|
+
}
|
|
10473
|
+
},
|
|
10474
|
+
"required": [
|
|
10475
|
+
"i18n"
|
|
10476
|
+
]
|
|
10477
|
+
},
|
|
10478
|
+
{
|
|
10479
|
+
"type": "string",
|
|
10480
|
+
"minLength": 1,
|
|
10481
|
+
"maxLength": 255
|
|
10482
|
+
}
|
|
10483
|
+
]
|
|
9006
10484
|
},
|
|
9007
10485
|
"function": {
|
|
9008
10486
|
"type": "string",
|
|
@@ -9024,9 +10502,27 @@
|
|
|
9024
10502
|
"type": "object",
|
|
9025
10503
|
"properties": {
|
|
9026
10504
|
"title": {
|
|
9027
|
-
"
|
|
9028
|
-
|
|
9029
|
-
|
|
10505
|
+
"oneOf": [
|
|
10506
|
+
{
|
|
10507
|
+
"type": "object",
|
|
10508
|
+
"additionalProperties": false,
|
|
10509
|
+
"properties": {
|
|
10510
|
+
"i18n": {
|
|
10511
|
+
"type": "string",
|
|
10512
|
+
"minLength": 1,
|
|
10513
|
+
"maxLength": 300
|
|
10514
|
+
}
|
|
10515
|
+
},
|
|
10516
|
+
"required": [
|
|
10517
|
+
"i18n"
|
|
10518
|
+
]
|
|
10519
|
+
},
|
|
10520
|
+
{
|
|
10521
|
+
"type": "string",
|
|
10522
|
+
"minLength": 1,
|
|
10523
|
+
"maxLength": 255
|
|
10524
|
+
}
|
|
10525
|
+
]
|
|
9030
10526
|
},
|
|
9031
10527
|
"resolver": {
|
|
9032
10528
|
"anyOf": [
|
|
@@ -9118,9 +10614,27 @@
|
|
|
9118
10614
|
],
|
|
9119
10615
|
"properties": {
|
|
9120
10616
|
"title": {
|
|
9121
|
-
"
|
|
9122
|
-
|
|
9123
|
-
|
|
10617
|
+
"oneOf": [
|
|
10618
|
+
{
|
|
10619
|
+
"type": "object",
|
|
10620
|
+
"additionalProperties": false,
|
|
10621
|
+
"properties": {
|
|
10622
|
+
"i18n": {
|
|
10623
|
+
"type": "string",
|
|
10624
|
+
"minLength": 1,
|
|
10625
|
+
"maxLength": 300
|
|
10626
|
+
}
|
|
10627
|
+
},
|
|
10628
|
+
"required": [
|
|
10629
|
+
"i18n"
|
|
10630
|
+
]
|
|
10631
|
+
},
|
|
10632
|
+
{
|
|
10633
|
+
"type": "string",
|
|
10634
|
+
"minLength": 1,
|
|
10635
|
+
"maxLength": 255
|
|
10636
|
+
}
|
|
10637
|
+
]
|
|
9124
10638
|
},
|
|
9125
10639
|
"icon": {
|
|
9126
10640
|
"type": "string",
|
|
@@ -9178,9 +10692,27 @@
|
|
|
9178
10692
|
]
|
|
9179
10693
|
},
|
|
9180
10694
|
"title": {
|
|
9181
|
-
"
|
|
9182
|
-
|
|
9183
|
-
|
|
10695
|
+
"oneOf": [
|
|
10696
|
+
{
|
|
10697
|
+
"type": "object",
|
|
10698
|
+
"additionalProperties": false,
|
|
10699
|
+
"properties": {
|
|
10700
|
+
"i18n": {
|
|
10701
|
+
"type": "string",
|
|
10702
|
+
"minLength": 1,
|
|
10703
|
+
"maxLength": 300
|
|
10704
|
+
}
|
|
10705
|
+
},
|
|
10706
|
+
"required": [
|
|
10707
|
+
"i18n"
|
|
10708
|
+
]
|
|
10709
|
+
},
|
|
10710
|
+
{
|
|
10711
|
+
"type": "string",
|
|
10712
|
+
"minLength": 1,
|
|
10713
|
+
"maxLength": 255
|
|
10714
|
+
}
|
|
10715
|
+
]
|
|
9184
10716
|
},
|
|
9185
10717
|
"icon": {
|
|
9186
10718
|
"type": "string",
|
|
@@ -9275,9 +10807,50 @@
|
|
|
9275
10807
|
],
|
|
9276
10808
|
"properties": {
|
|
9277
10809
|
"title": {
|
|
9278
|
-
"
|
|
9279
|
-
|
|
9280
|
-
|
|
10810
|
+
"oneOf": [
|
|
10811
|
+
{
|
|
10812
|
+
"type": "object",
|
|
10813
|
+
"additionalProperties": false,
|
|
10814
|
+
"properties": {
|
|
10815
|
+
"i18n": {
|
|
10816
|
+
"type": "string",
|
|
10817
|
+
"minLength": 1,
|
|
10818
|
+
"maxLength": 300
|
|
10819
|
+
}
|
|
10820
|
+
},
|
|
10821
|
+
"required": [
|
|
10822
|
+
"i18n"
|
|
10823
|
+
]
|
|
10824
|
+
},
|
|
10825
|
+
{
|
|
10826
|
+
"type": "string",
|
|
10827
|
+
"minLength": 1,
|
|
10828
|
+
"maxLength": 255
|
|
10829
|
+
}
|
|
10830
|
+
]
|
|
10831
|
+
},
|
|
10832
|
+
"description": {
|
|
10833
|
+
"oneOf": [
|
|
10834
|
+
{
|
|
10835
|
+
"type": "object",
|
|
10836
|
+
"additionalProperties": false,
|
|
10837
|
+
"properties": {
|
|
10838
|
+
"i18n": {
|
|
10839
|
+
"type": "string",
|
|
10840
|
+
"minLength": 1,
|
|
10841
|
+
"maxLength": 300
|
|
10842
|
+
}
|
|
10843
|
+
},
|
|
10844
|
+
"required": [
|
|
10845
|
+
"i18n"
|
|
10846
|
+
]
|
|
10847
|
+
},
|
|
10848
|
+
{
|
|
10849
|
+
"type": "string",
|
|
10850
|
+
"minLength": 1,
|
|
10851
|
+
"maxLength": 1000
|
|
10852
|
+
}
|
|
10853
|
+
]
|
|
9281
10854
|
},
|
|
9282
10855
|
"icon": {
|
|
9283
10856
|
"type": "string",
|
|
@@ -9386,9 +10959,50 @@
|
|
|
9386
10959
|
],
|
|
9387
10960
|
"properties": {
|
|
9388
10961
|
"title": {
|
|
9389
|
-
"
|
|
9390
|
-
|
|
9391
|
-
|
|
10962
|
+
"oneOf": [
|
|
10963
|
+
{
|
|
10964
|
+
"type": "object",
|
|
10965
|
+
"additionalProperties": false,
|
|
10966
|
+
"properties": {
|
|
10967
|
+
"i18n": {
|
|
10968
|
+
"type": "string",
|
|
10969
|
+
"minLength": 1,
|
|
10970
|
+
"maxLength": 300
|
|
10971
|
+
}
|
|
10972
|
+
},
|
|
10973
|
+
"required": [
|
|
10974
|
+
"i18n"
|
|
10975
|
+
]
|
|
10976
|
+
},
|
|
10977
|
+
{
|
|
10978
|
+
"type": "string",
|
|
10979
|
+
"minLength": 1,
|
|
10980
|
+
"maxLength": 255
|
|
10981
|
+
}
|
|
10982
|
+
]
|
|
10983
|
+
},
|
|
10984
|
+
"description": {
|
|
10985
|
+
"oneOf": [
|
|
10986
|
+
{
|
|
10987
|
+
"type": "object",
|
|
10988
|
+
"additionalProperties": false,
|
|
10989
|
+
"properties": {
|
|
10990
|
+
"i18n": {
|
|
10991
|
+
"type": "string",
|
|
10992
|
+
"minLength": 1,
|
|
10993
|
+
"maxLength": 300
|
|
10994
|
+
}
|
|
10995
|
+
},
|
|
10996
|
+
"required": [
|
|
10997
|
+
"i18n"
|
|
10998
|
+
]
|
|
10999
|
+
},
|
|
11000
|
+
{
|
|
11001
|
+
"type": "string",
|
|
11002
|
+
"minLength": 1,
|
|
11003
|
+
"maxLength": 1000
|
|
11004
|
+
}
|
|
11005
|
+
]
|
|
9392
11006
|
},
|
|
9393
11007
|
"icon": {
|
|
9394
11008
|
"type": "string",
|
|
@@ -9529,49 +11143,6 @@
|
|
|
9529
11143
|
},
|
|
9530
11144
|
"minItems": 1
|
|
9531
11145
|
},
|
|
9532
|
-
"jiraServiceManagement:assetsSchemaPage": {
|
|
9533
|
-
"type": "array",
|
|
9534
|
-
"items": {
|
|
9535
|
-
"oneOf": [
|
|
9536
|
-
{
|
|
9537
|
-
"type": "object",
|
|
9538
|
-
"required": [
|
|
9539
|
-
"title",
|
|
9540
|
-
"icon",
|
|
9541
|
-
"function",
|
|
9542
|
-
"key"
|
|
9543
|
-
],
|
|
9544
|
-
"properties": {
|
|
9545
|
-
"title": {
|
|
9546
|
-
"type": "string",
|
|
9547
|
-
"minLength": 1,
|
|
9548
|
-
"maxLength": 255
|
|
9549
|
-
},
|
|
9550
|
-
"icon": {
|
|
9551
|
-
"type": "string",
|
|
9552
|
-
"minLength": 1,
|
|
9553
|
-
"maxLength": 255
|
|
9554
|
-
},
|
|
9555
|
-
"function": {
|
|
9556
|
-
"type": "string",
|
|
9557
|
-
"minLength": 1,
|
|
9558
|
-
"maxLength": 255,
|
|
9559
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
9560
|
-
},
|
|
9561
|
-
"key": {
|
|
9562
|
-
"$ref": "#/definitions/ModuleKeySchema"
|
|
9563
|
-
}
|
|
9564
|
-
},
|
|
9565
|
-
"not": {
|
|
9566
|
-
"required": [
|
|
9567
|
-
"unlicensedAccess"
|
|
9568
|
-
]
|
|
9569
|
-
}
|
|
9570
|
-
}
|
|
9571
|
-
]
|
|
9572
|
-
},
|
|
9573
|
-
"minItems": 1
|
|
9574
|
-
},
|
|
9575
11146
|
"bitbucket:repoPullRequestCard": {
|
|
9576
11147
|
"type": "array",
|
|
9577
11148
|
"items": {
|
|
@@ -9580,7 +11151,27 @@
|
|
|
9580
11151
|
"type": "object",
|
|
9581
11152
|
"properties": {
|
|
9582
11153
|
"title": {
|
|
9583
|
-
"
|
|
11154
|
+
"oneOf": [
|
|
11155
|
+
{
|
|
11156
|
+
"type": "object",
|
|
11157
|
+
"additionalProperties": false,
|
|
11158
|
+
"properties": {
|
|
11159
|
+
"i18n": {
|
|
11160
|
+
"type": "string",
|
|
11161
|
+
"minLength": 1,
|
|
11162
|
+
"maxLength": 300
|
|
11163
|
+
}
|
|
11164
|
+
},
|
|
11165
|
+
"required": [
|
|
11166
|
+
"i18n"
|
|
11167
|
+
]
|
|
11168
|
+
},
|
|
11169
|
+
{
|
|
11170
|
+
"type": "string",
|
|
11171
|
+
"minLength": 1,
|
|
11172
|
+
"maxLength": 255
|
|
11173
|
+
}
|
|
11174
|
+
]
|
|
9584
11175
|
},
|
|
9585
11176
|
"icon": {
|
|
9586
11177
|
"type": "string"
|
|
@@ -9616,9 +11207,27 @@
|
|
|
9616
11207
|
"type": "object",
|
|
9617
11208
|
"properties": {
|
|
9618
11209
|
"title": {
|
|
9619
|
-
"
|
|
9620
|
-
|
|
9621
|
-
|
|
11210
|
+
"oneOf": [
|
|
11211
|
+
{
|
|
11212
|
+
"type": "object",
|
|
11213
|
+
"additionalProperties": false,
|
|
11214
|
+
"properties": {
|
|
11215
|
+
"i18n": {
|
|
11216
|
+
"type": "string",
|
|
11217
|
+
"minLength": 1,
|
|
11218
|
+
"maxLength": 300
|
|
11219
|
+
}
|
|
11220
|
+
},
|
|
11221
|
+
"required": [
|
|
11222
|
+
"i18n"
|
|
11223
|
+
]
|
|
11224
|
+
},
|
|
11225
|
+
{
|
|
11226
|
+
"type": "string",
|
|
11227
|
+
"minLength": 1,
|
|
11228
|
+
"maxLength": 255
|
|
11229
|
+
}
|
|
11230
|
+
]
|
|
9622
11231
|
},
|
|
9623
11232
|
"icon": {
|
|
9624
11233
|
"type": "string"
|
|
@@ -9690,7 +11299,27 @@
|
|
|
9690
11299
|
"type": "object",
|
|
9691
11300
|
"properties": {
|
|
9692
11301
|
"title": {
|
|
9693
|
-
"
|
|
11302
|
+
"oneOf": [
|
|
11303
|
+
{
|
|
11304
|
+
"type": "object",
|
|
11305
|
+
"additionalProperties": false,
|
|
11306
|
+
"properties": {
|
|
11307
|
+
"i18n": {
|
|
11308
|
+
"type": "string",
|
|
11309
|
+
"minLength": 1,
|
|
11310
|
+
"maxLength": 300
|
|
11311
|
+
}
|
|
11312
|
+
},
|
|
11313
|
+
"required": [
|
|
11314
|
+
"i18n"
|
|
11315
|
+
]
|
|
11316
|
+
},
|
|
11317
|
+
{
|
|
11318
|
+
"type": "string",
|
|
11319
|
+
"minLength": 1,
|
|
11320
|
+
"maxLength": 255
|
|
11321
|
+
}
|
|
11322
|
+
]
|
|
9694
11323
|
},
|
|
9695
11324
|
"resource": {
|
|
9696
11325
|
"type": "string",
|
|
@@ -9723,9 +11352,27 @@
|
|
|
9723
11352
|
"type": "object",
|
|
9724
11353
|
"properties": {
|
|
9725
11354
|
"title": {
|
|
9726
|
-
"
|
|
9727
|
-
|
|
9728
|
-
|
|
11355
|
+
"oneOf": [
|
|
11356
|
+
{
|
|
11357
|
+
"type": "object",
|
|
11358
|
+
"additionalProperties": false,
|
|
11359
|
+
"properties": {
|
|
11360
|
+
"i18n": {
|
|
11361
|
+
"type": "string",
|
|
11362
|
+
"minLength": 1,
|
|
11363
|
+
"maxLength": 300
|
|
11364
|
+
}
|
|
11365
|
+
},
|
|
11366
|
+
"required": [
|
|
11367
|
+
"i18n"
|
|
11368
|
+
]
|
|
11369
|
+
},
|
|
11370
|
+
{
|
|
11371
|
+
"type": "string",
|
|
11372
|
+
"minLength": 1,
|
|
11373
|
+
"maxLength": 255
|
|
11374
|
+
}
|
|
11375
|
+
]
|
|
9729
11376
|
},
|
|
9730
11377
|
"resolver": {
|
|
9731
11378
|
"oneOf": [
|
|
@@ -9794,7 +11441,27 @@
|
|
|
9794
11441
|
"type": "object",
|
|
9795
11442
|
"properties": {
|
|
9796
11443
|
"title": {
|
|
9797
|
-
"
|
|
11444
|
+
"oneOf": [
|
|
11445
|
+
{
|
|
11446
|
+
"type": "object",
|
|
11447
|
+
"additionalProperties": false,
|
|
11448
|
+
"properties": {
|
|
11449
|
+
"i18n": {
|
|
11450
|
+
"type": "string",
|
|
11451
|
+
"minLength": 1,
|
|
11452
|
+
"maxLength": 300
|
|
11453
|
+
}
|
|
11454
|
+
},
|
|
11455
|
+
"required": [
|
|
11456
|
+
"i18n"
|
|
11457
|
+
]
|
|
11458
|
+
},
|
|
11459
|
+
{
|
|
11460
|
+
"type": "string",
|
|
11461
|
+
"minLength": 1,
|
|
11462
|
+
"maxLength": 255
|
|
11463
|
+
}
|
|
11464
|
+
]
|
|
9798
11465
|
},
|
|
9799
11466
|
"icon": {
|
|
9800
11467
|
"type": "string"
|
|
@@ -9830,9 +11497,27 @@
|
|
|
9830
11497
|
"type": "object",
|
|
9831
11498
|
"properties": {
|
|
9832
11499
|
"title": {
|
|
9833
|
-
"
|
|
9834
|
-
|
|
9835
|
-
|
|
11500
|
+
"oneOf": [
|
|
11501
|
+
{
|
|
11502
|
+
"type": "object",
|
|
11503
|
+
"additionalProperties": false,
|
|
11504
|
+
"properties": {
|
|
11505
|
+
"i18n": {
|
|
11506
|
+
"type": "string",
|
|
11507
|
+
"minLength": 1,
|
|
11508
|
+
"maxLength": 300
|
|
11509
|
+
}
|
|
11510
|
+
},
|
|
11511
|
+
"required": [
|
|
11512
|
+
"i18n"
|
|
11513
|
+
]
|
|
11514
|
+
},
|
|
11515
|
+
{
|
|
11516
|
+
"type": "string",
|
|
11517
|
+
"minLength": 1,
|
|
11518
|
+
"maxLength": 255
|
|
11519
|
+
}
|
|
11520
|
+
]
|
|
9836
11521
|
},
|
|
9837
11522
|
"icon": {
|
|
9838
11523
|
"type": "string"
|
|
@@ -9904,7 +11589,27 @@
|
|
|
9904
11589
|
"type": "object",
|
|
9905
11590
|
"properties": {
|
|
9906
11591
|
"title": {
|
|
9907
|
-
"
|
|
11592
|
+
"oneOf": [
|
|
11593
|
+
{
|
|
11594
|
+
"type": "object",
|
|
11595
|
+
"additionalProperties": false,
|
|
11596
|
+
"properties": {
|
|
11597
|
+
"i18n": {
|
|
11598
|
+
"type": "string",
|
|
11599
|
+
"minLength": 1,
|
|
11600
|
+
"maxLength": 300
|
|
11601
|
+
}
|
|
11602
|
+
},
|
|
11603
|
+
"required": [
|
|
11604
|
+
"i18n"
|
|
11605
|
+
]
|
|
11606
|
+
},
|
|
11607
|
+
{
|
|
11608
|
+
"type": "string",
|
|
11609
|
+
"minLength": 1,
|
|
11610
|
+
"maxLength": 255
|
|
11611
|
+
}
|
|
11612
|
+
]
|
|
9908
11613
|
},
|
|
9909
11614
|
"resource": {
|
|
9910
11615
|
"type": "string",
|
|
@@ -9937,9 +11642,27 @@
|
|
|
9937
11642
|
"type": "object",
|
|
9938
11643
|
"properties": {
|
|
9939
11644
|
"title": {
|
|
9940
|
-
"
|
|
9941
|
-
|
|
9942
|
-
|
|
11645
|
+
"oneOf": [
|
|
11646
|
+
{
|
|
11647
|
+
"type": "object",
|
|
11648
|
+
"additionalProperties": false,
|
|
11649
|
+
"properties": {
|
|
11650
|
+
"i18n": {
|
|
11651
|
+
"type": "string",
|
|
11652
|
+
"minLength": 1,
|
|
11653
|
+
"maxLength": 300
|
|
11654
|
+
}
|
|
11655
|
+
},
|
|
11656
|
+
"required": [
|
|
11657
|
+
"i18n"
|
|
11658
|
+
]
|
|
11659
|
+
},
|
|
11660
|
+
{
|
|
11661
|
+
"type": "string",
|
|
11662
|
+
"minLength": 1,
|
|
11663
|
+
"maxLength": 255
|
|
11664
|
+
}
|
|
11665
|
+
]
|
|
9943
11666
|
},
|
|
9944
11667
|
"resolver": {
|
|
9945
11668
|
"oneOf": [
|
|
@@ -10008,7 +11731,27 @@
|
|
|
10008
11731
|
"type": "object",
|
|
10009
11732
|
"properties": {
|
|
10010
11733
|
"title": {
|
|
10011
|
-
"
|
|
11734
|
+
"oneOf": [
|
|
11735
|
+
{
|
|
11736
|
+
"type": "object",
|
|
11737
|
+
"additionalProperties": false,
|
|
11738
|
+
"properties": {
|
|
11739
|
+
"i18n": {
|
|
11740
|
+
"type": "string",
|
|
11741
|
+
"minLength": 1,
|
|
11742
|
+
"maxLength": 300
|
|
11743
|
+
}
|
|
11744
|
+
},
|
|
11745
|
+
"required": [
|
|
11746
|
+
"i18n"
|
|
11747
|
+
]
|
|
11748
|
+
},
|
|
11749
|
+
{
|
|
11750
|
+
"type": "string",
|
|
11751
|
+
"minLength": 1,
|
|
11752
|
+
"maxLength": 255
|
|
11753
|
+
}
|
|
11754
|
+
]
|
|
10012
11755
|
},
|
|
10013
11756
|
"icon": {
|
|
10014
11757
|
"type": "string"
|
|
@@ -10044,9 +11787,27 @@
|
|
|
10044
11787
|
"type": "object",
|
|
10045
11788
|
"properties": {
|
|
10046
11789
|
"title": {
|
|
10047
|
-
"
|
|
10048
|
-
|
|
10049
|
-
|
|
11790
|
+
"oneOf": [
|
|
11791
|
+
{
|
|
11792
|
+
"type": "object",
|
|
11793
|
+
"additionalProperties": false,
|
|
11794
|
+
"properties": {
|
|
11795
|
+
"i18n": {
|
|
11796
|
+
"type": "string",
|
|
11797
|
+
"minLength": 1,
|
|
11798
|
+
"maxLength": 300
|
|
11799
|
+
}
|
|
11800
|
+
},
|
|
11801
|
+
"required": [
|
|
11802
|
+
"i18n"
|
|
11803
|
+
]
|
|
11804
|
+
},
|
|
11805
|
+
{
|
|
11806
|
+
"type": "string",
|
|
11807
|
+
"minLength": 1,
|
|
11808
|
+
"maxLength": 255
|
|
11809
|
+
}
|
|
11810
|
+
]
|
|
10050
11811
|
},
|
|
10051
11812
|
"icon": {
|
|
10052
11813
|
"type": "string"
|
|
@@ -10118,7 +11879,27 @@
|
|
|
10118
11879
|
"type": "object",
|
|
10119
11880
|
"properties": {
|
|
10120
11881
|
"title": {
|
|
10121
|
-
"
|
|
11882
|
+
"oneOf": [
|
|
11883
|
+
{
|
|
11884
|
+
"type": "object",
|
|
11885
|
+
"additionalProperties": false,
|
|
11886
|
+
"properties": {
|
|
11887
|
+
"i18n": {
|
|
11888
|
+
"type": "string",
|
|
11889
|
+
"minLength": 1,
|
|
11890
|
+
"maxLength": 300
|
|
11891
|
+
}
|
|
11892
|
+
},
|
|
11893
|
+
"required": [
|
|
11894
|
+
"i18n"
|
|
11895
|
+
]
|
|
11896
|
+
},
|
|
11897
|
+
{
|
|
11898
|
+
"type": "string",
|
|
11899
|
+
"minLength": 1,
|
|
11900
|
+
"maxLength": 255
|
|
11901
|
+
}
|
|
11902
|
+
]
|
|
10122
11903
|
},
|
|
10123
11904
|
"resource": {
|
|
10124
11905
|
"type": "string",
|
|
@@ -10151,9 +11932,27 @@
|
|
|
10151
11932
|
"type": "object",
|
|
10152
11933
|
"properties": {
|
|
10153
11934
|
"title": {
|
|
10154
|
-
"
|
|
10155
|
-
|
|
10156
|
-
|
|
11935
|
+
"oneOf": [
|
|
11936
|
+
{
|
|
11937
|
+
"type": "object",
|
|
11938
|
+
"additionalProperties": false,
|
|
11939
|
+
"properties": {
|
|
11940
|
+
"i18n": {
|
|
11941
|
+
"type": "string",
|
|
11942
|
+
"minLength": 1,
|
|
11943
|
+
"maxLength": 300
|
|
11944
|
+
}
|
|
11945
|
+
},
|
|
11946
|
+
"required": [
|
|
11947
|
+
"i18n"
|
|
11948
|
+
]
|
|
11949
|
+
},
|
|
11950
|
+
{
|
|
11951
|
+
"type": "string",
|
|
11952
|
+
"minLength": 1,
|
|
11953
|
+
"maxLength": 255
|
|
11954
|
+
}
|
|
11955
|
+
]
|
|
10157
11956
|
},
|
|
10158
11957
|
"resolver": {
|
|
10159
11958
|
"oneOf": [
|
|
@@ -10222,7 +12021,27 @@
|
|
|
10222
12021
|
"type": "object",
|
|
10223
12022
|
"properties": {
|
|
10224
12023
|
"title": {
|
|
10225
|
-
"
|
|
12024
|
+
"oneOf": [
|
|
12025
|
+
{
|
|
12026
|
+
"type": "object",
|
|
12027
|
+
"additionalProperties": false,
|
|
12028
|
+
"properties": {
|
|
12029
|
+
"i18n": {
|
|
12030
|
+
"type": "string",
|
|
12031
|
+
"minLength": 1,
|
|
12032
|
+
"maxLength": 300
|
|
12033
|
+
}
|
|
12034
|
+
},
|
|
12035
|
+
"required": [
|
|
12036
|
+
"i18n"
|
|
12037
|
+
]
|
|
12038
|
+
},
|
|
12039
|
+
{
|
|
12040
|
+
"type": "string",
|
|
12041
|
+
"minLength": 1,
|
|
12042
|
+
"maxLength": 255
|
|
12043
|
+
}
|
|
12044
|
+
]
|
|
10226
12045
|
},
|
|
10227
12046
|
"resource": {
|
|
10228
12047
|
"type": "string",
|
|
@@ -10255,9 +12074,27 @@
|
|
|
10255
12074
|
"type": "object",
|
|
10256
12075
|
"properties": {
|
|
10257
12076
|
"title": {
|
|
10258
|
-
"
|
|
10259
|
-
|
|
10260
|
-
|
|
12077
|
+
"oneOf": [
|
|
12078
|
+
{
|
|
12079
|
+
"type": "object",
|
|
12080
|
+
"additionalProperties": false,
|
|
12081
|
+
"properties": {
|
|
12082
|
+
"i18n": {
|
|
12083
|
+
"type": "string",
|
|
12084
|
+
"minLength": 1,
|
|
12085
|
+
"maxLength": 300
|
|
12086
|
+
}
|
|
12087
|
+
},
|
|
12088
|
+
"required": [
|
|
12089
|
+
"i18n"
|
|
12090
|
+
]
|
|
12091
|
+
},
|
|
12092
|
+
{
|
|
12093
|
+
"type": "string",
|
|
12094
|
+
"minLength": 1,
|
|
12095
|
+
"maxLength": 255
|
|
12096
|
+
}
|
|
12097
|
+
]
|
|
10261
12098
|
},
|
|
10262
12099
|
"resolver": {
|
|
10263
12100
|
"oneOf": [
|