optolith-database-schema 0.4.1 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/lib/config.d.ts +2 -0
  3. package/lib/config.js +2 -0
  4. package/lib/main.d.ts +1 -1
  5. package/lib/main.js +28 -19
  6. package/lib/types/Cantrip.d.ts +2 -3
  7. package/lib/types/Culture.d.ts +8 -11
  8. package/lib/types/Lessons_Curriculum.d.ts +5 -4
  9. package/lib/types/Lessons_Guideline.d.ts +1 -1
  10. package/lib/types/Patron.d.ts +28 -4
  11. package/lib/types/Profession.d.ts +7 -6
  12. package/lib/types/Race.d.ts +12 -14
  13. package/lib/types/TargetCategory.d.ts +2 -3
  14. package/lib/types/_Activatable.d.ts +21 -22
  15. package/lib/types/_ActivatableSelectOptionCategory.d.ts +1 -1
  16. package/lib/types/_ActivatableSkillCost.d.ts +28 -1
  17. package/lib/types/_ActivatableSkillDuration.d.ts +1 -1
  18. package/lib/types/_ActivatableSkillRange.d.ts +3 -0
  19. package/lib/types/_CommonnessRatedAdvantageDisadvantage.d.ts +2 -4
  20. package/lib/types/_DiseasePoison.d.ts +3 -3
  21. package/lib/types/_Identifier.d.ts +1175 -247
  22. package/lib/types/_Identifier.js +0 -228
  23. package/lib/types/_IdentifierGroup.d.ts +27 -0
  24. package/lib/types/_IdentifierGroup.js +1 -0
  25. package/lib/types/_Prerequisite.d.ts +38 -36
  26. package/lib/types/_ResponsiveText.d.ts +1 -1
  27. package/lib/types/_SimpleReferences.d.ts +50 -253
  28. package/lib/types/equipment/EquipmentPackage.d.ts +1 -1
  29. package/lib/types/equipment/item/Elixir.d.ts +75 -0
  30. package/lib/types/equipment/item/Elixir.js +5 -0
  31. package/lib/types/equipment/item/EquipmentOfBlessedOnes.d.ts +1 -1
  32. package/lib/types/equipment/item/Poison.d.ts +220 -47
  33. package/lib/types/equipment/item/Poison.js +10 -0
  34. package/lib/types/equipment/item/ToolOfTheTrade.d.ts +6 -2
  35. package/lib/types/equipment/item/_Herbary.d.ts +31 -0
  36. package/lib/types/equipment/item/_Herbary.js +22 -0
  37. package/lib/types/equipment/item/_MeleeWeapon.d.ts +2 -9
  38. package/lib/types/equipment/item/_RangedWeapon.d.ts +2 -3
  39. package/lib/types/magicalActions/AnimistPower.d.ts +0 -1
  40. package/lib/types/magicalActions/MagicalRune.d.ts +22 -3
  41. package/lib/types/magicalActions/_SkillReference.d.ts +3 -2
  42. package/lib/types/magicalActions/_SkillReference.js +5 -5
  43. package/lib/types/prerequisites/PrerequisiteGroups.d.ts +2 -20
  44. package/lib/types/prerequisites/single/ActivatablePrerequisite.d.ts +1 -62
  45. package/lib/types/prerequisites/single/AnimistPowerPrerequisite.d.ts +2 -3
  46. package/lib/types/prerequisites/single/CulturePrerequisite.d.ts +5 -2
  47. package/lib/types/prerequisites/single/EnhancementPrerequisite.d.ts +1 -1
  48. package/lib/types/prerequisites/single/InfluencePrerequisite.d.ts +2 -3
  49. package/lib/types/prerequisites/single/RacePrerequisite.d.ts +5 -2
  50. package/lib/types/prerequisites/single/RatedPrerequisite.d.ts +1 -18
  51. package/lib/types/prerequisites/single/RulePrerequisite.d.ts +1 -1
  52. package/lib/types/prerequisites/single/SocialStatusPrerequisite.d.ts +2 -4
  53. package/lib/types/prerequisites/single/StatePrerequisite.d.ts +2 -2
  54. package/lib/types/rule/CoreRule.d.ts +4 -7
  55. package/lib/types/source/_PublicationRef.d.ts +2 -3
  56. package/lib/types/specialAbility/BlessedTradition.d.ts +1 -1
  57. package/lib/types/specialAbility/CombatStyleSpecialAbility.d.ts +2 -1
  58. package/lib/types/specialAbility/LiturgicalStyleSpecialAbility.d.ts +2 -1
  59. package/lib/types/specialAbility/MagicStyleSpecialAbility.d.ts +2 -1
  60. package/lib/types/specialAbility/MagicalTradition.d.ts +2 -3
  61. package/lib/types/specialAbility/PactGift.d.ts +1 -1
  62. package/lib/types/specialAbility/SkillStyleSpecialAbility.d.ts +2 -1
  63. package/lib/types/specialAbility/sub/_LanguageScript.d.ts +2 -4
  64. package/lib/validation/schema.js +1 -1
  65. package/package.json +2 -2
  66. package/schema/Cantrip.schema.json +1 -2
  67. package/schema/Culture.schema.json +51 -10
  68. package/schema/Lessons_Curriculum.schema.json +8 -12
  69. package/schema/Lessons_Guideline.schema.json +1 -1
  70. package/schema/Patron.schema.json +24 -6
  71. package/schema/Profession.schema.json +57 -15
  72. package/schema/Race.schema.json +121 -13
  73. package/schema/TargetCategory.schema.json +1 -2
  74. package/schema/_Activatable.schema.json +5 -181
  75. package/schema/_ActivatableSelectOptionCategory.schema.json +4 -4
  76. package/schema/_ActivatableSkillCost.schema.json +61 -0
  77. package/schema/_ActivatableSkillDuration.schema.json +1 -3
  78. package/schema/_ActivatableSkillRange.schema.json +19 -0
  79. package/schema/_DiseasePoison.schema.json +0 -2
  80. package/schema/_Identifier.schema.json +2099 -347
  81. package/schema/_IdentifierGroup.schema.json +601 -0
  82. package/schema/_Prerequisite.schema.json +1284 -1049
  83. package/schema/_ResponsiveText.schema.json +2 -2
  84. package/schema/_SimpleReferences.schema.json +54 -130
  85. package/schema/equipment/EquipmentPackage.schema.json +1 -1
  86. package/schema/equipment/item/Elixir.schema.json +123 -0
  87. package/schema/equipment/item/EquipmentOfBlessedOnes.schema.json +4 -1
  88. package/schema/equipment/item/Poison.schema.json +431 -68
  89. package/schema/equipment/item/ToolOfTheTrade.schema.json +15 -4
  90. package/schema/equipment/item/_Herbary.schema.json +42 -0
  91. package/schema/equipment/item/_MeleeWeapon.schema.json +1 -13
  92. package/schema/equipment/item/_RangedWeapon.schema.json +1 -2
  93. package/schema/magicalActions/AnimistPower.schema.json +0 -1
  94. package/schema/magicalActions/MagicalRune.schema.json +38 -3
  95. package/schema/magicalActions/_SkillReference.schema.json +15 -3
  96. package/schema/prerequisites/PrerequisiteGroups.schema.json +0 -96
  97. package/schema/prerequisites/single/ActivatablePrerequisite.schema.json +2 -87
  98. package/schema/prerequisites/single/AnimistPowerPrerequisite.schema.json +1 -2
  99. package/schema/prerequisites/single/CulturePrerequisite.schema.json +2 -1
  100. package/schema/prerequisites/single/EnhancementPrerequisite.schema.json +1 -1
  101. package/schema/prerequisites/single/InfluencePrerequisite.schema.json +1 -2
  102. package/schema/prerequisites/single/RacePrerequisite.schema.json +2 -1
  103. package/schema/prerequisites/single/RatedPrerequisite.schema.json +1 -28
  104. package/schema/prerequisites/single/RulePrerequisite.schema.json +1 -1
  105. package/schema/prerequisites/single/SocialStatusPrerequisite.schema.json +1 -3
  106. package/schema/prerequisites/single/StatePrerequisite.schema.json +1 -1
  107. package/schema/rule/CoreRule.schema.json +3 -5
  108. package/schema/source/_PublicationRef.schema.json +1 -2
  109. package/schema/specialAbility/BlessedTradition.schema.json +2 -2
  110. package/schema/specialAbility/CombatStyleSpecialAbility.schema.json +511 -1
  111. package/schema/specialAbility/LiturgicalStyleSpecialAbility.schema.json +511 -1
  112. package/schema/specialAbility/MagicStyleSpecialAbility.schema.json +511 -1
  113. package/schema/specialAbility/MagicalTradition.schema.json +1 -2
  114. package/schema/specialAbility/PactGift.schema.json +1 -1
  115. package/schema/specialAbility/SkillStyleSpecialAbility.schema.json +511 -1
  116. package/schema/specialAbility/sub/_LanguageScript.schema.json +1 -3
  117. package/schema/_CommonnessRatedAdvantageDisadvantage.schema.json +0 -22
@@ -2,596 +2,2348 @@
2
2
  "$schema": "https://json-schema.org/draft/2019-09/schema",
3
3
  "$id": "/_Identifier.schema.json",
4
4
  "$defs": {
5
- "ActivatableTag": {
6
- "enum": [
7
- "Advantage",
8
- "Disadvantage",
9
- "GeneralSpecialAbility",
10
- "FatePointSpecialAbility",
11
- "CombatSpecialAbility",
12
- "MagicalSpecialAbility",
13
- "StaffEnchantment",
14
- "FamiliarSpecialAbility",
15
- "KarmaSpecialAbility",
16
- "ProtectiveWardingCircleSpecialAbility",
17
- "CombatStyleSpecialAbility",
18
- "AdvancedCombatSpecialAbility",
19
- "CommandSpecialAbility",
20
- "MagicStyleSpecialAbility",
21
- "AdvancedMagicalSpecialAbility",
22
- "SpellSwordEnchantment",
23
- "DaggerRitual",
24
- "InstrumentEnchantment",
25
- "AttireEnchantment",
26
- "OrbEnchantment",
27
- "WandEnchantment",
28
- "BrawlingSpecialAbility",
29
- "AncestorGlyph",
30
- "CeremonialItemSpecialAbility",
31
- "Sermon",
32
- "LiturgicalStyleSpecialAbility",
33
- "AdvancedKarmaSpecialAbility",
34
- "Vision",
35
- "MagicalTradition",
36
- "BlessedTradition",
37
- "PactGift",
38
- "SikaryanDrainSpecialAbility",
39
- "LycantropicGift",
40
- "SkillStyleSpecialAbility",
41
- "AdvancedSkillSpecialAbility",
42
- "ArcaneOrbEnchantment",
43
- "CauldronEnchantment",
44
- "FoolsHatEnchantment",
45
- "ToyEnchantment",
46
- "BowlEnchantment",
47
- "FatePointSexSpecialAbility",
48
- "SexSpecialAbility",
49
- "WeaponEnchantment",
50
- "SickleRitual",
51
- "RingEnchantment",
52
- "ChronicleEnchantment"
53
- ]
54
- },
55
- "SpecialAbilityTag": {
56
- "enum": [
57
- "GeneralSpecialAbility",
58
- "FatePointSpecialAbility",
59
- "CombatSpecialAbility",
60
- "MagicalSpecialAbility",
61
- "StaffEnchantment",
62
- "FamiliarSpecialAbility",
63
- "KarmaSpecialAbility",
64
- "ProtectiveWardingCircleSpecialAbility",
65
- "CombatStyleSpecialAbility",
66
- "AdvancedCombatSpecialAbility",
67
- "CommandSpecialAbility",
68
- "MagicStyleSpecialAbility",
69
- "AdvancedMagicalSpecialAbility",
70
- "SpellSwordEnchantment",
71
- "DaggerRitual",
72
- "InstrumentEnchantment",
73
- "AttireEnchantment",
74
- "OrbEnchantment",
75
- "WandEnchantment",
76
- "BrawlingSpecialAbility",
77
- "AncestorGlyph",
78
- "CeremonialItemSpecialAbility",
79
- "Sermon",
80
- "LiturgicalStyleSpecialAbility",
81
- "AdvancedKarmaSpecialAbility",
82
- "Vision",
83
- "MagicalTradition",
84
- "BlessedTradition",
85
- "PactGift",
86
- "SikaryanDrainSpecialAbility",
87
- "LycantropicGift",
88
- "SkillStyleSpecialAbility",
89
- "AdvancedSkillSpecialAbility",
90
- "ArcaneOrbEnchantment",
91
- "CauldronEnchantment",
92
- "FoolsHatEnchantment",
93
- "ToyEnchantment",
94
- "BowlEnchantment",
95
- "FatePointSexSpecialAbility",
96
- "SexSpecialAbility",
97
- "WeaponEnchantment",
98
- "SickleRitual",
99
- "RingEnchantment",
100
- "ChronicleEnchantment"
101
- ]
102
- },
103
- "CombatRelatedSpecialAbilityTag": {
104
- "enum": [
105
- "CombatSpecialAbility",
106
- "CombatStyleSpecialAbility",
107
- "AdvancedCombatSpecialAbility",
108
- "CommandSpecialAbility"
109
- ]
110
- },
111
- "RatedTag": {
112
- "enum": [
113
- "Attribute",
114
- "Skill",
115
- "CloseCombatTechnique",
116
- "RangedCombatTechnique",
117
- "Spell",
118
- "Ritual",
119
- "LiturgicalChant",
120
- "Ceremony"
121
- ]
122
- },
123
- "SkillTag": {
124
- "enum": [
125
- "Skill",
126
- "Spell",
127
- "Ritual",
128
- "LiturgicalChant",
129
- "Ceremony"
130
- ]
131
- },
132
- "AdvancedSpecialAbilityRestrictedOptionTag": {
133
- "enum": [
134
- "General",
135
- "Skill",
136
- "Element"
137
- ]
138
- },
139
- "VolumePointsOptionReferenceTag": {
140
- "enum": [
141
- "General",
142
- "AnimalShapeSize"
143
- ]
144
- },
145
- "CombatTechniqueTag": {
146
- "enum": [
147
- "CloseCombatTechnique",
148
- "RangedCombatTechnique"
149
- ]
150
- },
151
- "MagicalTraditionTag": {
152
- "enum": [
153
- "MagicalTradition"
154
- ]
155
- },
156
- "PatronTag": {
157
- "enum": [
158
- "Patron"
159
- ]
160
- },
161
- "ExtensionRuleTag": {
162
- "enum": [
163
- "FocusRule",
164
- "OptionalRule"
165
- ]
166
- },
167
- "SkillWithEnhancementsTag": {
168
- "enum": [
169
- "Spell",
170
- "Ritual",
171
- "LiturgicalChant",
172
- "Ceremony"
173
- ]
174
- },
175
- "SpellworkTag": {
176
- "enum": [
177
- "Spell",
178
- "Ritual"
179
- ]
180
- },
181
- "LiturgyTag": {
182
- "enum": [
183
- "LiturgicalChant",
184
- "Ceremony"
185
- ]
186
- },
187
- "MagicalActionTag": {
188
- "enum": [
189
- "Spell",
190
- "Ritual",
191
- "Curse",
192
- "ElvenMagicalSong",
193
- "DominationRitual",
194
- "MagicalMelody",
195
- "MagicalDance",
196
- "JesterTrick",
197
- "AnimistPower",
198
- "GeodeRitual",
199
- "ZibiljaRitual"
200
- ]
5
+ "PublicationIdentifier": {
6
+ "type": "object",
7
+ "properties": {
8
+ "tag": {
9
+ "const": "Publication"
10
+ },
11
+ "publication": {
12
+ "description": "The publication’s identifier.",
13
+ "type": "integer",
14
+ "minimum": 1
15
+ }
16
+ },
17
+ "required": [
18
+ "tag",
19
+ "publication"
20
+ ],
21
+ "additionalProperties": false
22
+ },
23
+ "ExperienceLevelIdentifier": {
24
+ "type": "object",
25
+ "properties": {
26
+ "tag": {
27
+ "const": "ExperienceLevel"
28
+ },
29
+ "experience_level": {
30
+ "description": "The experience level’s identifier.",
31
+ "type": "integer",
32
+ "minimum": 1
33
+ }
34
+ },
35
+ "required": [
36
+ "tag",
37
+ "experience_level"
38
+ ],
39
+ "additionalProperties": false
40
+ },
41
+ "CoreRuleIdentifier": {
42
+ "type": "object",
43
+ "properties": {
44
+ "tag": {
45
+ "const": "CoreRule"
46
+ },
47
+ "core_rule": {
48
+ "description": "The core rule’s identifier.",
49
+ "type": "integer",
50
+ "minimum": 1
51
+ }
52
+ },
53
+ "required": [
54
+ "tag",
55
+ "core_rule"
56
+ ],
57
+ "additionalProperties": false
58
+ },
59
+ "FocusRuleIdentifier": {
60
+ "type": "object",
61
+ "properties": {
62
+ "tag": {
63
+ "const": "FocusRule"
64
+ },
65
+ "focus_rule": {
66
+ "description": "The focus rule’s identifier.",
67
+ "type": "integer",
68
+ "minimum": 1
69
+ }
70
+ },
71
+ "required": [
72
+ "tag",
73
+ "focus_rule"
74
+ ],
75
+ "additionalProperties": false
76
+ },
77
+ "SubjectIdentifier": {
78
+ "type": "object",
79
+ "properties": {
80
+ "tag": {
81
+ "const": "Subject"
82
+ },
83
+ "focus_rule": {
84
+ "description": "The focus rule subject’s identifier.",
85
+ "type": "integer",
86
+ "minimum": 1
87
+ }
88
+ },
89
+ "required": [
90
+ "tag",
91
+ "focus_rule"
92
+ ],
93
+ "additionalProperties": false
94
+ },
95
+ "OptionalRuleIdentifier": {
96
+ "type": "object",
97
+ "properties": {
98
+ "tag": {
99
+ "const": "OptionalRule"
100
+ },
101
+ "optional_rule": {
102
+ "description": "The optional rule’s identifier.",
103
+ "type": "integer",
104
+ "minimum": 1
105
+ }
106
+ },
107
+ "required": [
108
+ "tag",
109
+ "optional_rule"
110
+ ],
111
+ "additionalProperties": false
112
+ },
113
+ "RaceIdentifier": {
114
+ "type": "object",
115
+ "properties": {
116
+ "tag": {
117
+ "const": "Race"
118
+ },
119
+ "race": {
120
+ "description": "The race’s identifier.",
121
+ "type": "integer",
122
+ "minimum": 1
123
+ }
124
+ },
125
+ "required": [
126
+ "tag",
127
+ "race"
128
+ ],
129
+ "additionalProperties": false
130
+ },
131
+ "CultureIdentifier": {
132
+ "type": "object",
133
+ "properties": {
134
+ "tag": {
135
+ "const": "Culture"
136
+ },
137
+ "culture": {
138
+ "description": "The culture’s identifier.",
139
+ "type": "integer",
140
+ "minimum": 1
141
+ }
142
+ },
143
+ "required": [
144
+ "tag",
145
+ "culture"
146
+ ],
147
+ "additionalProperties": false
148
+ },
149
+ "ProfessionIdentifier": {
150
+ "type": "object",
151
+ "properties": {
152
+ "tag": {
153
+ "const": "Profession"
154
+ },
155
+ "profession": {
156
+ "description": "The profession’s identifier.",
157
+ "type": "integer",
158
+ "minimum": 1
159
+ }
160
+ },
161
+ "required": [
162
+ "tag",
163
+ "profession"
164
+ ],
165
+ "additionalProperties": false
166
+ },
167
+ "ProfessionVariantIdentifier": {
168
+ "type": "object",
169
+ "properties": {
170
+ "tag": {
171
+ "const": "ProfessionVariant"
172
+ },
173
+ "profession_variant": {
174
+ "description": "The profession variant’s identifier.",
175
+ "type": "integer",
176
+ "minimum": 1
177
+ }
178
+ },
179
+ "required": [
180
+ "tag",
181
+ "profession_variant"
182
+ ],
183
+ "additionalProperties": false
184
+ },
185
+ "CurriculumIdentifier": {
186
+ "type": "object",
187
+ "properties": {
188
+ "tag": {
189
+ "const": "Curriculum"
190
+ },
191
+ "curriculum": {
192
+ "description": "The curriculum’s identifier.",
193
+ "type": "integer",
194
+ "minimum": 1
195
+ }
196
+ },
197
+ "required": [
198
+ "tag",
199
+ "curriculum"
200
+ ],
201
+ "additionalProperties": false
202
+ },
203
+ "GuidelineIdentifier": {
204
+ "type": "object",
205
+ "properties": {
206
+ "tag": {
207
+ "const": "Guideline"
208
+ },
209
+ "guideline": {
210
+ "description": "The guideline’s identifier.",
211
+ "type": "integer",
212
+ "minimum": 1
213
+ }
214
+ },
215
+ "required": [
216
+ "tag",
217
+ "guideline"
218
+ ],
219
+ "additionalProperties": false
220
+ },
221
+ "AdvantageIdentifier": {
222
+ "type": "object",
223
+ "properties": {
224
+ "tag": {
225
+ "const": "Advantage"
226
+ },
227
+ "advantage": {
228
+ "description": "The advantage’s identifier.",
229
+ "type": "integer",
230
+ "minimum": 1
231
+ }
232
+ },
233
+ "required": [
234
+ "tag",
235
+ "advantage"
236
+ ],
237
+ "additionalProperties": false
238
+ },
239
+ "DisadvantageIdentifier": {
240
+ "type": "object",
241
+ "properties": {
242
+ "tag": {
243
+ "const": "Disadvantage"
244
+ },
245
+ "disadvantage": {
246
+ "description": "The disadvantage’s identifier.",
247
+ "type": "integer",
248
+ "minimum": 1
249
+ }
250
+ },
251
+ "required": [
252
+ "tag",
253
+ "disadvantage"
254
+ ],
255
+ "additionalProperties": false
256
+ },
257
+ "GeneralSpecialAbilityIdentifier": {
258
+ "type": "object",
259
+ "properties": {
260
+ "tag": {
261
+ "const": "GeneralSpecialAbility"
262
+ },
263
+ "general_special_ability": {
264
+ "description": "The general special ability’s identifier.",
265
+ "type": "integer",
266
+ "minimum": 1
267
+ }
268
+ },
269
+ "required": [
270
+ "tag",
271
+ "general_special_ability"
272
+ ],
273
+ "additionalProperties": false
274
+ },
275
+ "FatePointSpecialAbilityIdentifier": {
276
+ "type": "object",
277
+ "properties": {
278
+ "tag": {
279
+ "const": "FatePointSpecialAbility"
280
+ },
281
+ "fate_point_special_ability": {
282
+ "description": "The fate point special ability’s identifier.",
283
+ "type": "integer",
284
+ "minimum": 1
285
+ }
286
+ },
287
+ "required": [
288
+ "tag",
289
+ "fate_point_special_ability"
290
+ ],
291
+ "additionalProperties": false
292
+ },
293
+ "CombatSpecialAbilityIdentifier": {
294
+ "type": "object",
295
+ "properties": {
296
+ "tag": {
297
+ "const": "CombatSpecialAbility"
298
+ },
299
+ "combat_special_ability": {
300
+ "description": "The combat special ability’s identifier.",
301
+ "type": "integer",
302
+ "minimum": 1
303
+ }
304
+ },
305
+ "required": [
306
+ "tag",
307
+ "combat_special_ability"
308
+ ],
309
+ "additionalProperties": false
310
+ },
311
+ "MagicalSpecialAbilityIdentifier": {
312
+ "type": "object",
313
+ "properties": {
314
+ "tag": {
315
+ "const": "MagicalSpecialAbility"
316
+ },
317
+ "magical_special_ability": {
318
+ "description": "The magical special ability’s identifier.",
319
+ "type": "integer",
320
+ "minimum": 1
321
+ }
322
+ },
323
+ "required": [
324
+ "tag",
325
+ "magical_special_ability"
326
+ ],
327
+ "additionalProperties": false
328
+ },
329
+ "StaffEnchantmentIdentifier": {
330
+ "type": "object",
331
+ "properties": {
332
+ "tag": {
333
+ "const": "StaffEnchantment"
334
+ },
335
+ "staff_enchantment": {
336
+ "description": "The staff enchantment’s identifier.",
337
+ "type": "integer",
338
+ "minimum": 1
339
+ }
340
+ },
341
+ "required": [
342
+ "tag",
343
+ "staff_enchantment"
344
+ ],
345
+ "additionalProperties": false
346
+ },
347
+ "FamiliarSpecialAbilityIdentifier": {
348
+ "type": "object",
349
+ "properties": {
350
+ "tag": {
351
+ "const": "FamiliarSpecialAbility"
352
+ },
353
+ "familiar_special_ability": {
354
+ "description": "The familiar special ability’s identifier.",
355
+ "type": "integer",
356
+ "minimum": 1
357
+ }
358
+ },
359
+ "required": [
360
+ "tag",
361
+ "familiar_special_ability"
362
+ ],
363
+ "additionalProperties": false
364
+ },
365
+ "KarmaSpecialAbilityIdentifier": {
366
+ "type": "object",
367
+ "properties": {
368
+ "tag": {
369
+ "const": "KarmaSpecialAbility"
370
+ },
371
+ "karma_special_ability": {
372
+ "description": "The karma special ability’s identifier.",
373
+ "type": "integer",
374
+ "minimum": 1
375
+ }
376
+ },
377
+ "required": [
378
+ "tag",
379
+ "karma_special_ability"
380
+ ],
381
+ "additionalProperties": false
382
+ },
383
+ "ProtectiveWardingCircleSpecialAbilityIdentifier": {
384
+ "type": "object",
385
+ "properties": {
386
+ "tag": {
387
+ "const": "ProtectiveWardingCircleSpecialAbility"
388
+ },
389
+ "protective_warding_circle_special_ability": {
390
+ "description": "The protective warding circle special ability’s identifier.",
391
+ "type": "integer",
392
+ "minimum": 1
393
+ }
394
+ },
395
+ "required": [
396
+ "tag",
397
+ "protective_warding_circle_special_ability"
398
+ ],
399
+ "additionalProperties": false
400
+ },
401
+ "CombatStyleSpecialAbilityIdentifier": {
402
+ "type": "object",
403
+ "properties": {
404
+ "tag": {
405
+ "const": "CombatStyleSpecialAbility"
406
+ },
407
+ "combat_style_special_ability": {
408
+ "description": "The combat style special ability’s identifier.",
409
+ "type": "integer",
410
+ "minimum": 1
411
+ }
412
+ },
413
+ "required": [
414
+ "tag",
415
+ "combat_style_special_ability"
416
+ ],
417
+ "additionalProperties": false
418
+ },
419
+ "AdvancedCombatSpecialAbilityIdentifier": {
420
+ "type": "object",
421
+ "properties": {
422
+ "tag": {
423
+ "const": "AdvancedCombatSpecialAbility"
424
+ },
425
+ "advanced_combat_special_ability": {
426
+ "description": "The advanced combat special ability’s identifier.",
427
+ "type": "integer",
428
+ "minimum": 1
429
+ }
430
+ },
431
+ "required": [
432
+ "tag",
433
+ "advanced_combat_special_ability"
434
+ ],
435
+ "additionalProperties": false
436
+ },
437
+ "CommandSpecialAbilityIdentifier": {
438
+ "type": "object",
439
+ "properties": {
440
+ "tag": {
441
+ "const": "CommandSpecialAbility"
442
+ },
443
+ "command_special_ability": {
444
+ "description": "The command special ability’s identifier.",
445
+ "type": "integer",
446
+ "minimum": 1
447
+ }
448
+ },
449
+ "required": [
450
+ "tag",
451
+ "command_special_ability"
452
+ ],
453
+ "additionalProperties": false
454
+ },
455
+ "MagicStyleSpecialAbilityIdentifier": {
456
+ "type": "object",
457
+ "properties": {
458
+ "tag": {
459
+ "const": "MagicStyleSpecialAbility"
460
+ },
461
+ "magic_style_special_ability": {
462
+ "description": "The magic style special ability’s identifier.",
463
+ "type": "integer",
464
+ "minimum": 1
465
+ }
466
+ },
467
+ "required": [
468
+ "tag",
469
+ "magic_style_special_ability"
470
+ ],
471
+ "additionalProperties": false
472
+ },
473
+ "AdvancedMagicalSpecialAbilityIdentifier": {
474
+ "type": "object",
475
+ "properties": {
476
+ "tag": {
477
+ "const": "AdvancedMagicalSpecialAbility"
478
+ },
479
+ "advanced_magical_special_ability": {
480
+ "description": "The advanced magical special ability’s identifier.",
481
+ "type": "integer",
482
+ "minimum": 1
483
+ }
484
+ },
485
+ "required": [
486
+ "tag",
487
+ "advanced_magical_special_ability"
488
+ ],
489
+ "additionalProperties": false
490
+ },
491
+ "SpellSwordEnchantmentIdentifier": {
492
+ "type": "object",
493
+ "properties": {
494
+ "tag": {
495
+ "const": "SpellSwordEnchantment"
496
+ },
497
+ "spell_sword_enchantment": {
498
+ "description": "The spell sword enchantment’s identifier.",
499
+ "type": "integer",
500
+ "minimum": 1
501
+ }
502
+ },
503
+ "required": [
504
+ "tag",
505
+ "spell_sword_enchantment"
506
+ ],
507
+ "additionalProperties": false
508
+ },
509
+ "DaggerRitualIdentifier": {
510
+ "type": "object",
511
+ "properties": {
512
+ "tag": {
513
+ "const": "DaggerRitual"
514
+ },
515
+ "dagger_ritual": {
516
+ "description": "The dagger ritual’s identifier.",
517
+ "type": "integer",
518
+ "minimum": 1
519
+ }
520
+ },
521
+ "required": [
522
+ "tag",
523
+ "dagger_ritual"
524
+ ],
525
+ "additionalProperties": false
526
+ },
527
+ "InstrumentEnchantmentIdentifier": {
528
+ "type": "object",
529
+ "properties": {
530
+ "tag": {
531
+ "const": "InstrumentEnchantment"
532
+ },
533
+ "instrument_enchantment": {
534
+ "description": "The instrument enchantment’s identifier.",
535
+ "type": "integer",
536
+ "minimum": 1
537
+ }
538
+ },
539
+ "required": [
540
+ "tag",
541
+ "instrument_enchantment"
542
+ ],
543
+ "additionalProperties": false
544
+ },
545
+ "AttireEnchantmentIdentifier": {
546
+ "type": "object",
547
+ "properties": {
548
+ "tag": {
549
+ "const": "AttireEnchantment"
550
+ },
551
+ "attire_enchantment": {
552
+ "description": "The attire enchantment’s identifier.",
553
+ "type": "integer",
554
+ "minimum": 1
555
+ }
556
+ },
557
+ "required": [
558
+ "tag",
559
+ "attire_enchantment"
560
+ ],
561
+ "additionalProperties": false
562
+ },
563
+ "OrbEnchantmentIdentifier": {
564
+ "type": "object",
565
+ "properties": {
566
+ "tag": {
567
+ "const": "OrbEnchantment"
568
+ },
569
+ "orb_enchantment": {
570
+ "description": "The orb enchantment’s identifier.",
571
+ "type": "integer",
572
+ "minimum": 1
573
+ }
574
+ },
575
+ "required": [
576
+ "tag",
577
+ "orb_enchantment"
578
+ ],
579
+ "additionalProperties": false
580
+ },
581
+ "WandEnchantmentIdentifier": {
582
+ "type": "object",
583
+ "properties": {
584
+ "tag": {
585
+ "const": "WandEnchantment"
586
+ },
587
+ "wand_enchantment": {
588
+ "description": "The wand enchantment’s identifier.",
589
+ "type": "integer",
590
+ "minimum": 1
591
+ }
592
+ },
593
+ "required": [
594
+ "tag",
595
+ "wand_enchantment"
596
+ ],
597
+ "additionalProperties": false
598
+ },
599
+ "BrawlingSpecialAbilityIdentifier": {
600
+ "type": "object",
601
+ "properties": {
602
+ "tag": {
603
+ "const": "BrawlingSpecialAbility"
604
+ },
605
+ "brawling_special_ability": {
606
+ "description": "The brawling special ability’s identifier.",
607
+ "type": "integer",
608
+ "minimum": 1
609
+ }
610
+ },
611
+ "required": [
612
+ "tag",
613
+ "brawling_special_ability"
614
+ ],
615
+ "additionalProperties": false
616
+ },
617
+ "AncestorGlyphIdentifier": {
618
+ "type": "object",
619
+ "properties": {
620
+ "tag": {
621
+ "const": "AncestorGlyph"
622
+ },
623
+ "ancestor_glyph": {
624
+ "description": "The ancestor glyph’s identifier.",
625
+ "type": "integer",
626
+ "minimum": 1
627
+ }
628
+ },
629
+ "required": [
630
+ "tag",
631
+ "ancestor_glyph"
632
+ ],
633
+ "additionalProperties": false
634
+ },
635
+ "CeremonialItemSpecialAbilityIdentifier": {
636
+ "type": "object",
637
+ "properties": {
638
+ "tag": {
639
+ "const": "CeremonialItemSpecialAbility"
640
+ },
641
+ "ceremonial_item_special_ability": {
642
+ "description": "The ceremonial item special ability’s identifier.",
643
+ "type": "integer",
644
+ "minimum": 1
645
+ }
646
+ },
647
+ "required": [
648
+ "tag",
649
+ "ceremonial_item_special_ability"
650
+ ],
651
+ "additionalProperties": false
652
+ },
653
+ "SermonIdentifier": {
654
+ "type": "object",
655
+ "properties": {
656
+ "tag": {
657
+ "const": "Sermon"
658
+ },
659
+ "sermon": {
660
+ "description": "The sermon’s identifier.",
661
+ "type": "integer",
662
+ "minimum": 1
663
+ }
664
+ },
665
+ "required": [
666
+ "tag",
667
+ "sermon"
668
+ ],
669
+ "additionalProperties": false
670
+ },
671
+ "LiturgicalStyleSpecialAbilityIdentifier": {
672
+ "type": "object",
673
+ "properties": {
674
+ "tag": {
675
+ "const": "LiturgicalStyleSpecialAbility"
676
+ },
677
+ "liturgical_style_special_ability": {
678
+ "description": "The liturgical style special ability’s identifier.",
679
+ "type": "integer",
680
+ "minimum": 1
681
+ }
682
+ },
683
+ "required": [
684
+ "tag",
685
+ "liturgical_style_special_ability"
686
+ ],
687
+ "additionalProperties": false
688
+ },
689
+ "AdvancedKarmaSpecialAbilityIdentifier": {
690
+ "type": "object",
691
+ "properties": {
692
+ "tag": {
693
+ "const": "AdvancedKarmaSpecialAbility"
694
+ },
695
+ "advanced_karma_special_ability": {
696
+ "description": "The advanced karma special ability’s identifier.",
697
+ "type": "integer",
698
+ "minimum": 1
699
+ }
700
+ },
701
+ "required": [
702
+ "tag",
703
+ "advanced_karma_special_ability"
704
+ ],
705
+ "additionalProperties": false
706
+ },
707
+ "VisionIdentifier": {
708
+ "type": "object",
709
+ "properties": {
710
+ "tag": {
711
+ "const": "Vision"
712
+ },
713
+ "vision": {
714
+ "description": "The vision’s identifier.",
715
+ "type": "integer",
716
+ "minimum": 1
717
+ }
718
+ },
719
+ "required": [
720
+ "tag",
721
+ "vision"
722
+ ],
723
+ "additionalProperties": false
724
+ },
725
+ "MagicalTraditionIdentifier": {
726
+ "type": "object",
727
+ "properties": {
728
+ "tag": {
729
+ "const": "MagicalTradition"
730
+ },
731
+ "magical_tradition": {
732
+ "description": "The magical tradition’s identifier.",
733
+ "type": "integer",
734
+ "minimum": 1
735
+ }
736
+ },
737
+ "required": [
738
+ "tag",
739
+ "magical_tradition"
740
+ ],
741
+ "additionalProperties": false
742
+ },
743
+ "BlessedTraditionIdentifier": {
744
+ "type": "object",
745
+ "properties": {
746
+ "tag": {
747
+ "const": "BlessedTradition"
748
+ },
749
+ "blessed_tradition": {
750
+ "description": "The blessed tradition’s identifier.",
751
+ "type": "integer",
752
+ "minimum": 1
753
+ }
754
+ },
755
+ "required": [
756
+ "tag",
757
+ "blessed_tradition"
758
+ ],
759
+ "additionalProperties": false
760
+ },
761
+ "PactGiftIdentifier": {
762
+ "type": "object",
763
+ "properties": {
764
+ "tag": {
765
+ "const": "PactGift"
766
+ },
767
+ "pact_gift": {
768
+ "description": "The pact gift’s identifier.",
769
+ "type": "integer",
770
+ "minimum": 1
771
+ }
772
+ },
773
+ "required": [
774
+ "tag",
775
+ "pact_gift"
776
+ ],
777
+ "additionalProperties": false
778
+ },
779
+ "SikaryanDrainSpecialAbilityIdentifier": {
780
+ "type": "object",
781
+ "properties": {
782
+ "tag": {
783
+ "const": "SikaryanDrainSpecialAbility"
784
+ },
785
+ "sikaryan_drain_special_ability": {
786
+ "description": "The sikaryan drain special ability’s identifier.",
787
+ "type": "integer",
788
+ "minimum": 1
789
+ }
790
+ },
791
+ "required": [
792
+ "tag",
793
+ "sikaryan_drain_special_ability"
794
+ ],
795
+ "additionalProperties": false
796
+ },
797
+ "LycantropicGiftIdentifier": {
798
+ "type": "object",
799
+ "properties": {
800
+ "tag": {
801
+ "const": "LycantropicGift"
802
+ },
803
+ "lycantropic_gift": {
804
+ "description": "The lycantropic gift’s identifier.",
805
+ "type": "integer",
806
+ "minimum": 1
807
+ }
808
+ },
809
+ "required": [
810
+ "tag",
811
+ "lycantropic_gift"
812
+ ],
813
+ "additionalProperties": false
814
+ },
815
+ "SkillStyleSpecialAbilityIdentifier": {
816
+ "type": "object",
817
+ "properties": {
818
+ "tag": {
819
+ "const": "SkillStyleSpecialAbility"
820
+ },
821
+ "skill_style_special_ability": {
822
+ "description": "The skill style special ability’s identifier.",
823
+ "type": "integer",
824
+ "minimum": 1
825
+ }
826
+ },
827
+ "required": [
828
+ "tag",
829
+ "skill_style_special_ability"
830
+ ],
831
+ "additionalProperties": false
832
+ },
833
+ "AdvancedSkillSpecialAbilityIdentifier": {
834
+ "type": "object",
835
+ "properties": {
836
+ "tag": {
837
+ "const": "AdvancedSkillSpecialAbility"
838
+ },
839
+ "advanced_skill_special_ability": {
840
+ "description": "The advanced skill special ability’s identifier.",
841
+ "type": "integer",
842
+ "minimum": 1
843
+ }
844
+ },
845
+ "required": [
846
+ "tag",
847
+ "advanced_skill_special_ability"
848
+ ],
849
+ "additionalProperties": false
850
+ },
851
+ "ArcaneOrbEnchantmentIdentifier": {
852
+ "type": "object",
853
+ "properties": {
854
+ "tag": {
855
+ "const": "ArcaneOrbEnchantment"
856
+ },
857
+ "arcane_orb_enchantment": {
858
+ "description": "The arcane orb enchantment’s identifier.",
859
+ "type": "integer",
860
+ "minimum": 1
861
+ }
862
+ },
863
+ "required": [
864
+ "tag",
865
+ "arcane_orb_enchantment"
866
+ ],
867
+ "additionalProperties": false
868
+ },
869
+ "CauldronEnchantmentIdentifier": {
870
+ "type": "object",
871
+ "properties": {
872
+ "tag": {
873
+ "const": "CauldronEnchantment"
874
+ },
875
+ "cauldron_enchantment": {
876
+ "description": "The cauldron enchantment’s identifier.",
877
+ "type": "integer",
878
+ "minimum": 1
879
+ }
880
+ },
881
+ "required": [
882
+ "tag",
883
+ "cauldron_enchantment"
884
+ ],
885
+ "additionalProperties": false
886
+ },
887
+ "FoolsHatEnchantmentIdentifier": {
888
+ "type": "object",
889
+ "properties": {
890
+ "tag": {
891
+ "const": "FoolsHatEnchantment"
892
+ },
893
+ "fools_hat_enchantment": {
894
+ "description": "The fools hat enchantment’s identifier.",
895
+ "type": "integer",
896
+ "minimum": 1
897
+ }
898
+ },
899
+ "required": [
900
+ "tag",
901
+ "fools_hat_enchantment"
902
+ ],
903
+ "additionalProperties": false
904
+ },
905
+ "ToyEnchantmentIdentifier": {
906
+ "type": "object",
907
+ "properties": {
908
+ "tag": {
909
+ "const": "ToyEnchantment"
910
+ },
911
+ "toy_enchantment": {
912
+ "description": "The toy enchantment’s identifier.",
913
+ "type": "integer",
914
+ "minimum": 1
915
+ }
916
+ },
917
+ "required": [
918
+ "tag",
919
+ "toy_enchantment"
920
+ ],
921
+ "additionalProperties": false
922
+ },
923
+ "BowlEnchantmentIdentifier": {
924
+ "type": "object",
925
+ "properties": {
926
+ "tag": {
927
+ "const": "BowlEnchantment"
928
+ },
929
+ "bowl_enchantment": {
930
+ "description": "The bowl enchantment’s identifier.",
931
+ "type": "integer",
932
+ "minimum": 1
933
+ }
934
+ },
935
+ "required": [
936
+ "tag",
937
+ "bowl_enchantment"
938
+ ],
939
+ "additionalProperties": false
940
+ },
941
+ "FatePointSexSpecialAbilityIdentifier": {
942
+ "type": "object",
943
+ "properties": {
944
+ "tag": {
945
+ "const": "FatePointSexSpecialAbility"
946
+ },
947
+ "fate_point_sex_special_ability": {
948
+ "description": "The fate point sex special ability’s identifier.",
949
+ "type": "integer",
950
+ "minimum": 1
951
+ }
952
+ },
953
+ "required": [
954
+ "tag",
955
+ "fate_point_sex_special_ability"
956
+ ],
957
+ "additionalProperties": false
958
+ },
959
+ "SexSpecialAbilityIdentifier": {
960
+ "type": "object",
961
+ "properties": {
962
+ "tag": {
963
+ "const": "SexSpecialAbility"
964
+ },
965
+ "sex_special_ability": {
966
+ "description": "The sex special ability’s identifier.",
967
+ "type": "integer",
968
+ "minimum": 1
969
+ }
970
+ },
971
+ "required": [
972
+ "tag",
973
+ "sex_special_ability"
974
+ ],
975
+ "additionalProperties": false
976
+ },
977
+ "WeaponEnchantmentIdentifier": {
978
+ "type": "object",
979
+ "properties": {
980
+ "tag": {
981
+ "const": "WeaponEnchantment"
982
+ },
983
+ "weapon_enchantment": {
984
+ "description": "The weapon enchantment’s identifier.",
985
+ "type": "integer",
986
+ "minimum": 1
987
+ }
988
+ },
989
+ "required": [
990
+ "tag",
991
+ "weapon_enchantment"
992
+ ],
993
+ "additionalProperties": false
994
+ },
995
+ "SickleRitualIdentifier": {
996
+ "type": "object",
997
+ "properties": {
998
+ "tag": {
999
+ "const": "SickleRitual"
1000
+ },
1001
+ "sickle_ritual": {
1002
+ "description": "The sickle ritual’s identifier.",
1003
+ "type": "integer",
1004
+ "minimum": 1
1005
+ }
1006
+ },
1007
+ "required": [
1008
+ "tag",
1009
+ "sickle_ritual"
1010
+ ],
1011
+ "additionalProperties": false
1012
+ },
1013
+ "RingEnchantmentIdentifier": {
1014
+ "type": "object",
1015
+ "properties": {
1016
+ "tag": {
1017
+ "const": "RingEnchantment"
1018
+ },
1019
+ "ring_enchantment": {
1020
+ "description": "The ring enchantment’s identifier.",
1021
+ "type": "integer",
1022
+ "minimum": 1
1023
+ }
1024
+ },
1025
+ "required": [
1026
+ "tag",
1027
+ "ring_enchantment"
1028
+ ],
1029
+ "additionalProperties": false
1030
+ },
1031
+ "ChronicleEnchantmentIdentifier": {
1032
+ "type": "object",
1033
+ "properties": {
1034
+ "tag": {
1035
+ "const": "ChronicleEnchantment"
1036
+ },
1037
+ "chronicle_enchantment": {
1038
+ "description": "The chronicle enchantment’s identifier.",
1039
+ "type": "integer",
1040
+ "minimum": 1
1041
+ }
1042
+ },
1043
+ "required": [
1044
+ "tag",
1045
+ "chronicle_enchantment"
1046
+ ],
1047
+ "additionalProperties": false
1048
+ },
1049
+ "LanguageIdentifier": {
1050
+ "type": "object",
1051
+ "properties": {
1052
+ "tag": {
1053
+ "const": "Language"
1054
+ },
1055
+ "language": {
1056
+ "description": "The language’s identifier.",
1057
+ "type": "integer",
1058
+ "minimum": 1
1059
+ }
1060
+ },
1061
+ "required": [
1062
+ "tag",
1063
+ "language"
1064
+ ],
1065
+ "additionalProperties": false
1066
+ },
1067
+ "ScriptIdentifier": {
1068
+ "type": "object",
1069
+ "properties": {
1070
+ "tag": {
1071
+ "const": "Script"
1072
+ },
1073
+ "script": {
1074
+ "description": "The script’s identifier.",
1075
+ "type": "integer",
1076
+ "minimum": 1
1077
+ }
1078
+ },
1079
+ "required": [
1080
+ "tag",
1081
+ "script"
1082
+ ],
1083
+ "additionalProperties": false
1084
+ },
1085
+ "ContinentIdentifier": {
1086
+ "type": "object",
1087
+ "properties": {
1088
+ "tag": {
1089
+ "const": "Continent"
1090
+ },
1091
+ "continent": {
1092
+ "description": "The continent’s identifier.",
1093
+ "type": "integer",
1094
+ "maximum": 3,
1095
+ "minimum": 1
1096
+ }
1097
+ },
1098
+ "required": [
1099
+ "tag",
1100
+ "continent"
1101
+ ],
1102
+ "additionalProperties": false
1103
+ },
1104
+ "SocialStatusIdentifier": {
1105
+ "type": "object",
1106
+ "properties": {
1107
+ "tag": {
1108
+ "const": "SocialStatus"
1109
+ },
1110
+ "social_status": {
1111
+ "description": "The social status’s identifier.",
1112
+ "type": "integer",
1113
+ "minimum": 1
1114
+ }
1115
+ },
1116
+ "required": [
1117
+ "tag",
1118
+ "social_status"
1119
+ ],
1120
+ "additionalProperties": false
1121
+ },
1122
+ "AttributeIdentifier": {
1123
+ "type": "object",
1124
+ "properties": {
1125
+ "tag": {
1126
+ "const": "Attribute"
1127
+ },
1128
+ "attribute": {
1129
+ "description": "The attribute’s identifier.",
1130
+ "type": "integer",
1131
+ "maximum": 8,
1132
+ "minimum": 1
1133
+ }
1134
+ },
1135
+ "required": [
1136
+ "tag",
1137
+ "attribute"
1138
+ ],
1139
+ "additionalProperties": false
1140
+ },
1141
+ "SkillIdentifier": {
1142
+ "type": "object",
1143
+ "properties": {
1144
+ "tag": {
1145
+ "const": "Skill"
1146
+ },
1147
+ "skill": {
1148
+ "type": "number"
1149
+ }
1150
+ },
1151
+ "required": [
1152
+ "tag",
1153
+ "skill"
1154
+ ],
1155
+ "additionalProperties": false
1156
+ },
1157
+ "SkillGroupIdentifier": {
1158
+ "type": "object",
1159
+ "properties": {
1160
+ "tag": {
1161
+ "const": "SkillGroup"
1162
+ },
1163
+ "skill_group": {
1164
+ "description": "The skill group’s identifier.",
1165
+ "type": "integer",
1166
+ "maximum": 5,
1167
+ "minimum": 1
1168
+ }
1169
+ },
1170
+ "required": [
1171
+ "tag",
1172
+ "skill_group"
1173
+ ],
1174
+ "additionalProperties": false
1175
+ },
1176
+ "CloseCombatTechniqueIdentifier": {
1177
+ "type": "object",
1178
+ "properties": {
1179
+ "tag": {
1180
+ "const": "CloseCombatTechnique"
1181
+ },
1182
+ "close_combat_technique": {
1183
+ "description": "The close combat technique’s identifier.",
1184
+ "type": "integer",
1185
+ "minimum": 1
1186
+ }
1187
+ },
1188
+ "required": [
1189
+ "tag",
1190
+ "close_combat_technique"
1191
+ ],
1192
+ "additionalProperties": false
1193
+ },
1194
+ "RangedCombatTechniqueIdentifier": {
1195
+ "type": "object",
1196
+ "properties": {
1197
+ "tag": {
1198
+ "const": "RangedCombatTechnique"
1199
+ },
1200
+ "ranged_combat_technique": {
1201
+ "description": "The ranged combat technique’s identifier.",
1202
+ "type": "integer",
1203
+ "minimum": 1
1204
+ }
1205
+ },
1206
+ "required": [
1207
+ "tag",
1208
+ "ranged_combat_technique"
1209
+ ],
1210
+ "additionalProperties": false
1211
+ },
1212
+ "SpellIdentifier": {
1213
+ "type": "object",
1214
+ "properties": {
1215
+ "tag": {
1216
+ "const": "Spell"
1217
+ },
1218
+ "spell": {
1219
+ "description": "The spell’s identifier.",
1220
+ "type": "integer",
1221
+ "minimum": 1
1222
+ }
1223
+ },
1224
+ "required": [
1225
+ "tag",
1226
+ "spell"
1227
+ ],
1228
+ "additionalProperties": false
1229
+ },
1230
+ "RitualIdentifier": {
1231
+ "type": "object",
1232
+ "properties": {
1233
+ "tag": {
1234
+ "const": "Ritual"
1235
+ },
1236
+ "ritual": {
1237
+ "description": "The ritual’s identifier.",
1238
+ "type": "integer",
1239
+ "minimum": 1
1240
+ }
1241
+ },
1242
+ "required": [
1243
+ "tag",
1244
+ "ritual"
1245
+ ],
1246
+ "additionalProperties": false
1247
+ },
1248
+ "CantripIdentifier": {
1249
+ "type": "object",
1250
+ "properties": {
1251
+ "tag": {
1252
+ "const": "Cantrip"
1253
+ },
1254
+ "cantrip": {
1255
+ "description": "The cantrip’s identifier.",
1256
+ "type": "integer",
1257
+ "minimum": 1
1258
+ }
1259
+ },
1260
+ "required": [
1261
+ "tag",
1262
+ "cantrip"
1263
+ ],
1264
+ "additionalProperties": false
1265
+ },
1266
+ "PropertyIdentifier": {
1267
+ "type": "object",
1268
+ "properties": {
1269
+ "tag": {
1270
+ "const": "Property"
1271
+ },
1272
+ "property": {
1273
+ "description": "The property’s identifier.",
1274
+ "type": "integer",
1275
+ "minimum": 1
1276
+ }
1277
+ },
1278
+ "required": [
1279
+ "tag",
1280
+ "property"
1281
+ ],
1282
+ "additionalProperties": false
1283
+ },
1284
+ "LiturgicalChantIdentifier": {
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "tag": {
1288
+ "const": "LiturgicalChant"
1289
+ },
1290
+ "liturgical_chant": {
1291
+ "description": "The liturgical chant’s identifier.",
1292
+ "type": "integer",
1293
+ "minimum": 1
1294
+ }
1295
+ },
1296
+ "required": [
1297
+ "tag",
1298
+ "liturgical_chant"
1299
+ ],
1300
+ "additionalProperties": false
1301
+ },
1302
+ "CeremonyIdentifier": {
1303
+ "type": "object",
1304
+ "properties": {
1305
+ "tag": {
1306
+ "const": "Ceremony"
1307
+ },
1308
+ "ceremony": {
1309
+ "description": "The ceremony’s identifier.",
1310
+ "type": "integer",
1311
+ "minimum": 1
1312
+ }
1313
+ },
1314
+ "required": [
1315
+ "tag",
1316
+ "ceremony"
1317
+ ],
1318
+ "additionalProperties": false
1319
+ },
1320
+ "BlessingIdentifier": {
1321
+ "type": "object",
1322
+ "properties": {
1323
+ "tag": {
1324
+ "const": "Blessing"
1325
+ },
1326
+ "blessing": {
1327
+ "description": "The blessing’s identifier.",
1328
+ "type": "integer",
1329
+ "minimum": 1
1330
+ }
1331
+ },
1332
+ "required": [
1333
+ "tag",
1334
+ "blessing"
1335
+ ],
1336
+ "additionalProperties": false
1337
+ },
1338
+ "AspectIdentifier": {
1339
+ "type": "object",
1340
+ "properties": {
1341
+ "tag": {
1342
+ "const": "Aspect"
1343
+ },
1344
+ "aspect": {
1345
+ "description": "The aspect’s identifier.",
1346
+ "type": "integer",
1347
+ "minimum": 1
1348
+ }
1349
+ },
1350
+ "required": [
1351
+ "tag",
1352
+ "aspect"
1353
+ ],
1354
+ "additionalProperties": false
1355
+ },
1356
+ "CurseIdentifier": {
1357
+ "type": "object",
1358
+ "properties": {
1359
+ "tag": {
1360
+ "const": "Curse"
1361
+ },
1362
+ "curse": {
1363
+ "description": "The curse’s identifier.",
1364
+ "type": "integer",
1365
+ "minimum": 1
1366
+ }
1367
+ },
1368
+ "required": [
1369
+ "tag",
1370
+ "curse"
1371
+ ],
1372
+ "additionalProperties": false
1373
+ },
1374
+ "ElvenMagicalSongIdentifier": {
1375
+ "type": "object",
1376
+ "properties": {
1377
+ "tag": {
1378
+ "const": "ElvenMagicalSong"
1379
+ },
1380
+ "elven_magical_song": {
1381
+ "description": "The elven magical song’s identifier.",
1382
+ "type": "integer",
1383
+ "minimum": 1
1384
+ }
1385
+ },
1386
+ "required": [
1387
+ "tag",
1388
+ "elven_magical_song"
1389
+ ],
1390
+ "additionalProperties": false
1391
+ },
1392
+ "DominationRitualIdentifier": {
1393
+ "type": "object",
1394
+ "properties": {
1395
+ "tag": {
1396
+ "const": "DominationRitual"
1397
+ },
1398
+ "domination_ritual": {
1399
+ "description": "The domination ritual’s identifier.",
1400
+ "type": "integer",
1401
+ "minimum": 1
1402
+ }
1403
+ },
1404
+ "required": [
1405
+ "tag",
1406
+ "domination_ritual"
1407
+ ],
1408
+ "additionalProperties": false
1409
+ },
1410
+ "MagicalMelodyIdentifier": {
1411
+ "type": "object",
1412
+ "properties": {
1413
+ "tag": {
1414
+ "const": "MagicalMelody"
1415
+ },
1416
+ "magical_melody": {
1417
+ "description": "The magical melody’s identifier.",
1418
+ "type": "integer",
1419
+ "minimum": 1
1420
+ }
1421
+ },
1422
+ "required": [
1423
+ "tag",
1424
+ "magical_melody"
1425
+ ],
1426
+ "additionalProperties": false
1427
+ },
1428
+ "MagicalDanceIdentifier": {
1429
+ "type": "object",
1430
+ "properties": {
1431
+ "tag": {
1432
+ "const": "MagicalDance"
1433
+ },
1434
+ "magical_dance": {
1435
+ "description": "The magical dance’s identifier.",
1436
+ "type": "integer",
1437
+ "minimum": 1
1438
+ }
1439
+ },
1440
+ "required": [
1441
+ "tag",
1442
+ "magical_dance"
1443
+ ],
1444
+ "additionalProperties": false
1445
+ },
1446
+ "JesterTrickIdentifier": {
1447
+ "type": "object",
1448
+ "properties": {
1449
+ "tag": {
1450
+ "const": "JesterTrick"
1451
+ },
1452
+ "jester_trick": {
1453
+ "description": "The jester trick’s identifier.",
1454
+ "type": "integer",
1455
+ "minimum": 1
1456
+ }
1457
+ },
1458
+ "required": [
1459
+ "tag",
1460
+ "jester_trick"
1461
+ ],
1462
+ "additionalProperties": false
1463
+ },
1464
+ "AnimistPowerIdentifier": {
1465
+ "type": "object",
1466
+ "properties": {
1467
+ "tag": {
1468
+ "const": "AnimistPower"
1469
+ },
1470
+ "animist_power": {
1471
+ "description": "The animist power’s identifier.",
1472
+ "type": "integer",
1473
+ "minimum": 1
1474
+ }
1475
+ },
1476
+ "required": [
1477
+ "tag",
1478
+ "animist_power"
1479
+ ],
1480
+ "additionalProperties": false
1481
+ },
1482
+ "GeodeRitualIdentifier": {
1483
+ "type": "object",
1484
+ "properties": {
1485
+ "tag": {
1486
+ "const": "GeodeRitual"
1487
+ },
1488
+ "geode_ritual": {
1489
+ "description": "The geode ritual’s identifier.",
1490
+ "type": "integer",
1491
+ "minimum": 1
1492
+ }
1493
+ },
1494
+ "required": [
1495
+ "tag",
1496
+ "geode_ritual"
1497
+ ],
1498
+ "additionalProperties": false
1499
+ },
1500
+ "ZibiljaRitualIdentifier": {
1501
+ "type": "object",
1502
+ "properties": {
1503
+ "tag": {
1504
+ "const": "ZibiljaRitual"
1505
+ },
1506
+ "zibilja_ritual": {
1507
+ "description": "The zibilja ritual’s identifier.",
1508
+ "type": "integer",
1509
+ "minimum": 1
1510
+ }
1511
+ },
1512
+ "required": [
1513
+ "tag",
1514
+ "zibilja_ritual"
1515
+ ],
1516
+ "additionalProperties": false
1517
+ },
1518
+ "AnimalTypeIdentifier": {
1519
+ "type": "object",
1520
+ "properties": {
1521
+ "tag": {
1522
+ "const": "AnimalType"
1523
+ },
1524
+ "animal_type": {
1525
+ "description": "The animal type’s identifier.",
1526
+ "type": "integer",
1527
+ "minimum": 1
1528
+ }
1529
+ },
1530
+ "required": [
1531
+ "tag",
1532
+ "animal_type"
1533
+ ],
1534
+ "additionalProperties": false
1535
+ },
1536
+ "TargetCategoryIdentifier": {
1537
+ "type": "object",
1538
+ "properties": {
1539
+ "tag": {
1540
+ "const": "TargetCategory"
1541
+ },
1542
+ "target_category": {
1543
+ "description": "The target category’s identifier.",
1544
+ "type": "integer",
1545
+ "maximum": 24,
1546
+ "minimum": 1
1547
+ }
1548
+ },
1549
+ "required": [
1550
+ "tag",
1551
+ "target_category"
1552
+ ],
1553
+ "additionalProperties": false
1554
+ },
1555
+ "GeneralIdentifier": {
1556
+ "type": "object",
1557
+ "properties": {
1558
+ "tag": {
1559
+ "const": "General"
1560
+ },
1561
+ "general": {
1562
+ "description": "The identifier of a general (unspecific) select option.",
1563
+ "type": "integer",
1564
+ "minimum": 1
1565
+ }
1566
+ },
1567
+ "required": [
1568
+ "tag",
1569
+ "general"
1570
+ ],
1571
+ "additionalProperties": false
1572
+ },
1573
+ "ElementIdentifier": {
1574
+ "type": "object",
1575
+ "properties": {
1576
+ "tag": {
1577
+ "const": "Element"
1578
+ },
1579
+ "element": {
1580
+ "description": "The element’s identifier.",
1581
+ "type": "integer",
1582
+ "minimum": 1
1583
+ }
1584
+ },
1585
+ "required": [
1586
+ "tag",
1587
+ "element"
1588
+ ],
1589
+ "additionalProperties": false
1590
+ },
1591
+ "AnimalShapeSizeIdentifier": {
1592
+ "type": "object",
1593
+ "properties": {
1594
+ "tag": {
1595
+ "const": "AnimalShapeSize"
1596
+ },
1597
+ "animal_shape_size": {
1598
+ "description": "The animal shape size’s identifier.",
1599
+ "type": "integer",
1600
+ "minimum": 1
1601
+ }
1602
+ },
1603
+ "required": [
1604
+ "tag",
1605
+ "animal_shape_size"
1606
+ ],
1607
+ "additionalProperties": false
1608
+ },
1609
+ "PatronIdentifier": {
1610
+ "type": "object",
1611
+ "properties": {
1612
+ "tag": {
1613
+ "const": "Patron"
1614
+ },
1615
+ "patron": {
1616
+ "description": "The patron’s identifier.",
1617
+ "type": "integer",
1618
+ "minimum": 1
1619
+ }
1620
+ },
1621
+ "required": [
1622
+ "tag",
1623
+ "patron"
1624
+ ],
1625
+ "additionalProperties": false
1626
+ },
1627
+ "AlchemicumIdentifier": {
1628
+ "type": "object",
1629
+ "properties": {
1630
+ "tag": {
1631
+ "const": "Alchemicum"
1632
+ },
1633
+ "alchemicum": {
1634
+ "description": "The alchemicum’s identifier.",
1635
+ "type": "integer",
1636
+ "minimum": 1
1637
+ }
1638
+ },
1639
+ "required": [
1640
+ "tag",
1641
+ "alchemicum"
1642
+ ],
1643
+ "additionalProperties": false
1644
+ },
1645
+ "AmmunitionIdentifier": {
1646
+ "type": "object",
1647
+ "properties": {
1648
+ "tag": {
1649
+ "const": "Ammunition"
1650
+ },
1651
+ "ammunition": {
1652
+ "description": "The ammunition’s identifier.",
1653
+ "type": "integer",
1654
+ "minimum": 1
1655
+ }
1656
+ },
1657
+ "required": [
1658
+ "tag",
1659
+ "ammunition"
1660
+ ],
1661
+ "additionalProperties": false
1662
+ },
1663
+ "AnimalIdentifier": {
1664
+ "type": "object",
1665
+ "properties": {
1666
+ "tag": {
1667
+ "const": "Animal"
1668
+ },
1669
+ "animal": {
1670
+ "description": "The animal’s identifier.",
1671
+ "type": "integer",
1672
+ "minimum": 1
1673
+ }
1674
+ },
1675
+ "required": [
1676
+ "tag",
1677
+ "animal"
1678
+ ],
1679
+ "additionalProperties": false
201
1680
  },
202
- "RequirableSelectOptionTag": {
203
- "enum": [
204
- "General",
205
- "Skill",
206
- "CloseCombatTechnique",
207
- "RangedCombatTechnique"
208
- ]
1681
+ "AnimalCareIdentifier": {
1682
+ "type": "object",
1683
+ "properties": {
1684
+ "tag": {
1685
+ "const": "AnimalCare"
1686
+ },
1687
+ "animal_care": {
1688
+ "description": "The animal care’s identifier.",
1689
+ "type": "integer",
1690
+ "minimum": 1
1691
+ }
1692
+ },
1693
+ "required": [
1694
+ "tag",
1695
+ "animal_care"
1696
+ ],
1697
+ "additionalProperties": false
209
1698
  },
210
- "CoreRuleDerivableContentTag": {
211
- "enum": [
212
- "MagicalTradition",
213
- "FamiliarSpecialAbility",
214
- "MagicalSpecialAbility",
215
- "BlessedTradition"
216
- ]
1699
+ "ArmorIdentifier": {
1700
+ "type": "object",
1701
+ "properties": {
1702
+ "tag": {
1703
+ "const": "Armor"
1704
+ },
1705
+ "armor": {
1706
+ "description": "The armor’s identifier.",
1707
+ "type": "integer",
1708
+ "minimum": 1
1709
+ }
1710
+ },
1711
+ "required": [
1712
+ "tag",
1713
+ "armor"
1714
+ ],
1715
+ "additionalProperties": false
217
1716
  },
218
- "EquipmentTag": {
219
- "enum": [
220
- "Alchemicum",
221
- "Ammunition",
222
- "Animal",
223
- "AnimalCare",
224
- "Armor",
225
- "BandageOrRemedy",
226
- "Book",
227
- "CeremonialItem",
228
- "Clothes",
229
- "Container",
230
- "EquipmentOfBlessedOnes",
231
- "GemOrPreciousStone",
232
- "HealingHerb",
233
- "Illumination",
234
- "Jewelry",
235
- "Liebesspielzeug",
236
- "LuxuryGood",
237
- "MagicalArtifact",
238
- "MusicalInstrument",
239
- "OrienteeringAid",
240
- "Poison",
241
- "RopeOrChain",
242
- "Stationary",
243
- "ThievesTool",
244
- "ToolOfTheTrade",
245
- "TravelGearOrTool",
246
- "Vehicle",
247
- "Weapon",
248
- "WeaponAccessory"
249
- ]
1717
+ "BandageOrRemedyIdentifier": {
1718
+ "type": "object",
1719
+ "properties": {
1720
+ "tag": {
1721
+ "const": "BandageOrRemedy"
1722
+ },
1723
+ "bandage_or_remedy": {
1724
+ "description": "The bandage or remedy’s identifier.",
1725
+ "type": "integer",
1726
+ "minimum": 1
1727
+ }
1728
+ },
1729
+ "required": [
1730
+ "tag",
1731
+ "bandage_or_remedy"
1732
+ ],
1733
+ "additionalProperties": false
250
1734
  },
251
- "ActivatableIdentifier": {
1735
+ "BookIdentifier": {
252
1736
  "type": "object",
253
1737
  "properties": {
254
1738
  "tag": {
255
- "$ref": "#/$defs/ActivatableTag"
1739
+ "const": "Book"
256
1740
  },
257
- "value": {
258
- "description": "The referenced entry's numeric identifier.",
1741
+ "book": {
1742
+ "description": "The book’s identifier.",
259
1743
  "type": "integer",
260
1744
  "minimum": 1
261
1745
  }
262
1746
  },
263
1747
  "required": [
264
1748
  "tag",
265
- "value"
1749
+ "book"
266
1750
  ],
267
1751
  "additionalProperties": false
268
1752
  },
269
- "SpecialAbilityIdentifier": {
1753
+ "CeremonialItemIdentifier": {
270
1754
  "type": "object",
271
1755
  "properties": {
272
1756
  "tag": {
273
- "$ref": "#/$defs/SpecialAbilityTag"
1757
+ "const": "CeremonialItem"
274
1758
  },
275
- "value": {
276
- "description": "The referenced entry's numeric identifier.",
1759
+ "ceremonial_item": {
1760
+ "description": "The ceremonial item’s identifier.",
277
1761
  "type": "integer",
278
1762
  "minimum": 1
279
1763
  }
280
1764
  },
281
1765
  "required": [
282
1766
  "tag",
283
- "value"
1767
+ "ceremonial_item"
284
1768
  ],
285
1769
  "additionalProperties": false
286
1770
  },
287
- "CombatRelatedSpecialAbilityIdentifier": {
1771
+ "ClothesIdentifier": {
288
1772
  "type": "object",
289
1773
  "properties": {
290
1774
  "tag": {
291
- "$ref": "#/$defs/CombatRelatedSpecialAbilityTag"
1775
+ "const": "Clothes"
292
1776
  },
293
- "value": {
294
- "description": "The referenced entry's numeric identifier.",
1777
+ "clothes": {
1778
+ "description": "The clothes’ identifier.",
295
1779
  "type": "integer",
296
1780
  "minimum": 1
297
1781
  }
298
1782
  },
299
1783
  "required": [
300
1784
  "tag",
301
- "value"
1785
+ "clothes"
302
1786
  ],
303
1787
  "additionalProperties": false
304
1788
  },
305
- "RatedIdentifier": {
1789
+ "ContainerIdentifier": {
306
1790
  "type": "object",
307
1791
  "properties": {
308
1792
  "tag": {
309
- "$ref": "#/$defs/RatedTag"
1793
+ "const": "Container"
310
1794
  },
311
- "value": {
312
- "description": "The referenced entry's numeric identifier.",
1795
+ "container": {
1796
+ "description": "The container’s identifier.",
313
1797
  "type": "integer",
314
1798
  "minimum": 1
315
1799
  }
316
1800
  },
317
1801
  "required": [
318
1802
  "tag",
319
- "value"
1803
+ "container"
320
1804
  ],
321
1805
  "additionalProperties": false
322
1806
  },
323
- "SkillIdentifier": {
1807
+ "EquipmentOfBlessedOnesIdentifier": {
324
1808
  "type": "object",
325
1809
  "properties": {
326
1810
  "tag": {
327
- "$ref": "#/$defs/SkillTag"
1811
+ "const": "EquipmentOfBlessedOnes"
328
1812
  },
329
- "value": {
330
- "description": "The referenced entry's numeric identifier.",
1813
+ "equipment_of_blessed_ones": {
1814
+ "description": "The equipment of blessed ones’ identifier.",
331
1815
  "type": "integer",
332
1816
  "minimum": 1
333
1817
  }
334
1818
  },
335
1819
  "required": [
336
1820
  "tag",
337
- "value"
1821
+ "equipment_of_blessed_ones"
338
1822
  ],
339
1823
  "additionalProperties": false
340
1824
  },
341
- "AdvancedSpecialAbilityRestrictedOptionIdentifier": {
1825
+ "GemOrPreciousStoneIdentifier": {
342
1826
  "type": "object",
343
1827
  "properties": {
344
1828
  "tag": {
345
- "$ref": "#/$defs/AdvancedSpecialAbilityRestrictedOptionTag"
1829
+ "const": "GemOrPreciousStone"
346
1830
  },
347
- "value": {
348
- "description": "The referenced entry's numeric identifier.",
1831
+ "gem_or_precious_stone": {
1832
+ "description": "The gem or precious stone’s identifier.",
349
1833
  "type": "integer",
350
1834
  "minimum": 1
351
1835
  }
352
1836
  },
353
1837
  "required": [
354
1838
  "tag",
355
- "value"
1839
+ "gem_or_precious_stone"
356
1840
  ],
357
1841
  "additionalProperties": false
358
1842
  },
359
- "VolumePointsOptionReferenceIdentifier": {
1843
+ "IlluminationLightSourceIdentifier": {
360
1844
  "type": "object",
361
1845
  "properties": {
362
1846
  "tag": {
363
- "$ref": "#/$defs/VolumePointsOptionReferenceTag"
1847
+ "const": "IlluminationLightSource"
364
1848
  },
365
- "value": {
366
- "description": "The referenced entry's numeric identifier.",
1849
+ "illumination_light_source": {
1850
+ "description": "The illumination light source’s identifier.",
367
1851
  "type": "integer",
368
1852
  "minimum": 1
369
1853
  }
370
1854
  },
371
1855
  "required": [
372
1856
  "tag",
373
- "value"
1857
+ "illumination_light_source"
374
1858
  ],
375
1859
  "additionalProperties": false
376
1860
  },
377
- "CombatTechniqueIdentifier": {
1861
+ "IlluminationRefillsOrSuppliesIdentifier": {
378
1862
  "type": "object",
379
1863
  "properties": {
380
1864
  "tag": {
381
- "$ref": "#/$defs/CombatTechniqueTag"
1865
+ "const": "IlluminationRefillsOrSupplies"
382
1866
  },
383
- "value": {
384
- "description": "The referenced entry's numeric identifier.",
1867
+ "illumination_refills_or_supplies": {
1868
+ "description": "The illumination refills or supplies’ identifier.",
385
1869
  "type": "integer",
386
1870
  "minimum": 1
387
1871
  }
388
1872
  },
389
1873
  "required": [
390
1874
  "tag",
391
- "value"
1875
+ "illumination_refills_or_supplies"
392
1876
  ],
393
1877
  "additionalProperties": false
394
1878
  },
395
- "MagicalTraditionIdentifier": {
1879
+ "JewelryIdentifier": {
396
1880
  "type": "object",
397
1881
  "properties": {
398
1882
  "tag": {
399
- "$ref": "#/$defs/MagicalTraditionTag"
1883
+ "const": "Jewelry"
400
1884
  },
401
- "value": {
402
- "description": "The referenced entry's numeric identifier.",
1885
+ "jewelry": {
1886
+ "description": "The jewelry’s identifier.",
403
1887
  "type": "integer",
404
1888
  "minimum": 1
405
1889
  }
406
1890
  },
407
1891
  "required": [
408
1892
  "tag",
409
- "value"
1893
+ "jewelry"
410
1894
  ],
411
1895
  "additionalProperties": false
412
1896
  },
413
- "PatronIdentifier": {
1897
+ "LiebesspielzeugIdentifier": {
1898
+ "type": "object",
1899
+ "properties": {
1900
+ "tag": {
1901
+ "const": "Liebesspielzeug"
1902
+ },
1903
+ "liebesspielzeug": {
1904
+ "description": "The Liebesspielzeug’s identifier.",
1905
+ "type": "integer",
1906
+ "minimum": 1
1907
+ }
1908
+ },
1909
+ "required": [
1910
+ "tag",
1911
+ "liebesspielzeug"
1912
+ ],
1913
+ "additionalProperties": false
1914
+ },
1915
+ "LuxuryGoodIdentifier": {
1916
+ "type": "object",
1917
+ "properties": {
1918
+ "tag": {
1919
+ "const": "LuxuryGood"
1920
+ },
1921
+ "luxury_good": {
1922
+ "description": "The luxury good’s identifier.",
1923
+ "type": "integer",
1924
+ "minimum": 1
1925
+ }
1926
+ },
1927
+ "required": [
1928
+ "tag",
1929
+ "luxury_good"
1930
+ ],
1931
+ "additionalProperties": false
1932
+ },
1933
+ "MagicalArtifactIdentifier": {
1934
+ "type": "object",
1935
+ "properties": {
1936
+ "tag": {
1937
+ "const": "MagicalArtifact"
1938
+ },
1939
+ "magical_artifact": {
1940
+ "description": "The magical artifact’s identifier.",
1941
+ "type": "integer",
1942
+ "minimum": 1
1943
+ }
1944
+ },
1945
+ "required": [
1946
+ "tag",
1947
+ "magical_artifact"
1948
+ ],
1949
+ "additionalProperties": false
1950
+ },
1951
+ "MusicalInstrumentIdentifier": {
1952
+ "type": "object",
1953
+ "properties": {
1954
+ "tag": {
1955
+ "const": "MusicalInstrument"
1956
+ },
1957
+ "musical_instrument": {
1958
+ "description": "The musical instrument’s identifier.",
1959
+ "type": "integer",
1960
+ "minimum": 1
1961
+ }
1962
+ },
1963
+ "required": [
1964
+ "tag",
1965
+ "musical_instrument"
1966
+ ],
1967
+ "additionalProperties": false
1968
+ },
1969
+ "OrienteeringAidIdentifier": {
1970
+ "type": "object",
1971
+ "properties": {
1972
+ "tag": {
1973
+ "const": "OrienteeringAid"
1974
+ },
1975
+ "orienteering_aid": {
1976
+ "description": "The orienteering aid’s identifier.",
1977
+ "type": "integer",
1978
+ "minimum": 1
1979
+ }
1980
+ },
1981
+ "required": [
1982
+ "tag",
1983
+ "orienteering_aid"
1984
+ ],
1985
+ "additionalProperties": false
1986
+ },
1987
+ "PoisonIdentifier": {
1988
+ "type": "object",
1989
+ "properties": {
1990
+ "tag": {
1991
+ "const": "Poison"
1992
+ },
1993
+ "poison": {
1994
+ "description": "The poison’s identifier.",
1995
+ "type": "integer",
1996
+ "minimum": 1
1997
+ }
1998
+ },
1999
+ "required": [
2000
+ "tag",
2001
+ "poison"
2002
+ ],
2003
+ "additionalProperties": false
2004
+ },
2005
+ "RopeOrChainIdentifier": {
2006
+ "type": "object",
2007
+ "properties": {
2008
+ "tag": {
2009
+ "const": "RopeOrChain"
2010
+ },
2011
+ "rope_or_chain": {
2012
+ "description": "The rope or chain’s identifier.",
2013
+ "type": "integer",
2014
+ "minimum": 1
2015
+ }
2016
+ },
2017
+ "required": [
2018
+ "tag",
2019
+ "rope_or_chain"
2020
+ ],
2021
+ "additionalProperties": false
2022
+ },
2023
+ "StationaryIdentifier": {
2024
+ "type": "object",
2025
+ "properties": {
2026
+ "tag": {
2027
+ "const": "Stationary"
2028
+ },
2029
+ "stationary": {
2030
+ "description": "The stationary’s identifier.",
2031
+ "type": "integer",
2032
+ "minimum": 1
2033
+ }
2034
+ },
2035
+ "required": [
2036
+ "tag",
2037
+ "stationary"
2038
+ ],
2039
+ "additionalProperties": false
2040
+ },
2041
+ "ThievesToolIdentifier": {
2042
+ "type": "object",
2043
+ "properties": {
2044
+ "tag": {
2045
+ "const": "ThievesTool"
2046
+ },
2047
+ "thieves_tool": {
2048
+ "description": "The thieves tool’s identifier.",
2049
+ "type": "integer",
2050
+ "minimum": 1
2051
+ }
2052
+ },
2053
+ "required": [
2054
+ "tag",
2055
+ "thieves_tool"
2056
+ ],
2057
+ "additionalProperties": false
2058
+ },
2059
+ "ToolOfTheTradeIdentifier": {
2060
+ "type": "object",
2061
+ "properties": {
2062
+ "tag": {
2063
+ "const": "ToolOfTheTrade"
2064
+ },
2065
+ "tool_of_the_trade": {
2066
+ "description": "The tool of the trade’s identifier.",
2067
+ "type": "integer",
2068
+ "minimum": 1
2069
+ }
2070
+ },
2071
+ "required": [
2072
+ "tag",
2073
+ "tool_of_the_trade"
2074
+ ],
2075
+ "additionalProperties": false
2076
+ },
2077
+ "TravelGearOrToolIdentifier": {
2078
+ "type": "object",
2079
+ "properties": {
2080
+ "tag": {
2081
+ "const": "TravelGearOrTool"
2082
+ },
2083
+ "travel_gear_or_tool": {
2084
+ "description": "The travel gear or tool’s identifier.",
2085
+ "type": "integer",
2086
+ "minimum": 1
2087
+ }
2088
+ },
2089
+ "required": [
2090
+ "tag",
2091
+ "travel_gear_or_tool"
2092
+ ],
2093
+ "additionalProperties": false
2094
+ },
2095
+ "VehicleIdentifier": {
2096
+ "type": "object",
2097
+ "properties": {
2098
+ "tag": {
2099
+ "const": "Vehicle"
2100
+ },
2101
+ "vehicle": {
2102
+ "description": "The vehicle’s identifier.",
2103
+ "type": "integer",
2104
+ "minimum": 1
2105
+ }
2106
+ },
2107
+ "required": [
2108
+ "tag",
2109
+ "vehicle"
2110
+ ],
2111
+ "additionalProperties": false
2112
+ },
2113
+ "WeaponIdentifier": {
2114
+ "type": "object",
2115
+ "properties": {
2116
+ "tag": {
2117
+ "const": "Weapon"
2118
+ },
2119
+ "weapon": {
2120
+ "description": "The weapon’s identifier.",
2121
+ "type": "integer",
2122
+ "minimum": 1
2123
+ }
2124
+ },
2125
+ "required": [
2126
+ "tag",
2127
+ "weapon"
2128
+ ],
2129
+ "additionalProperties": false
2130
+ },
2131
+ "WeaponAccessoryIdentifier": {
414
2132
  "type": "object",
415
2133
  "properties": {
416
2134
  "tag": {
417
- "$ref": "#/$defs/PatronTag"
2135
+ "const": "WeaponAccessory"
418
2136
  },
419
- "value": {
420
- "description": "The referenced entry's numeric identifier.",
2137
+ "weapon_accessory": {
2138
+ "description": "The weapon accessory’s identifier.",
421
2139
  "type": "integer",
422
2140
  "minimum": 1
423
2141
  }
424
2142
  },
425
2143
  "required": [
426
2144
  "tag",
427
- "value"
2145
+ "weapon_accessory"
428
2146
  ],
429
2147
  "additionalProperties": false
430
2148
  },
431
- "ExtensionRuleIdentifier": {
2149
+ "ReachIdentifier": {
432
2150
  "type": "object",
433
2151
  "properties": {
434
2152
  "tag": {
435
- "$ref": "#/$defs/ExtensionRuleTag"
2153
+ "const": "Reach"
436
2154
  },
437
- "value": {
438
- "description": "The referenced entry's numeric identifier.",
2155
+ "reach": {
2156
+ "description": "The reach’s identifier.",
439
2157
  "type": "integer",
2158
+ "maximum": 4,
440
2159
  "minimum": 1
441
2160
  }
442
2161
  },
443
2162
  "required": [
444
2163
  "tag",
445
- "value"
2164
+ "reach"
446
2165
  ],
447
2166
  "additionalProperties": false
448
2167
  },
449
- "SkillWithEnhancementsIdentifier": {
2168
+ "PatronCategoryIdentifier": {
450
2169
  "type": "object",
451
2170
  "properties": {
452
2171
  "tag": {
453
- "$ref": "#/$defs/SkillWithEnhancementsTag"
2172
+ "const": "PatronCategory"
454
2173
  },
455
- "value": {
456
- "description": "The referenced entry's numeric identifier.",
2174
+ "patron_category": {
2175
+ "description": "The patron category’s identifier.",
457
2176
  "type": "integer",
458
2177
  "minimum": 1
459
2178
  }
460
2179
  },
461
2180
  "required": [
462
2181
  "tag",
463
- "value"
2182
+ "patron_category"
464
2183
  ],
465
2184
  "additionalProperties": false
466
2185
  },
467
- "LiturgyIdentifier": {
2186
+ "PersonalityTraitIdentifier": {
468
2187
  "type": "object",
469
2188
  "properties": {
470
2189
  "tag": {
471
- "$ref": "#/$defs/LiturgyTag"
2190
+ "const": "PersonalityTrait"
472
2191
  },
473
- "value": {
474
- "description": "The referenced entry's numeric identifier.",
2192
+ "personality_trait": {
2193
+ "description": "The personality trait’s identifier.",
475
2194
  "type": "integer",
476
2195
  "minimum": 1
477
2196
  }
478
2197
  },
479
2198
  "required": [
480
2199
  "tag",
481
- "value"
2200
+ "personality_trait"
482
2201
  ],
483
2202
  "additionalProperties": false
484
2203
  },
485
- "SpellworkIdentifier": {
2204
+ "HairColorIdentifier": {
486
2205
  "type": "object",
487
2206
  "properties": {
488
2207
  "tag": {
489
- "$ref": "#/$defs/SpellworkTag"
2208
+ "const": "HairColor"
490
2209
  },
491
- "value": {
492
- "description": "The referenced entry's numeric identifier.",
2210
+ "hair_color": {
2211
+ "description": "The hair color’s identifier.",
493
2212
  "type": "integer",
494
2213
  "minimum": 1
495
2214
  }
496
2215
  },
497
2216
  "required": [
498
2217
  "tag",
499
- "value"
2218
+ "hair_color"
500
2219
  ],
501
2220
  "additionalProperties": false
502
2221
  },
503
- "MagicalActionIdentifier": {
2222
+ "EyeColorIdentifier": {
504
2223
  "type": "object",
505
2224
  "properties": {
506
2225
  "tag": {
507
- "$ref": "#/$defs/MagicalActionTag"
2226
+ "const": "EyeColor"
508
2227
  },
509
- "value": {
510
- "description": "The referenced entry's numeric identifier.",
2228
+ "eye_color": {
2229
+ "description": "The eye color’s identifier.",
511
2230
  "type": "integer",
512
2231
  "minimum": 1
513
2232
  }
514
2233
  },
515
2234
  "required": [
516
2235
  "tag",
517
- "value"
2236
+ "eye_color"
518
2237
  ],
519
2238
  "additionalProperties": false
520
2239
  },
521
- "RequirableSelectOptionIdentifier": {
2240
+ "PactCategoryIdentifier": {
522
2241
  "type": "object",
523
2242
  "properties": {
524
2243
  "tag": {
525
- "$ref": "#/$defs/RequirableSelectOptionTag"
2244
+ "const": "PactCategory"
526
2245
  },
527
- "value": {
528
- "description": "The referenced entry's numeric identifier.",
2246
+ "pact_category": {
2247
+ "description": "The pact category’s identifier.",
529
2248
  "type": "integer",
530
2249
  "minimum": 1
531
2250
  }
532
2251
  },
533
2252
  "required": [
534
2253
  "tag",
535
- "value"
2254
+ "pact_category"
536
2255
  ],
537
2256
  "additionalProperties": false
538
2257
  },
539
- "CoreRuleDerivableContentIdentifier": {
2258
+ "PactDomainIdentifier": {
540
2259
  "type": "object",
541
2260
  "properties": {
542
2261
  "tag": {
543
- "$ref": "#/$defs/CoreRuleDerivableContentTag"
2262
+ "const": "PactDomain"
544
2263
  },
545
- "value": {
546
- "description": "The referenced entry's numeric identifier.",
2264
+ "pact_domain": {
2265
+ "description": "The pact domain’s identifier.",
547
2266
  "type": "integer",
548
2267
  "minimum": 1
549
2268
  }
550
2269
  },
551
2270
  "required": [
552
2271
  "tag",
553
- "value"
2272
+ "pact_domain"
554
2273
  ],
555
2274
  "additionalProperties": false
556
2275
  },
557
- "EquipmentIdentifier": {
2276
+ "AnimistTribeIdentifier": {
558
2277
  "type": "object",
559
2278
  "properties": {
560
2279
  "tag": {
561
- "$ref": "#/$defs/EquipmentTag"
2280
+ "const": "AnimistTribe"
562
2281
  },
563
- "value": {
564
- "description": "The referenced entry's numeric identifier.",
2282
+ "animist_tribe": {
2283
+ "description": "The animist tribe’s identifier.",
565
2284
  "type": "integer",
566
2285
  "minimum": 1
567
2286
  }
568
2287
  },
569
2288
  "required": [
570
2289
  "tag",
571
- "value"
2290
+ "animist_tribe"
572
2291
  ],
573
2292
  "additionalProperties": false
574
2293
  },
575
- "OneOrManyNumericIdentifiers": {
576
- "oneOf": [
577
- {
578
- "$ref": "#/$defs/OneNumericIdentifier"
2294
+ "InfluenceIdentifier": {
2295
+ "type": "object",
2296
+ "properties": {
2297
+ "tag": {
2298
+ "const": "Influence"
579
2299
  },
580
- {
581
- "$ref": "#/$defs/ManyNumericIdentifiers"
2300
+ "influence": {
2301
+ "description": "The influence’s identifier.",
2302
+ "type": "integer",
2303
+ "minimum": 1
582
2304
  }
583
- ]
2305
+ },
2306
+ "required": [
2307
+ "tag",
2308
+ "influence"
2309
+ ],
2310
+ "additionalProperties": false
584
2311
  },
585
- "OneNumericIdentifier": {
586
- "type": "number",
587
- "minimum": 1
2312
+ "ConditionIdentifier": {
2313
+ "type": "object",
2314
+ "properties": {
2315
+ "tag": {
2316
+ "const": "Condition"
2317
+ },
2318
+ "condition": {
2319
+ "description": "The condition’s identifier.",
2320
+ "type": "integer",
2321
+ "minimum": 1
2322
+ }
2323
+ },
2324
+ "required": [
2325
+ "tag",
2326
+ "condition"
2327
+ ],
2328
+ "additionalProperties": false
588
2329
  },
589
- "ManyNumericIdentifiers": {
590
- "type": "array",
591
- "items": {
592
- "$ref": "#/$defs/OneNumericIdentifier"
2330
+ "StateIdentifier": {
2331
+ "type": "object",
2332
+ "properties": {
2333
+ "tag": {
2334
+ "const": "State"
2335
+ },
2336
+ "state": {
2337
+ "description": "The state’s identifier.",
2338
+ "type": "integer",
2339
+ "minimum": 1
2340
+ }
593
2341
  },
594
- "minItems": 2
2342
+ "required": [
2343
+ "tag",
2344
+ "state"
2345
+ ],
2346
+ "additionalProperties": false
595
2347
  }
596
2348
  }
597
2349
  }