5etools-utils 0.10.3 → 0.10.4
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/package.json +1 -1
- package/schema/brew/items-base.json +18 -12
- package/schema/brew/items-shared.json +5 -2
- package/schema/brew/util.json +39 -27
- package/schema/brew-fast/items-base.json +18 -12
- package/schema/brew-fast/items-shared.json +5 -2
- package/schema/brew-fast/util.json +39 -27
- package/schema/site/items-base.json +18 -12
- package/schema/site/items-shared.json +5 -2
- package/schema/site/util.json +39 -27
- package/schema/site-fast/items-base.json +18 -12
- package/schema/site-fast/items-shared.json +5 -2
- package/schema/site-fast/util.json +39 -27
- package/schema/ua/items-base.json +18 -12
- package/schema/ua/items-shared.json +5 -2
- package/schema/ua/util.json +39 -27
- package/schema/ua-fast/items-base.json +18 -12
- package/schema/ua-fast/items-shared.json +5 -2
- package/schema/ua-fast/util.json +39 -27
package/package.json
CHANGED
|
@@ -1130,20 +1130,26 @@
|
|
|
1130
1130
|
"_mod": {
|
|
1131
1131
|
"$ref": "util.json#/$defs/_modObject"
|
|
1132
1132
|
},
|
|
1133
|
-
"
|
|
1134
|
-
"type": "
|
|
1135
|
-
"
|
|
1136
|
-
"
|
|
1137
|
-
|
|
1133
|
+
"_templates": {
|
|
1134
|
+
"type": "array",
|
|
1135
|
+
"items": {
|
|
1136
|
+
"type": "object",
|
|
1137
|
+
"properties": {
|
|
1138
|
+
"name": {
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"source": {
|
|
1142
|
+
"$ref": "util.json#/$defs/source"
|
|
1143
|
+
}
|
|
1138
1144
|
},
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1141
|
-
|
|
1145
|
+
"required": [
|
|
1146
|
+
"name",
|
|
1147
|
+
"source"
|
|
1148
|
+
],
|
|
1149
|
+
"additionalProperties": false
|
|
1142
1150
|
},
|
|
1143
|
-
"
|
|
1144
|
-
|
|
1145
|
-
"source"
|
|
1146
|
-
]
|
|
1151
|
+
"minItems": 1,
|
|
1152
|
+
"uniqueItems": true
|
|
1147
1153
|
},
|
|
1148
1154
|
"_preserve": {
|
|
1149
1155
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"examples": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
package/schema/brew/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3514,20 +3514,26 @@
|
|
|
3514
3514
|
"_mod": {
|
|
3515
3515
|
"$ref": "#/$defs/_modObject"
|
|
3516
3516
|
},
|
|
3517
|
-
"
|
|
3518
|
-
"type": "
|
|
3519
|
-
"
|
|
3520
|
-
"
|
|
3521
|
-
|
|
3517
|
+
"_templates": {
|
|
3518
|
+
"type": "array",
|
|
3519
|
+
"items": {
|
|
3520
|
+
"type": "object",
|
|
3521
|
+
"properties": {
|
|
3522
|
+
"name": {
|
|
3523
|
+
"type": "string"
|
|
3524
|
+
},
|
|
3525
|
+
"source": {
|
|
3526
|
+
"$ref": "util.json#/$defs/source"
|
|
3527
|
+
}
|
|
3522
3528
|
},
|
|
3523
|
-
"
|
|
3524
|
-
"
|
|
3525
|
-
|
|
3529
|
+
"required": [
|
|
3530
|
+
"name",
|
|
3531
|
+
"source"
|
|
3532
|
+
],
|
|
3533
|
+
"additionalProperties": false
|
|
3526
3534
|
},
|
|
3527
|
-
"
|
|
3528
|
-
|
|
3529
|
-
"source"
|
|
3530
|
-
]
|
|
3535
|
+
"minItems": 1,
|
|
3536
|
+
"uniqueItems": true
|
|
3531
3537
|
},
|
|
3532
3538
|
"_preserve": {
|
|
3533
3539
|
"type": "object",
|
|
@@ -3546,20 +3552,26 @@
|
|
|
3546
3552
|
"_mod": {
|
|
3547
3553
|
"$ref": "#/$defs/_modObject"
|
|
3548
3554
|
},
|
|
3549
|
-
"
|
|
3550
|
-
"type": "
|
|
3551
|
-
"
|
|
3552
|
-
"
|
|
3553
|
-
|
|
3555
|
+
"_templates": {
|
|
3556
|
+
"type": "array",
|
|
3557
|
+
"items": {
|
|
3558
|
+
"type": "object",
|
|
3559
|
+
"properties": {
|
|
3560
|
+
"name": {
|
|
3561
|
+
"type": "string"
|
|
3562
|
+
},
|
|
3563
|
+
"source": {
|
|
3564
|
+
"$ref": "util.json#/$defs/source"
|
|
3565
|
+
}
|
|
3554
3566
|
},
|
|
3555
|
-
"
|
|
3556
|
-
"
|
|
3557
|
-
|
|
3567
|
+
"required": [
|
|
3568
|
+
"name",
|
|
3569
|
+
"source"
|
|
3570
|
+
],
|
|
3571
|
+
"additionalProperties": false
|
|
3558
3572
|
},
|
|
3559
|
-
"
|
|
3560
|
-
|
|
3561
|
-
"source"
|
|
3562
|
-
]
|
|
3573
|
+
"minItems": 1,
|
|
3574
|
+
"uniqueItems": true
|
|
3563
3575
|
},
|
|
3564
3576
|
"_preserve": {
|
|
3565
3577
|
"type": "object",
|
|
@@ -3644,7 +3656,7 @@
|
|
|
3644
3656
|
{
|
|
3645
3657
|
"type": "object",
|
|
3646
3658
|
"properties": {
|
|
3647
|
-
"
|
|
3659
|
+
"_abstract": {
|
|
3648
3660
|
"type": "object",
|
|
3649
3661
|
"properties": {
|
|
3650
3662
|
"name": {
|
|
@@ -3683,7 +3695,7 @@
|
|
|
3683
3695
|
}
|
|
3684
3696
|
},
|
|
3685
3697
|
"required": [
|
|
3686
|
-
"
|
|
3698
|
+
"_abstract",
|
|
3687
3699
|
"_implementations"
|
|
3688
3700
|
]
|
|
3689
3701
|
}
|
|
@@ -1130,20 +1130,26 @@
|
|
|
1130
1130
|
"_mod": {
|
|
1131
1131
|
"$ref": "util.json#/$defs/_modObject"
|
|
1132
1132
|
},
|
|
1133
|
-
"
|
|
1134
|
-
"type": "
|
|
1135
|
-
"
|
|
1136
|
-
"
|
|
1137
|
-
|
|
1133
|
+
"_templates": {
|
|
1134
|
+
"type": "array",
|
|
1135
|
+
"items": {
|
|
1136
|
+
"type": "object",
|
|
1137
|
+
"properties": {
|
|
1138
|
+
"name": {
|
|
1139
|
+
"type": "string"
|
|
1140
|
+
},
|
|
1141
|
+
"source": {
|
|
1142
|
+
"$ref": "util.json#/$defs/source"
|
|
1143
|
+
}
|
|
1138
1144
|
},
|
|
1139
|
-
"
|
|
1140
|
-
"
|
|
1141
|
-
|
|
1145
|
+
"required": [
|
|
1146
|
+
"name",
|
|
1147
|
+
"source"
|
|
1148
|
+
],
|
|
1149
|
+
"additionalProperties": false
|
|
1142
1150
|
},
|
|
1143
|
-
"
|
|
1144
|
-
|
|
1145
|
-
"source"
|
|
1146
|
-
]
|
|
1151
|
+
"minItems": 1,
|
|
1152
|
+
"uniqueItems": true
|
|
1147
1153
|
},
|
|
1148
1154
|
"_preserve": {
|
|
1149
1155
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"examples": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3514,20 +3514,26 @@
|
|
|
3514
3514
|
"_mod": {
|
|
3515
3515
|
"$ref": "#/$defs/_modObject"
|
|
3516
3516
|
},
|
|
3517
|
-
"
|
|
3518
|
-
"type": "
|
|
3519
|
-
"
|
|
3520
|
-
"
|
|
3521
|
-
|
|
3517
|
+
"_templates": {
|
|
3518
|
+
"type": "array",
|
|
3519
|
+
"items": {
|
|
3520
|
+
"type": "object",
|
|
3521
|
+
"properties": {
|
|
3522
|
+
"name": {
|
|
3523
|
+
"type": "string"
|
|
3524
|
+
},
|
|
3525
|
+
"source": {
|
|
3526
|
+
"$ref": "util.json#/$defs/source"
|
|
3527
|
+
}
|
|
3522
3528
|
},
|
|
3523
|
-
"
|
|
3524
|
-
"
|
|
3525
|
-
|
|
3529
|
+
"required": [
|
|
3530
|
+
"name",
|
|
3531
|
+
"source"
|
|
3532
|
+
],
|
|
3533
|
+
"additionalProperties": false
|
|
3526
3534
|
},
|
|
3527
|
-
"
|
|
3528
|
-
|
|
3529
|
-
"source"
|
|
3530
|
-
]
|
|
3535
|
+
"minItems": 1,
|
|
3536
|
+
"uniqueItems": true
|
|
3531
3537
|
},
|
|
3532
3538
|
"_preserve": {
|
|
3533
3539
|
"type": "object",
|
|
@@ -3546,20 +3552,26 @@
|
|
|
3546
3552
|
"_mod": {
|
|
3547
3553
|
"$ref": "#/$defs/_modObject"
|
|
3548
3554
|
},
|
|
3549
|
-
"
|
|
3550
|
-
"type": "
|
|
3551
|
-
"
|
|
3552
|
-
"
|
|
3553
|
-
|
|
3555
|
+
"_templates": {
|
|
3556
|
+
"type": "array",
|
|
3557
|
+
"items": {
|
|
3558
|
+
"type": "object",
|
|
3559
|
+
"properties": {
|
|
3560
|
+
"name": {
|
|
3561
|
+
"type": "string"
|
|
3562
|
+
},
|
|
3563
|
+
"source": {
|
|
3564
|
+
"$ref": "util.json#/$defs/source"
|
|
3565
|
+
}
|
|
3554
3566
|
},
|
|
3555
|
-
"
|
|
3556
|
-
"
|
|
3557
|
-
|
|
3567
|
+
"required": [
|
|
3568
|
+
"name",
|
|
3569
|
+
"source"
|
|
3570
|
+
],
|
|
3571
|
+
"additionalProperties": false
|
|
3558
3572
|
},
|
|
3559
|
-
"
|
|
3560
|
-
|
|
3561
|
-
"source"
|
|
3562
|
-
]
|
|
3573
|
+
"minItems": 1,
|
|
3574
|
+
"uniqueItems": true
|
|
3563
3575
|
},
|
|
3564
3576
|
"_preserve": {
|
|
3565
3577
|
"type": "object",
|
|
@@ -3644,7 +3656,7 @@
|
|
|
3644
3656
|
{
|
|
3645
3657
|
"type": "object",
|
|
3646
3658
|
"properties": {
|
|
3647
|
-
"
|
|
3659
|
+
"_abstract": {
|
|
3648
3660
|
"type": "object",
|
|
3649
3661
|
"properties": {
|
|
3650
3662
|
"name": {
|
|
@@ -3683,7 +3695,7 @@
|
|
|
3683
3695
|
}
|
|
3684
3696
|
},
|
|
3685
3697
|
"required": [
|
|
3686
|
-
"
|
|
3698
|
+
"_abstract",
|
|
3687
3699
|
"_implementations"
|
|
3688
3700
|
]
|
|
3689
3701
|
}
|
|
@@ -1012,20 +1012,26 @@
|
|
|
1012
1012
|
"_mod": {
|
|
1013
1013
|
"$ref": "util.json#/$defs/_modObject"
|
|
1014
1014
|
},
|
|
1015
|
-
"
|
|
1016
|
-
"type": "
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
|
|
1015
|
+
"_templates": {
|
|
1016
|
+
"type": "array",
|
|
1017
|
+
"items": {
|
|
1018
|
+
"type": "object",
|
|
1019
|
+
"properties": {
|
|
1020
|
+
"name": {
|
|
1021
|
+
"type": "string"
|
|
1022
|
+
},
|
|
1023
|
+
"source": {
|
|
1024
|
+
"$ref": "util.json#/$defs/source"
|
|
1025
|
+
}
|
|
1020
1026
|
},
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
1023
|
-
|
|
1027
|
+
"required": [
|
|
1028
|
+
"name",
|
|
1029
|
+
"source"
|
|
1030
|
+
],
|
|
1031
|
+
"additionalProperties": false
|
|
1024
1032
|
},
|
|
1025
|
-
"
|
|
1026
|
-
|
|
1027
|
-
"source"
|
|
1028
|
-
]
|
|
1033
|
+
"minItems": 1,
|
|
1034
|
+
"uniqueItems": true
|
|
1029
1035
|
},
|
|
1030
1036
|
"_preserve": {
|
|
1031
1037
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"enum": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
package/schema/site/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3499,20 +3499,26 @@
|
|
|
3499
3499
|
"_mod": {
|
|
3500
3500
|
"$ref": "#/$defs/_modObject"
|
|
3501
3501
|
},
|
|
3502
|
-
"
|
|
3503
|
-
"type": "
|
|
3504
|
-
"
|
|
3505
|
-
"
|
|
3506
|
-
|
|
3502
|
+
"_templates": {
|
|
3503
|
+
"type": "array",
|
|
3504
|
+
"items": {
|
|
3505
|
+
"type": "object",
|
|
3506
|
+
"properties": {
|
|
3507
|
+
"name": {
|
|
3508
|
+
"type": "string"
|
|
3509
|
+
},
|
|
3510
|
+
"source": {
|
|
3511
|
+
"$ref": "util.json#/$defs/source"
|
|
3512
|
+
}
|
|
3507
3513
|
},
|
|
3508
|
-
"
|
|
3509
|
-
"
|
|
3510
|
-
|
|
3514
|
+
"required": [
|
|
3515
|
+
"name",
|
|
3516
|
+
"source"
|
|
3517
|
+
],
|
|
3518
|
+
"additionalProperties": false
|
|
3511
3519
|
},
|
|
3512
|
-
"
|
|
3513
|
-
|
|
3514
|
-
"source"
|
|
3515
|
-
]
|
|
3520
|
+
"minItems": 1,
|
|
3521
|
+
"uniqueItems": true
|
|
3516
3522
|
},
|
|
3517
3523
|
"_preserve": {
|
|
3518
3524
|
"type": "object",
|
|
@@ -3531,20 +3537,26 @@
|
|
|
3531
3537
|
"_mod": {
|
|
3532
3538
|
"$ref": "#/$defs/_modObject"
|
|
3533
3539
|
},
|
|
3534
|
-
"
|
|
3535
|
-
"type": "
|
|
3536
|
-
"
|
|
3537
|
-
"
|
|
3538
|
-
|
|
3540
|
+
"_templates": {
|
|
3541
|
+
"type": "array",
|
|
3542
|
+
"items": {
|
|
3543
|
+
"type": "object",
|
|
3544
|
+
"properties": {
|
|
3545
|
+
"name": {
|
|
3546
|
+
"type": "string"
|
|
3547
|
+
},
|
|
3548
|
+
"source": {
|
|
3549
|
+
"$ref": "util.json#/$defs/source"
|
|
3550
|
+
}
|
|
3539
3551
|
},
|
|
3540
|
-
"
|
|
3541
|
-
"
|
|
3542
|
-
|
|
3552
|
+
"required": [
|
|
3553
|
+
"name",
|
|
3554
|
+
"source"
|
|
3555
|
+
],
|
|
3556
|
+
"additionalProperties": false
|
|
3543
3557
|
},
|
|
3544
|
-
"
|
|
3545
|
-
|
|
3546
|
-
"source"
|
|
3547
|
-
]
|
|
3558
|
+
"minItems": 1,
|
|
3559
|
+
"uniqueItems": true
|
|
3548
3560
|
},
|
|
3549
3561
|
"_preserve": {
|
|
3550
3562
|
"type": "object",
|
|
@@ -3629,7 +3641,7 @@
|
|
|
3629
3641
|
{
|
|
3630
3642
|
"type": "object",
|
|
3631
3643
|
"properties": {
|
|
3632
|
-
"
|
|
3644
|
+
"_abstract": {
|
|
3633
3645
|
"type": "object",
|
|
3634
3646
|
"properties": {
|
|
3635
3647
|
"name": {
|
|
@@ -3668,7 +3680,7 @@
|
|
|
3668
3680
|
}
|
|
3669
3681
|
},
|
|
3670
3682
|
"required": [
|
|
3671
|
-
"
|
|
3683
|
+
"_abstract",
|
|
3672
3684
|
"_implementations"
|
|
3673
3685
|
]
|
|
3674
3686
|
}
|
|
@@ -1012,20 +1012,26 @@
|
|
|
1012
1012
|
"_mod": {
|
|
1013
1013
|
"$ref": "util.json#/$defs/_modObject"
|
|
1014
1014
|
},
|
|
1015
|
-
"
|
|
1016
|
-
"type": "
|
|
1017
|
-
"
|
|
1018
|
-
"
|
|
1019
|
-
|
|
1015
|
+
"_templates": {
|
|
1016
|
+
"type": "array",
|
|
1017
|
+
"items": {
|
|
1018
|
+
"type": "object",
|
|
1019
|
+
"properties": {
|
|
1020
|
+
"name": {
|
|
1021
|
+
"type": "string"
|
|
1022
|
+
},
|
|
1023
|
+
"source": {
|
|
1024
|
+
"$ref": "util.json#/$defs/source"
|
|
1025
|
+
}
|
|
1020
1026
|
},
|
|
1021
|
-
"
|
|
1022
|
-
"
|
|
1023
|
-
|
|
1027
|
+
"required": [
|
|
1028
|
+
"name",
|
|
1029
|
+
"source"
|
|
1030
|
+
],
|
|
1031
|
+
"additionalProperties": false
|
|
1024
1032
|
},
|
|
1025
|
-
"
|
|
1026
|
-
|
|
1027
|
-
"source"
|
|
1028
|
-
]
|
|
1033
|
+
"minItems": 1,
|
|
1034
|
+
"uniqueItems": true
|
|
1029
1035
|
},
|
|
1030
1036
|
"_preserve": {
|
|
1031
1037
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"enum": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3499,20 +3499,26 @@
|
|
|
3499
3499
|
"_mod": {
|
|
3500
3500
|
"$ref": "#/$defs/_modObject"
|
|
3501
3501
|
},
|
|
3502
|
-
"
|
|
3503
|
-
"type": "
|
|
3504
|
-
"
|
|
3505
|
-
"
|
|
3506
|
-
|
|
3502
|
+
"_templates": {
|
|
3503
|
+
"type": "array",
|
|
3504
|
+
"items": {
|
|
3505
|
+
"type": "object",
|
|
3506
|
+
"properties": {
|
|
3507
|
+
"name": {
|
|
3508
|
+
"type": "string"
|
|
3509
|
+
},
|
|
3510
|
+
"source": {
|
|
3511
|
+
"$ref": "util.json#/$defs/source"
|
|
3512
|
+
}
|
|
3507
3513
|
},
|
|
3508
|
-
"
|
|
3509
|
-
"
|
|
3510
|
-
|
|
3514
|
+
"required": [
|
|
3515
|
+
"name",
|
|
3516
|
+
"source"
|
|
3517
|
+
],
|
|
3518
|
+
"additionalProperties": false
|
|
3511
3519
|
},
|
|
3512
|
-
"
|
|
3513
|
-
|
|
3514
|
-
"source"
|
|
3515
|
-
]
|
|
3520
|
+
"minItems": 1,
|
|
3521
|
+
"uniqueItems": true
|
|
3516
3522
|
},
|
|
3517
3523
|
"_preserve": {
|
|
3518
3524
|
"type": "object",
|
|
@@ -3531,20 +3537,26 @@
|
|
|
3531
3537
|
"_mod": {
|
|
3532
3538
|
"$ref": "#/$defs/_modObject"
|
|
3533
3539
|
},
|
|
3534
|
-
"
|
|
3535
|
-
"type": "
|
|
3536
|
-
"
|
|
3537
|
-
"
|
|
3538
|
-
|
|
3540
|
+
"_templates": {
|
|
3541
|
+
"type": "array",
|
|
3542
|
+
"items": {
|
|
3543
|
+
"type": "object",
|
|
3544
|
+
"properties": {
|
|
3545
|
+
"name": {
|
|
3546
|
+
"type": "string"
|
|
3547
|
+
},
|
|
3548
|
+
"source": {
|
|
3549
|
+
"$ref": "util.json#/$defs/source"
|
|
3550
|
+
}
|
|
3539
3551
|
},
|
|
3540
|
-
"
|
|
3541
|
-
"
|
|
3542
|
-
|
|
3552
|
+
"required": [
|
|
3553
|
+
"name",
|
|
3554
|
+
"source"
|
|
3555
|
+
],
|
|
3556
|
+
"additionalProperties": false
|
|
3543
3557
|
},
|
|
3544
|
-
"
|
|
3545
|
-
|
|
3546
|
-
"source"
|
|
3547
|
-
]
|
|
3558
|
+
"minItems": 1,
|
|
3559
|
+
"uniqueItems": true
|
|
3548
3560
|
},
|
|
3549
3561
|
"_preserve": {
|
|
3550
3562
|
"type": "object",
|
|
@@ -3629,7 +3641,7 @@
|
|
|
3629
3641
|
{
|
|
3630
3642
|
"type": "object",
|
|
3631
3643
|
"properties": {
|
|
3632
|
-
"
|
|
3644
|
+
"_abstract": {
|
|
3633
3645
|
"type": "object",
|
|
3634
3646
|
"properties": {
|
|
3635
3647
|
"name": {
|
|
@@ -3668,7 +3680,7 @@
|
|
|
3668
3680
|
}
|
|
3669
3681
|
},
|
|
3670
3682
|
"required": [
|
|
3671
|
-
"
|
|
3683
|
+
"_abstract",
|
|
3672
3684
|
"_implementations"
|
|
3673
3685
|
]
|
|
3674
3686
|
}
|
|
@@ -1021,20 +1021,26 @@
|
|
|
1021
1021
|
"_mod": {
|
|
1022
1022
|
"$ref": "util.json#/$defs/_modObject"
|
|
1023
1023
|
},
|
|
1024
|
-
"
|
|
1025
|
-
"type": "
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1028
|
-
|
|
1024
|
+
"_templates": {
|
|
1025
|
+
"type": "array",
|
|
1026
|
+
"items": {
|
|
1027
|
+
"type": "object",
|
|
1028
|
+
"properties": {
|
|
1029
|
+
"name": {
|
|
1030
|
+
"type": "string"
|
|
1031
|
+
},
|
|
1032
|
+
"source": {
|
|
1033
|
+
"$ref": "util.json#/$defs/source"
|
|
1034
|
+
}
|
|
1029
1035
|
},
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
|
|
1036
|
+
"required": [
|
|
1037
|
+
"name",
|
|
1038
|
+
"source"
|
|
1039
|
+
],
|
|
1040
|
+
"additionalProperties": false
|
|
1033
1041
|
},
|
|
1034
|
-
"
|
|
1035
|
-
|
|
1036
|
-
"source"
|
|
1037
|
-
]
|
|
1042
|
+
"minItems": 1,
|
|
1043
|
+
"uniqueItems": true
|
|
1038
1044
|
},
|
|
1039
1045
|
"_preserve": {
|
|
1040
1046
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"enum": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
package/schema/ua/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3502,20 +3502,26 @@
|
|
|
3502
3502
|
"_mod": {
|
|
3503
3503
|
"$ref": "#/$defs/_modObject"
|
|
3504
3504
|
},
|
|
3505
|
-
"
|
|
3506
|
-
"type": "
|
|
3507
|
-
"
|
|
3508
|
-
"
|
|
3509
|
-
|
|
3505
|
+
"_templates": {
|
|
3506
|
+
"type": "array",
|
|
3507
|
+
"items": {
|
|
3508
|
+
"type": "object",
|
|
3509
|
+
"properties": {
|
|
3510
|
+
"name": {
|
|
3511
|
+
"type": "string"
|
|
3512
|
+
},
|
|
3513
|
+
"source": {
|
|
3514
|
+
"$ref": "util.json#/$defs/source"
|
|
3515
|
+
}
|
|
3510
3516
|
},
|
|
3511
|
-
"
|
|
3512
|
-
"
|
|
3513
|
-
|
|
3517
|
+
"required": [
|
|
3518
|
+
"name",
|
|
3519
|
+
"source"
|
|
3520
|
+
],
|
|
3521
|
+
"additionalProperties": false
|
|
3514
3522
|
},
|
|
3515
|
-
"
|
|
3516
|
-
|
|
3517
|
-
"source"
|
|
3518
|
-
]
|
|
3523
|
+
"minItems": 1,
|
|
3524
|
+
"uniqueItems": true
|
|
3519
3525
|
},
|
|
3520
3526
|
"_preserve": {
|
|
3521
3527
|
"type": "object",
|
|
@@ -3534,20 +3540,26 @@
|
|
|
3534
3540
|
"_mod": {
|
|
3535
3541
|
"$ref": "#/$defs/_modObject"
|
|
3536
3542
|
},
|
|
3537
|
-
"
|
|
3538
|
-
"type": "
|
|
3539
|
-
"
|
|
3540
|
-
"
|
|
3541
|
-
|
|
3543
|
+
"_templates": {
|
|
3544
|
+
"type": "array",
|
|
3545
|
+
"items": {
|
|
3546
|
+
"type": "object",
|
|
3547
|
+
"properties": {
|
|
3548
|
+
"name": {
|
|
3549
|
+
"type": "string"
|
|
3550
|
+
},
|
|
3551
|
+
"source": {
|
|
3552
|
+
"$ref": "util.json#/$defs/source"
|
|
3553
|
+
}
|
|
3542
3554
|
},
|
|
3543
|
-
"
|
|
3544
|
-
"
|
|
3545
|
-
|
|
3555
|
+
"required": [
|
|
3556
|
+
"name",
|
|
3557
|
+
"source"
|
|
3558
|
+
],
|
|
3559
|
+
"additionalProperties": false
|
|
3546
3560
|
},
|
|
3547
|
-
"
|
|
3548
|
-
|
|
3549
|
-
"source"
|
|
3550
|
-
]
|
|
3561
|
+
"minItems": 1,
|
|
3562
|
+
"uniqueItems": true
|
|
3551
3563
|
},
|
|
3552
3564
|
"_preserve": {
|
|
3553
3565
|
"type": "object",
|
|
@@ -3632,7 +3644,7 @@
|
|
|
3632
3644
|
{
|
|
3633
3645
|
"type": "object",
|
|
3634
3646
|
"properties": {
|
|
3635
|
-
"
|
|
3647
|
+
"_abstract": {
|
|
3636
3648
|
"type": "object",
|
|
3637
3649
|
"properties": {
|
|
3638
3650
|
"name": {
|
|
@@ -3671,7 +3683,7 @@
|
|
|
3671
3683
|
}
|
|
3672
3684
|
},
|
|
3673
3685
|
"required": [
|
|
3674
|
-
"
|
|
3686
|
+
"_abstract",
|
|
3675
3687
|
"_implementations"
|
|
3676
3688
|
]
|
|
3677
3689
|
}
|
|
@@ -1021,20 +1021,26 @@
|
|
|
1021
1021
|
"_mod": {
|
|
1022
1022
|
"$ref": "util.json#/$defs/_modObject"
|
|
1023
1023
|
},
|
|
1024
|
-
"
|
|
1025
|
-
"type": "
|
|
1026
|
-
"
|
|
1027
|
-
"
|
|
1028
|
-
|
|
1024
|
+
"_templates": {
|
|
1025
|
+
"type": "array",
|
|
1026
|
+
"items": {
|
|
1027
|
+
"type": "object",
|
|
1028
|
+
"properties": {
|
|
1029
|
+
"name": {
|
|
1030
|
+
"type": "string"
|
|
1031
|
+
},
|
|
1032
|
+
"source": {
|
|
1033
|
+
"$ref": "util.json#/$defs/source"
|
|
1034
|
+
}
|
|
1029
1035
|
},
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
|
|
1036
|
+
"required": [
|
|
1037
|
+
"name",
|
|
1038
|
+
"source"
|
|
1039
|
+
],
|
|
1040
|
+
"additionalProperties": false
|
|
1033
1041
|
},
|
|
1034
|
-
"
|
|
1035
|
-
|
|
1036
|
-
"source"
|
|
1037
|
-
]
|
|
1042
|
+
"minItems": 1,
|
|
1043
|
+
"uniqueItems": true
|
|
1038
1044
|
},
|
|
1039
1045
|
"_preserve": {
|
|
1040
1046
|
"type": "object",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -156,9 +156,12 @@
|
|
|
156
156
|
"itemType": {
|
|
157
157
|
"type": "string",
|
|
158
158
|
"$comment": "Dumped from `Object(Parser.ITEM_TYPE_JSON_TO_ABV)`",
|
|
159
|
-
"description": "$: Treasure\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
159
|
+
"description": "$: Treasure\n $A: Treasure (Art Object)\n $A: Treasure (Coinage)\n $G: Treasure (Gemstone)\n A: Ammunition\n AF: Ammunition (futuristic)\n AIR: Vehicle (air)\n AT: Artisan Tool\n EM: Eldritch Machine\n EXP: Explosive\n FD: Food and Drink\n G: Adventuring Gear\n GS: Gaming Set\n GV: Generic Variant\n HA: Heavy Armor\n IDG: Illegal Drug\n INS: Instrument\n LA: Light Armor\n M: Melee Weapon\n MA: Medium Armor\n MNT: Mount\n MR: Master Rune \n OTH: Other\n P: Potion\n R: Ranged Weapon\n RD: Rod\n RG: Ring\n S: Shield\n SC: Scroll\n SCF: Spellcasting Focus\n SHP: Vehicle (water)\n SPC: Vehicle (space)\n T: Tool\n TAH: Tack and Harness\n TG: Trade Good\n VEH: Vehicle (land)\n WD: Wand",
|
|
160
160
|
"enum": [
|
|
161
161
|
"$",
|
|
162
|
+
"$A",
|
|
163
|
+
"$C",
|
|
164
|
+
"$G",
|
|
162
165
|
"A",
|
|
163
166
|
"AF",
|
|
164
167
|
"AIR",
|
package/schema/ua-fast/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.16.0",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -3502,20 +3502,26 @@
|
|
|
3502
3502
|
"_mod": {
|
|
3503
3503
|
"$ref": "#/$defs/_modObject"
|
|
3504
3504
|
},
|
|
3505
|
-
"
|
|
3506
|
-
"type": "
|
|
3507
|
-
"
|
|
3508
|
-
"
|
|
3509
|
-
|
|
3505
|
+
"_templates": {
|
|
3506
|
+
"type": "array",
|
|
3507
|
+
"items": {
|
|
3508
|
+
"type": "object",
|
|
3509
|
+
"properties": {
|
|
3510
|
+
"name": {
|
|
3511
|
+
"type": "string"
|
|
3512
|
+
},
|
|
3513
|
+
"source": {
|
|
3514
|
+
"$ref": "util.json#/$defs/source"
|
|
3515
|
+
}
|
|
3510
3516
|
},
|
|
3511
|
-
"
|
|
3512
|
-
"
|
|
3513
|
-
|
|
3517
|
+
"required": [
|
|
3518
|
+
"name",
|
|
3519
|
+
"source"
|
|
3520
|
+
],
|
|
3521
|
+
"additionalProperties": false
|
|
3514
3522
|
},
|
|
3515
|
-
"
|
|
3516
|
-
|
|
3517
|
-
"source"
|
|
3518
|
-
]
|
|
3523
|
+
"minItems": 1,
|
|
3524
|
+
"uniqueItems": true
|
|
3519
3525
|
},
|
|
3520
3526
|
"_preserve": {
|
|
3521
3527
|
"type": "object",
|
|
@@ -3534,20 +3540,26 @@
|
|
|
3534
3540
|
"_mod": {
|
|
3535
3541
|
"$ref": "#/$defs/_modObject"
|
|
3536
3542
|
},
|
|
3537
|
-
"
|
|
3538
|
-
"type": "
|
|
3539
|
-
"
|
|
3540
|
-
"
|
|
3541
|
-
|
|
3543
|
+
"_templates": {
|
|
3544
|
+
"type": "array",
|
|
3545
|
+
"items": {
|
|
3546
|
+
"type": "object",
|
|
3547
|
+
"properties": {
|
|
3548
|
+
"name": {
|
|
3549
|
+
"type": "string"
|
|
3550
|
+
},
|
|
3551
|
+
"source": {
|
|
3552
|
+
"$ref": "util.json#/$defs/source"
|
|
3553
|
+
}
|
|
3542
3554
|
},
|
|
3543
|
-
"
|
|
3544
|
-
"
|
|
3545
|
-
|
|
3555
|
+
"required": [
|
|
3556
|
+
"name",
|
|
3557
|
+
"source"
|
|
3558
|
+
],
|
|
3559
|
+
"additionalProperties": false
|
|
3546
3560
|
},
|
|
3547
|
-
"
|
|
3548
|
-
|
|
3549
|
-
"source"
|
|
3550
|
-
]
|
|
3561
|
+
"minItems": 1,
|
|
3562
|
+
"uniqueItems": true
|
|
3551
3563
|
},
|
|
3552
3564
|
"_preserve": {
|
|
3553
3565
|
"type": "object",
|
|
@@ -3632,7 +3644,7 @@
|
|
|
3632
3644
|
{
|
|
3633
3645
|
"type": "object",
|
|
3634
3646
|
"properties": {
|
|
3635
|
-
"
|
|
3647
|
+
"_abstract": {
|
|
3636
3648
|
"type": "object",
|
|
3637
3649
|
"properties": {
|
|
3638
3650
|
"name": {
|
|
@@ -3671,7 +3683,7 @@
|
|
|
3671
3683
|
}
|
|
3672
3684
|
},
|
|
3673
3685
|
"required": [
|
|
3674
|
-
"
|
|
3686
|
+
"_abstract",
|
|
3675
3687
|
"_implementations"
|
|
3676
3688
|
]
|
|
3677
3689
|
}
|