5etools-utils 0.16.20 → 0.16.24
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/lib/TestJson.js +3 -1
- package/package.json +1 -1
- package/schema/brew/actions.json +4 -2
- package/schema/brew/items.json +37 -13
- package/schema/brew/vehicles.json +7 -4
- package/schema/brew-fast/actions.json +4 -2
- package/schema/brew-fast/items.json +37 -13
- package/schema/brew-fast/vehicles.json +7 -4
- package/schema/site/actions.json +4 -2
- package/schema/site/items.json +37 -13
- package/schema/site/vehicles.json +7 -4
- package/schema/site-fast/actions.json +4 -2
- package/schema/site-fast/items.json +37 -13
- package/schema/site-fast/vehicles.json +7 -4
- package/schema/ua/actions.json +4 -2
- package/schema/ua/items.json +37 -13
- package/schema/ua/vehicles.json +7 -4
- package/schema/ua-fast/actions.json +4 -2
- package/schema/ua-fast/items.json +37 -13
- package/schema/ua-fast/vehicles.json +7 -4
package/lib/TestJson.js
CHANGED
|
@@ -63,7 +63,9 @@ class JsonTester {
|
|
|
63
63
|
_getErrors ({filePath, data}) {
|
|
64
64
|
const out = {errors: [], errorsFull: []};
|
|
65
65
|
|
|
66
|
-
if (!process.env.CI
|
|
66
|
+
if (!process.env.CI || process.env.VET_CI_IS_VERBOSE_ERRORS_JSON) {
|
|
67
|
+
out.errorsFull.push(this._getFileErrors({filePath}));
|
|
68
|
+
}
|
|
67
69
|
|
|
68
70
|
// Sort the deepest errors to the bottom, as these are the ones we're most likely to be the ones we care about
|
|
69
71
|
// manually checking.
|
package/package.json
CHANGED
package/schema/brew/actions.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
},
|
|
72
74
|
"foundrySystem": {
|
|
73
75
|
"$ref": "util-foundry.json#/$defs/foundrySystemObject"
|
package/schema/brew/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -955,7 +959,9 @@
|
|
|
955
959
|
"type": "string",
|
|
956
960
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
957
961
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
958
|
-
}
|
|
962
|
+
},
|
|
963
|
+
"minItems": 1,
|
|
964
|
+
"uniqueItems": true
|
|
959
965
|
},
|
|
960
966
|
"seeAlsoVehicle": {
|
|
961
967
|
"type": "array",
|
|
@@ -963,7 +969,9 @@
|
|
|
963
969
|
"type": "string",
|
|
964
970
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
965
971
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
966
|
-
}
|
|
972
|
+
},
|
|
973
|
+
"minItems": 1,
|
|
974
|
+
"uniqueItems": true
|
|
967
975
|
},
|
|
968
976
|
"reqAttuneTags": {
|
|
969
977
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1497,7 +1505,9 @@
|
|
|
1497
1505
|
"type": "string",
|
|
1498
1506
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1499
1507
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1500
|
-
}
|
|
1508
|
+
},
|
|
1509
|
+
"minItems": 1,
|
|
1510
|
+
"uniqueItems": true
|
|
1501
1511
|
},
|
|
1502
1512
|
"seeAlsoVehicle": {
|
|
1503
1513
|
"type": "array",
|
|
@@ -1505,7 +1515,9 @@
|
|
|
1505
1515
|
"type": "string",
|
|
1506
1516
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1507
1517
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1508
|
-
}
|
|
1518
|
+
},
|
|
1519
|
+
"minItems": 1,
|
|
1520
|
+
"uniqueItems": true
|
|
1509
1521
|
},
|
|
1510
1522
|
"reqAttuneTags": {
|
|
1511
1523
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2037,7 +2049,9 @@
|
|
|
2037
2049
|
"type": "string",
|
|
2038
2050
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2039
2051
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2040
|
-
}
|
|
2052
|
+
},
|
|
2053
|
+
"minItems": 1,
|
|
2054
|
+
"uniqueItems": true
|
|
2041
2055
|
},
|
|
2042
2056
|
"seeAlsoVehicle": {
|
|
2043
2057
|
"type": "array",
|
|
@@ -2045,7 +2059,9 @@
|
|
|
2045
2059
|
"type": "string",
|
|
2046
2060
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2047
2061
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2048
|
-
}
|
|
2062
|
+
},
|
|
2063
|
+
"minItems": 1,
|
|
2064
|
+
"uniqueItems": true
|
|
2049
2065
|
},
|
|
2050
2066
|
"reqAttuneTags": {
|
|
2051
2067
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2584,7 +2600,9 @@
|
|
|
2584
2600
|
"type": "string",
|
|
2585
2601
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2586
2602
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2587
|
-
}
|
|
2603
|
+
},
|
|
2604
|
+
"minItems": 1,
|
|
2605
|
+
"uniqueItems": true
|
|
2588
2606
|
},
|
|
2589
2607
|
"seeAlsoVehicle": {
|
|
2590
2608
|
"type": "array",
|
|
@@ -2592,7 +2610,9 @@
|
|
|
2592
2610
|
"type": "string",
|
|
2593
2611
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2594
2612
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2595
|
-
}
|
|
2613
|
+
},
|
|
2614
|
+
"minItems": 1,
|
|
2615
|
+
"uniqueItems": true
|
|
2596
2616
|
},
|
|
2597
2617
|
"reqAttuneTags": {
|
|
2598
2618
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -3128,7 +3148,9 @@
|
|
|
3128
3148
|
"type": "string",
|
|
3129
3149
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
3130
3150
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
3131
|
-
}
|
|
3151
|
+
},
|
|
3152
|
+
"minItems": 1,
|
|
3153
|
+
"uniqueItems": true
|
|
3132
3154
|
},
|
|
3133
3155
|
"seeAlsoVehicle": {
|
|
3134
3156
|
"type": "array",
|
|
@@ -3136,7 +3158,9 @@
|
|
|
3136
3158
|
"type": "string",
|
|
3137
3159
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
3138
3160
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
3139
|
-
}
|
|
3161
|
+
},
|
|
3162
|
+
"minItems": 1,
|
|
3163
|
+
"uniqueItems": true
|
|
3140
3164
|
},
|
|
3141
3165
|
"reqAttuneTags": {
|
|
3142
3166
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
},
|
|
72
74
|
"foundrySystem": {
|
|
73
75
|
"$ref": "util-foundry.json#/$defs/foundrySystemObject"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -955,7 +959,9 @@
|
|
|
955
959
|
"type": "string",
|
|
956
960
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
957
961
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
958
|
-
}
|
|
962
|
+
},
|
|
963
|
+
"minItems": 1,
|
|
964
|
+
"uniqueItems": true
|
|
959
965
|
},
|
|
960
966
|
"seeAlsoVehicle": {
|
|
961
967
|
"type": "array",
|
|
@@ -963,7 +969,9 @@
|
|
|
963
969
|
"type": "string",
|
|
964
970
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
965
971
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
966
|
-
}
|
|
972
|
+
},
|
|
973
|
+
"minItems": 1,
|
|
974
|
+
"uniqueItems": true
|
|
967
975
|
},
|
|
968
976
|
"reqAttuneTags": {
|
|
969
977
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1497,7 +1505,9 @@
|
|
|
1497
1505
|
"type": "string",
|
|
1498
1506
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1499
1507
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1500
|
-
}
|
|
1508
|
+
},
|
|
1509
|
+
"minItems": 1,
|
|
1510
|
+
"uniqueItems": true
|
|
1501
1511
|
},
|
|
1502
1512
|
"seeAlsoVehicle": {
|
|
1503
1513
|
"type": "array",
|
|
@@ -1505,7 +1515,9 @@
|
|
|
1505
1515
|
"type": "string",
|
|
1506
1516
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1507
1517
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1508
|
-
}
|
|
1518
|
+
},
|
|
1519
|
+
"minItems": 1,
|
|
1520
|
+
"uniqueItems": true
|
|
1509
1521
|
},
|
|
1510
1522
|
"reqAttuneTags": {
|
|
1511
1523
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2037,7 +2049,9 @@
|
|
|
2037
2049
|
"type": "string",
|
|
2038
2050
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2039
2051
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2040
|
-
}
|
|
2052
|
+
},
|
|
2053
|
+
"minItems": 1,
|
|
2054
|
+
"uniqueItems": true
|
|
2041
2055
|
},
|
|
2042
2056
|
"seeAlsoVehicle": {
|
|
2043
2057
|
"type": "array",
|
|
@@ -2045,7 +2059,9 @@
|
|
|
2045
2059
|
"type": "string",
|
|
2046
2060
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2047
2061
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2048
|
-
}
|
|
2062
|
+
},
|
|
2063
|
+
"minItems": 1,
|
|
2064
|
+
"uniqueItems": true
|
|
2049
2065
|
},
|
|
2050
2066
|
"reqAttuneTags": {
|
|
2051
2067
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2584,7 +2600,9 @@
|
|
|
2584
2600
|
"type": "string",
|
|
2585
2601
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2586
2602
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2587
|
-
}
|
|
2603
|
+
},
|
|
2604
|
+
"minItems": 1,
|
|
2605
|
+
"uniqueItems": true
|
|
2588
2606
|
},
|
|
2589
2607
|
"seeAlsoVehicle": {
|
|
2590
2608
|
"type": "array",
|
|
@@ -2592,7 +2610,9 @@
|
|
|
2592
2610
|
"type": "string",
|
|
2593
2611
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2594
2612
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2595
|
-
}
|
|
2613
|
+
},
|
|
2614
|
+
"minItems": 1,
|
|
2615
|
+
"uniqueItems": true
|
|
2596
2616
|
},
|
|
2597
2617
|
"reqAttuneTags": {
|
|
2598
2618
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -3128,7 +3148,9 @@
|
|
|
3128
3148
|
"type": "string",
|
|
3129
3149
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
3130
3150
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
3131
|
-
}
|
|
3151
|
+
},
|
|
3152
|
+
"minItems": 1,
|
|
3153
|
+
"uniqueItems": true
|
|
3132
3154
|
},
|
|
3133
3155
|
"seeAlsoVehicle": {
|
|
3134
3156
|
"type": "array",
|
|
@@ -3136,7 +3158,9 @@
|
|
|
3136
3158
|
"type": "string",
|
|
3137
3159
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
3138
3160
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
3139
|
-
}
|
|
3161
|
+
},
|
|
3162
|
+
"minItems": 1,
|
|
3163
|
+
"uniqueItems": true
|
|
3140
3164
|
},
|
|
3141
3165
|
"reqAttuneTags": {
|
|
3142
3166
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|
package/schema/site/actions.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
},
|
|
72
74
|
"srd": {
|
|
73
75
|
"$ref": "util.json#/$defs/srd"
|
package/schema/site/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -911,7 +915,9 @@
|
|
|
911
915
|
"type": "string",
|
|
912
916
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
913
917
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
914
|
-
}
|
|
918
|
+
},
|
|
919
|
+
"minItems": 1,
|
|
920
|
+
"uniqueItems": true
|
|
915
921
|
},
|
|
916
922
|
"seeAlsoVehicle": {
|
|
917
923
|
"type": "array",
|
|
@@ -919,7 +925,9 @@
|
|
|
919
925
|
"type": "string",
|
|
920
926
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
921
927
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
922
|
-
}
|
|
928
|
+
},
|
|
929
|
+
"minItems": 1,
|
|
930
|
+
"uniqueItems": true
|
|
923
931
|
},
|
|
924
932
|
"reqAttuneTags": {
|
|
925
933
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1409,7 +1417,9 @@
|
|
|
1409
1417
|
"type": "string",
|
|
1410
1418
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1411
1419
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1412
|
-
}
|
|
1420
|
+
},
|
|
1421
|
+
"minItems": 1,
|
|
1422
|
+
"uniqueItems": true
|
|
1413
1423
|
},
|
|
1414
1424
|
"seeAlsoVehicle": {
|
|
1415
1425
|
"type": "array",
|
|
@@ -1417,7 +1427,9 @@
|
|
|
1417
1427
|
"type": "string",
|
|
1418
1428
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1419
1429
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1420
|
-
}
|
|
1430
|
+
},
|
|
1431
|
+
"minItems": 1,
|
|
1432
|
+
"uniqueItems": true
|
|
1421
1433
|
},
|
|
1422
1434
|
"reqAttuneTags": {
|
|
1423
1435
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1905,7 +1917,9 @@
|
|
|
1905
1917
|
"type": "string",
|
|
1906
1918
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1907
1919
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1908
|
-
}
|
|
1920
|
+
},
|
|
1921
|
+
"minItems": 1,
|
|
1922
|
+
"uniqueItems": true
|
|
1909
1923
|
},
|
|
1910
1924
|
"seeAlsoVehicle": {
|
|
1911
1925
|
"type": "array",
|
|
@@ -1913,7 +1927,9 @@
|
|
|
1913
1927
|
"type": "string",
|
|
1914
1928
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1915
1929
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1916
|
-
}
|
|
1930
|
+
},
|
|
1931
|
+
"minItems": 1,
|
|
1932
|
+
"uniqueItems": true
|
|
1917
1933
|
},
|
|
1918
1934
|
"reqAttuneTags": {
|
|
1919
1935
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2414,7 +2430,9 @@
|
|
|
2414
2430
|
"type": "string",
|
|
2415
2431
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2416
2432
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2417
|
-
}
|
|
2433
|
+
},
|
|
2434
|
+
"minItems": 1,
|
|
2435
|
+
"uniqueItems": true
|
|
2418
2436
|
},
|
|
2419
2437
|
"seeAlsoVehicle": {
|
|
2420
2438
|
"type": "array",
|
|
@@ -2422,7 +2440,9 @@
|
|
|
2422
2440
|
"type": "string",
|
|
2423
2441
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2424
2442
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2425
|
-
}
|
|
2443
|
+
},
|
|
2444
|
+
"minItems": 1,
|
|
2445
|
+
"uniqueItems": true
|
|
2426
2446
|
},
|
|
2427
2447
|
"reqAttuneTags": {
|
|
2428
2448
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2914,7 +2934,9 @@
|
|
|
2914
2934
|
"type": "string",
|
|
2915
2935
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2916
2936
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2917
|
-
}
|
|
2937
|
+
},
|
|
2938
|
+
"minItems": 1,
|
|
2939
|
+
"uniqueItems": true
|
|
2918
2940
|
},
|
|
2919
2941
|
"seeAlsoVehicle": {
|
|
2920
2942
|
"type": "array",
|
|
@@ -2922,7 +2944,9 @@
|
|
|
2922
2944
|
"type": "string",
|
|
2923
2945
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2924
2946
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2925
|
-
}
|
|
2947
|
+
},
|
|
2948
|
+
"minItems": 1,
|
|
2949
|
+
"uniqueItems": true
|
|
2926
2950
|
},
|
|
2927
2951
|
"reqAttuneTags": {
|
|
2928
2952
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
},
|
|
72
74
|
"srd": {
|
|
73
75
|
"$ref": "util.json#/$defs/srd"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -911,7 +915,9 @@
|
|
|
911
915
|
"type": "string",
|
|
912
916
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
913
917
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
914
|
-
}
|
|
918
|
+
},
|
|
919
|
+
"minItems": 1,
|
|
920
|
+
"uniqueItems": true
|
|
915
921
|
},
|
|
916
922
|
"seeAlsoVehicle": {
|
|
917
923
|
"type": "array",
|
|
@@ -919,7 +925,9 @@
|
|
|
919
925
|
"type": "string",
|
|
920
926
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
921
927
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
922
|
-
}
|
|
928
|
+
},
|
|
929
|
+
"minItems": 1,
|
|
930
|
+
"uniqueItems": true
|
|
923
931
|
},
|
|
924
932
|
"reqAttuneTags": {
|
|
925
933
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1409,7 +1417,9 @@
|
|
|
1409
1417
|
"type": "string",
|
|
1410
1418
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1411
1419
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1412
|
-
}
|
|
1420
|
+
},
|
|
1421
|
+
"minItems": 1,
|
|
1422
|
+
"uniqueItems": true
|
|
1413
1423
|
},
|
|
1414
1424
|
"seeAlsoVehicle": {
|
|
1415
1425
|
"type": "array",
|
|
@@ -1417,7 +1427,9 @@
|
|
|
1417
1427
|
"type": "string",
|
|
1418
1428
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1419
1429
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1420
|
-
}
|
|
1430
|
+
},
|
|
1431
|
+
"minItems": 1,
|
|
1432
|
+
"uniqueItems": true
|
|
1421
1433
|
},
|
|
1422
1434
|
"reqAttuneTags": {
|
|
1423
1435
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1905,7 +1917,9 @@
|
|
|
1905
1917
|
"type": "string",
|
|
1906
1918
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1907
1919
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1908
|
-
}
|
|
1920
|
+
},
|
|
1921
|
+
"minItems": 1,
|
|
1922
|
+
"uniqueItems": true
|
|
1909
1923
|
},
|
|
1910
1924
|
"seeAlsoVehicle": {
|
|
1911
1925
|
"type": "array",
|
|
@@ -1913,7 +1927,9 @@
|
|
|
1913
1927
|
"type": "string",
|
|
1914
1928
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1915
1929
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1916
|
-
}
|
|
1930
|
+
},
|
|
1931
|
+
"minItems": 1,
|
|
1932
|
+
"uniqueItems": true
|
|
1917
1933
|
},
|
|
1918
1934
|
"reqAttuneTags": {
|
|
1919
1935
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2414,7 +2430,9 @@
|
|
|
2414
2430
|
"type": "string",
|
|
2415
2431
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2416
2432
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2417
|
-
}
|
|
2433
|
+
},
|
|
2434
|
+
"minItems": 1,
|
|
2435
|
+
"uniqueItems": true
|
|
2418
2436
|
},
|
|
2419
2437
|
"seeAlsoVehicle": {
|
|
2420
2438
|
"type": "array",
|
|
@@ -2422,7 +2440,9 @@
|
|
|
2422
2440
|
"type": "string",
|
|
2423
2441
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2424
2442
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2425
|
-
}
|
|
2443
|
+
},
|
|
2444
|
+
"minItems": 1,
|
|
2445
|
+
"uniqueItems": true
|
|
2426
2446
|
},
|
|
2427
2447
|
"reqAttuneTags": {
|
|
2428
2448
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2914,7 +2934,9 @@
|
|
|
2914
2934
|
"type": "string",
|
|
2915
2935
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2916
2936
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2917
|
-
}
|
|
2937
|
+
},
|
|
2938
|
+
"minItems": 1,
|
|
2939
|
+
"uniqueItems": true
|
|
2918
2940
|
},
|
|
2919
2941
|
"seeAlsoVehicle": {
|
|
2920
2942
|
"type": "array",
|
|
@@ -2922,7 +2944,9 @@
|
|
|
2922
2944
|
"type": "string",
|
|
2923
2945
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2924
2946
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2925
|
-
}
|
|
2947
|
+
},
|
|
2948
|
+
"minItems": 1,
|
|
2949
|
+
"uniqueItems": true
|
|
2926
2950
|
},
|
|
2927
2951
|
"reqAttuneTags": {
|
|
2928
2952
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|
package/schema/ua/actions.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
}
|
|
72
74
|
},
|
|
73
75
|
"required": [
|
package/schema/ua/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -902,7 +906,9 @@
|
|
|
902
906
|
"type": "string",
|
|
903
907
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
904
908
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
905
|
-
}
|
|
909
|
+
},
|
|
910
|
+
"minItems": 1,
|
|
911
|
+
"uniqueItems": true
|
|
906
912
|
},
|
|
907
913
|
"seeAlsoVehicle": {
|
|
908
914
|
"type": "array",
|
|
@@ -910,7 +916,9 @@
|
|
|
910
916
|
"type": "string",
|
|
911
917
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
912
918
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
913
|
-
}
|
|
919
|
+
},
|
|
920
|
+
"minItems": 1,
|
|
921
|
+
"uniqueItems": true
|
|
914
922
|
},
|
|
915
923
|
"reqAttuneTags": {
|
|
916
924
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1391,7 +1399,9 @@
|
|
|
1391
1399
|
"type": "string",
|
|
1392
1400
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1393
1401
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1394
|
-
}
|
|
1402
|
+
},
|
|
1403
|
+
"minItems": 1,
|
|
1404
|
+
"uniqueItems": true
|
|
1395
1405
|
},
|
|
1396
1406
|
"seeAlsoVehicle": {
|
|
1397
1407
|
"type": "array",
|
|
@@ -1399,7 +1409,9 @@
|
|
|
1399
1409
|
"type": "string",
|
|
1400
1410
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1401
1411
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1402
|
-
}
|
|
1412
|
+
},
|
|
1413
|
+
"minItems": 1,
|
|
1414
|
+
"uniqueItems": true
|
|
1403
1415
|
},
|
|
1404
1416
|
"reqAttuneTags": {
|
|
1405
1417
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1878,7 +1890,9 @@
|
|
|
1878
1890
|
"type": "string",
|
|
1879
1891
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1880
1892
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1881
|
-
}
|
|
1893
|
+
},
|
|
1894
|
+
"minItems": 1,
|
|
1895
|
+
"uniqueItems": true
|
|
1882
1896
|
},
|
|
1883
1897
|
"seeAlsoVehicle": {
|
|
1884
1898
|
"type": "array",
|
|
@@ -1886,7 +1900,9 @@
|
|
|
1886
1900
|
"type": "string",
|
|
1887
1901
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1888
1902
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1889
|
-
}
|
|
1903
|
+
},
|
|
1904
|
+
"minItems": 1,
|
|
1905
|
+
"uniqueItems": true
|
|
1890
1906
|
},
|
|
1891
1907
|
"reqAttuneTags": {
|
|
1892
1908
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2378,7 +2394,9 @@
|
|
|
2378
2394
|
"type": "string",
|
|
2379
2395
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2380
2396
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2381
|
-
}
|
|
2397
|
+
},
|
|
2398
|
+
"minItems": 1,
|
|
2399
|
+
"uniqueItems": true
|
|
2382
2400
|
},
|
|
2383
2401
|
"seeAlsoVehicle": {
|
|
2384
2402
|
"type": "array",
|
|
@@ -2386,7 +2404,9 @@
|
|
|
2386
2404
|
"type": "string",
|
|
2387
2405
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2388
2406
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2389
|
-
}
|
|
2407
|
+
},
|
|
2408
|
+
"minItems": 1,
|
|
2409
|
+
"uniqueItems": true
|
|
2390
2410
|
},
|
|
2391
2411
|
"reqAttuneTags": {
|
|
2392
2412
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2869,7 +2889,9 @@
|
|
|
2869
2889
|
"type": "string",
|
|
2870
2890
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2871
2891
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2872
|
-
}
|
|
2892
|
+
},
|
|
2893
|
+
"minItems": 1,
|
|
2894
|
+
"uniqueItems": true
|
|
2873
2895
|
},
|
|
2874
2896
|
"seeAlsoVehicle": {
|
|
2875
2897
|
"type": "array",
|
|
@@ -2877,7 +2899,9 @@
|
|
|
2877
2899
|
"type": "string",
|
|
2878
2900
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2879
2901
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2880
|
-
}
|
|
2902
|
+
},
|
|
2903
|
+
"minItems": 1,
|
|
2904
|
+
"uniqueItems": true
|
|
2881
2905
|
},
|
|
2882
2906
|
"reqAttuneTags": {
|
|
2883
2907
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
package/schema/ua/vehicles.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "actions.json",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"action": {
|
|
@@ -67,7 +67,9 @@
|
|
|
67
67
|
"type": "string",
|
|
68
68
|
"description": "UIDs of \"action\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"disarm|dmg\".",
|
|
69
69
|
"markdownDescription": "UIDs of "action"s to be linked in a "See Also" footnote.\n\nEx.: "disarm|dmg"."
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"minItems": 1,
|
|
72
|
+
"uniqueItems": true
|
|
71
73
|
}
|
|
72
74
|
},
|
|
73
75
|
"required": [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -415,7 +415,9 @@
|
|
|
415
415
|
"type": "string",
|
|
416
416
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
417
417
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
418
|
-
}
|
|
418
|
+
},
|
|
419
|
+
"minItems": 1,
|
|
420
|
+
"uniqueItems": true
|
|
419
421
|
},
|
|
420
422
|
"seeAlsoVehicle": {
|
|
421
423
|
"type": "array",
|
|
@@ -423,7 +425,9 @@
|
|
|
423
425
|
"type": "string",
|
|
424
426
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
425
427
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
426
|
-
}
|
|
428
|
+
},
|
|
429
|
+
"minItems": 1,
|
|
430
|
+
"uniqueItems": true
|
|
427
431
|
},
|
|
428
432
|
"reqAttuneTags": {
|
|
429
433
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -902,7 +906,9 @@
|
|
|
902
906
|
"type": "string",
|
|
903
907
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
904
908
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
905
|
-
}
|
|
909
|
+
},
|
|
910
|
+
"minItems": 1,
|
|
911
|
+
"uniqueItems": true
|
|
906
912
|
},
|
|
907
913
|
"seeAlsoVehicle": {
|
|
908
914
|
"type": "array",
|
|
@@ -910,7 +916,9 @@
|
|
|
910
916
|
"type": "string",
|
|
911
917
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
912
918
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
913
|
-
}
|
|
919
|
+
},
|
|
920
|
+
"minItems": 1,
|
|
921
|
+
"uniqueItems": true
|
|
914
922
|
},
|
|
915
923
|
"reqAttuneTags": {
|
|
916
924
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1391,7 +1399,9 @@
|
|
|
1391
1399
|
"type": "string",
|
|
1392
1400
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1393
1401
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1394
|
-
}
|
|
1402
|
+
},
|
|
1403
|
+
"minItems": 1,
|
|
1404
|
+
"uniqueItems": true
|
|
1395
1405
|
},
|
|
1396
1406
|
"seeAlsoVehicle": {
|
|
1397
1407
|
"type": "array",
|
|
@@ -1399,7 +1409,9 @@
|
|
|
1399
1409
|
"type": "string",
|
|
1400
1410
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1401
1411
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1402
|
-
}
|
|
1412
|
+
},
|
|
1413
|
+
"minItems": 1,
|
|
1414
|
+
"uniqueItems": true
|
|
1403
1415
|
},
|
|
1404
1416
|
"reqAttuneTags": {
|
|
1405
1417
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1878,7 +1890,9 @@
|
|
|
1878
1890
|
"type": "string",
|
|
1879
1891
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
1880
1892
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
1881
|
-
}
|
|
1893
|
+
},
|
|
1894
|
+
"minItems": 1,
|
|
1895
|
+
"uniqueItems": true
|
|
1882
1896
|
},
|
|
1883
1897
|
"seeAlsoVehicle": {
|
|
1884
1898
|
"type": "array",
|
|
@@ -1886,7 +1900,9 @@
|
|
|
1886
1900
|
"type": "string",
|
|
1887
1901
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
1888
1902
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
1889
|
-
}
|
|
1903
|
+
},
|
|
1904
|
+
"minItems": 1,
|
|
1905
|
+
"uniqueItems": true
|
|
1890
1906
|
},
|
|
1891
1907
|
"reqAttuneTags": {
|
|
1892
1908
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2378,7 +2394,9 @@
|
|
|
2378
2394
|
"type": "string",
|
|
2379
2395
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2380
2396
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2381
|
-
}
|
|
2397
|
+
},
|
|
2398
|
+
"minItems": 1,
|
|
2399
|
+
"uniqueItems": true
|
|
2382
2400
|
},
|
|
2383
2401
|
"seeAlsoVehicle": {
|
|
2384
2402
|
"type": "array",
|
|
@@ -2386,7 +2404,9 @@
|
|
|
2386
2404
|
"type": "string",
|
|
2387
2405
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2388
2406
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2389
|
-
}
|
|
2407
|
+
},
|
|
2408
|
+
"minItems": 1,
|
|
2409
|
+
"uniqueItems": true
|
|
2390
2410
|
},
|
|
2391
2411
|
"reqAttuneTags": {
|
|
2392
2412
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -2869,7 +2889,9 @@
|
|
|
2869
2889
|
"type": "string",
|
|
2870
2890
|
"description": "UIDs of \"deck\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"deck of many things|dmg\".",
|
|
2871
2891
|
"markdownDescription": "UIDs of "deck"s to be linked in a "See Also" footnote.\n\nEx.: "deck of many things|dmg"."
|
|
2872
|
-
}
|
|
2892
|
+
},
|
|
2893
|
+
"minItems": 1,
|
|
2894
|
+
"uniqueItems": true
|
|
2873
2895
|
},
|
|
2874
2896
|
"seeAlsoVehicle": {
|
|
2875
2897
|
"type": "array",
|
|
@@ -2877,7 +2899,9 @@
|
|
|
2877
2899
|
"type": "string",
|
|
2878
2900
|
"description": "UIDs of \"vehicle\"s to be linked in a \"See Also\" footnote.\n\nEx.: \"rowboat|gos\".",
|
|
2879
2901
|
"markdownDescription": "UIDs of "vehicle"s to be linked in a "See Also" footnote.\n\nEx.: "rowboat|gos"."
|
|
2880
|
-
}
|
|
2902
|
+
},
|
|
2903
|
+
"minItems": 1,
|
|
2904
|
+
"uniqueItems": true
|
|
2881
2905
|
},
|
|
2882
2906
|
"reqAttuneTags": {
|
|
2883
2907
|
"$ref": "util.json#/$defs/reqAttuneTags"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "vehicles.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.2",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"vehicleTerrain": {
|
|
@@ -205,7 +205,8 @@
|
|
|
205
205
|
"items": {
|
|
206
206
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
207
207
|
},
|
|
208
|
-
"minItems": 1
|
|
208
|
+
"minItems": 1,
|
|
209
|
+
"uniqueItems": true
|
|
209
210
|
},
|
|
210
211
|
"cost": {
|
|
211
212
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -256,7 +257,8 @@
|
|
|
256
257
|
"items": {
|
|
257
258
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
258
259
|
},
|
|
259
|
-
"minItems": 1
|
|
260
|
+
"minItems": 1,
|
|
261
|
+
"uniqueItems": true
|
|
260
262
|
},
|
|
261
263
|
"cost": {
|
|
262
264
|
"$ref": "#/$defs/_vehicleCost"
|
|
@@ -311,7 +313,8 @@
|
|
|
311
313
|
"items": {
|
|
312
314
|
"$ref": "util.json#/$defs/dataVehicleUpgradeType"
|
|
313
315
|
},
|
|
314
|
-
"minItems": 1
|
|
316
|
+
"minItems": 1,
|
|
317
|
+
"uniqueItems": true
|
|
315
318
|
},
|
|
316
319
|
"cost": {
|
|
317
320
|
"$ref": "#/$defs/_vehicleCost"
|