optolith-database-schema 0.5.2 → 0.5.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/CHANGELOG.md +16 -0
- package/lib/types/Culture.d.ts +21 -6
- package/lib/types/Lessons_Curriculum.d.ts +3 -6
- package/lib/types/equipment/item/_Item.d.ts +1 -1
- package/package.json +2 -2
- package/schema/Culture.schema.json +45 -5
- package/schema/Lessons_Curriculum.schema.json +20 -5
- package/schema/equipment/item/_Item.schema.json +1 -1
- package/schema/magicalActions/ZibiljaRitual.schema.json +3 -3
- package/schema/specialAbility/CombatStyleSpecialAbility.schema.json +15 -15
- package/schema/specialAbility/LiturgicalStyleSpecialAbility.schema.json +15 -15
- package/schema/specialAbility/MagicStyleSpecialAbility.schema.json +15 -15
- package/schema/specialAbility/SkillStyleSpecialAbility.schema.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.5.4](https://github.com/elyukai/optolith-database-schema/compare/v0.5.3...v0.5.4) (2022-12-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* elective spellwork restriction structure ([3ceb624](https://github.com/elyukai/optolith-database-schema/commit/3ceb6244ec433bb60fe292dde32d99ac93edccb2))
|
|
11
|
+
* grouped common profession for cultures ([df66943](https://github.com/elyukai/optolith-database-schema/commit/df66943aadfd297d773dda7d4a0a65c8b79095ce))
|
|
12
|
+
|
|
13
|
+
### [0.5.3](https://github.com/elyukai/optolith-database-schema/compare/v0.5.2...v0.5.3) (2022-12-03)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* escaping curly braces in regular expression ([4f59611](https://github.com/elyukai/optolith-database-schema/commit/4f59611827d0948df7de32e73623cef858ad89c7))
|
|
19
|
+
* import resolving of types used in generic types ([592ade9](https://github.com/elyukai/optolith-database-schema/commit/592ade94fddc14bdda5bfcf8b3dc51c33f36f509))
|
|
20
|
+
|
|
5
21
|
### [0.5.2](https://github.com/elyukai/optolith-database-schema/compare/v0.5.1...v0.5.2) (2022-12-02)
|
|
6
22
|
|
|
7
23
|
|
package/lib/types/Culture.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { Errata } from "./source/_Erratum.js";
|
|
5
5
|
import { PublicationRefs } from "./source/_PublicationRef.js";
|
|
6
6
|
import { CommonnessRatedAdvantageDisadvantage } from "./_CommonnessRatedAdvantageDisadvantage.js";
|
|
7
|
-
import { AdvantageIdentifier, DisadvantageIdentifier, MagicalTraditionIdentifier, ProfessionIdentifier, SkillIdentifier } from "./_Identifier.js";
|
|
7
|
+
import { AdvantageIdentifier, BlessedTraditionIdentifier, DisadvantageIdentifier, MagicalTraditionIdentifier, ProfessionIdentifier, SkillIdentifier } from "./_Identifier.js";
|
|
8
8
|
import { LocaleMap } from "./_LocaleMap.js";
|
|
9
9
|
import { NonEmptyString } from "./_NonEmptyString.js";
|
|
10
10
|
import { BinarySex } from "./_Sex.js";
|
|
@@ -183,7 +183,7 @@ export declare enum MundaneProfessionSubgroupConstraint {
|
|
|
183
183
|
Fighter = "Fighter",
|
|
184
184
|
Religious = "Religious"
|
|
185
185
|
}
|
|
186
|
-
export declare type
|
|
186
|
+
export declare type MagicalTraditionConstraint = {
|
|
187
187
|
/**
|
|
188
188
|
* The magical tradition's identifier.
|
|
189
189
|
*/
|
|
@@ -198,16 +198,31 @@ export declare type TraditionConstraint = {
|
|
|
198
198
|
*/
|
|
199
199
|
rarity?: Rarity;
|
|
200
200
|
};
|
|
201
|
+
export declare type BlessedTraditionConstraint = {
|
|
202
|
+
/**
|
|
203
|
+
* The magical tradition's identifier.
|
|
204
|
+
*/
|
|
205
|
+
id: BlessedTraditionIdentifier;
|
|
206
|
+
/**
|
|
207
|
+
* Some professions are more common than others. There may be cultures
|
|
208
|
+
* where some professions are not represented at all.
|
|
209
|
+
*/
|
|
210
|
+
weighted_professions?: Weighted<ProfessionReference>;
|
|
211
|
+
/**
|
|
212
|
+
* Some traditions may be found in a culture, but are not that common.
|
|
213
|
+
*/
|
|
214
|
+
rarity?: Rarity;
|
|
215
|
+
};
|
|
201
216
|
export declare type MundaneCommonProfessionConstraint = {
|
|
202
217
|
tag: "Profession";
|
|
203
218
|
profession: ProfessionConstraint;
|
|
204
219
|
} | {
|
|
205
220
|
tag: "ProfessionSubgroup";
|
|
206
|
-
profession_subgroup:
|
|
221
|
+
profession_subgroup: MundaneProfessionSubgroupConstraint;
|
|
207
222
|
};
|
|
208
223
|
export declare type MagicCommonProfessionConstraint = {
|
|
209
224
|
tag: "Tradition";
|
|
210
|
-
tradition:
|
|
225
|
+
tradition: MagicalTraditionConstraint;
|
|
211
226
|
} | {
|
|
212
227
|
tag: "MagicDilettante";
|
|
213
228
|
magic_dilettante: {};
|
|
@@ -217,12 +232,12 @@ export declare type MagicCommonProfessionConstraint = {
|
|
|
217
232
|
};
|
|
218
233
|
export declare type BlessedCommonProfessionConstraint = {
|
|
219
234
|
tag: "Tradition";
|
|
220
|
-
tradition:
|
|
235
|
+
tradition: BlessedTraditionConstraint;
|
|
221
236
|
};
|
|
222
237
|
export declare type PlainCommonProfessions = CommonProfessionConstraints<ProfessionReference>;
|
|
223
238
|
/**
|
|
224
239
|
* Lists of professions by group.
|
|
225
|
-
* @minProperties
|
|
240
|
+
* @minProperties 1
|
|
226
241
|
*/
|
|
227
242
|
export declare type GroupedCommonProfessions = {
|
|
228
243
|
mundane?: CommonProfessionConstraints<MundaneCommonProfessionConstraint>;
|
|
@@ -84,12 +84,9 @@ export declare type ElectiveSpellwork = {
|
|
|
84
84
|
*/
|
|
85
85
|
export declare type ElectiveSpellworkRestriction = {
|
|
86
86
|
tag: "Element";
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
* @minimum 1
|
|
91
|
-
* @maximum 6
|
|
92
|
-
*/
|
|
87
|
+
element: ElectiveSpellworkElementRestriction;
|
|
88
|
+
};
|
|
89
|
+
export declare type ElectiveSpellworkElementRestriction = {
|
|
93
90
|
id: ElementIdentifier;
|
|
94
91
|
};
|
|
95
92
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "optolith-database-schema",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tde",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node": "^18.0.0",
|
|
31
|
-
"optolith-tsjsonschemamd": "^0.5.
|
|
31
|
+
"optolith-tsjsonschemamd": "^0.5.20",
|
|
32
32
|
"standard-version": "^9.5.0",
|
|
33
33
|
"typescript": "^4.7.4"
|
|
34
34
|
},
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"Religious"
|
|
256
256
|
]
|
|
257
257
|
},
|
|
258
|
-
"
|
|
258
|
+
"MagicalTraditionConstraint": {
|
|
259
259
|
"type": "object",
|
|
260
260
|
"properties": {
|
|
261
261
|
"id": {
|
|
@@ -295,6 +295,46 @@
|
|
|
295
295
|
],
|
|
296
296
|
"additionalProperties": false
|
|
297
297
|
},
|
|
298
|
+
"BlessedTraditionConstraint": {
|
|
299
|
+
"type": "object",
|
|
300
|
+
"properties": {
|
|
301
|
+
"id": {
|
|
302
|
+
"description": "The magical tradition's identifier.",
|
|
303
|
+
"$ref": "./_Identifier.schema.json#/$defs/BlessedTraditionIdentifier"
|
|
304
|
+
},
|
|
305
|
+
"weighted_professions": {
|
|
306
|
+
"description": "Some professions or profession variants are more common than others. There\nmay be cultures where some professions or profession variants are not\nrepresented at all.",
|
|
307
|
+
"type": "object",
|
|
308
|
+
"properties": {
|
|
309
|
+
"elements": {
|
|
310
|
+
"description": "The list of more common professions or profession variants.",
|
|
311
|
+
"type": "array",
|
|
312
|
+
"items": {
|
|
313
|
+
"$ref": "./_SimpleReferences.schema.json#/$defs/ProfessionReference"
|
|
314
|
+
},
|
|
315
|
+
"minItems": 1
|
|
316
|
+
},
|
|
317
|
+
"weight": {
|
|
318
|
+
"description": "The \"weight\" difference compared to other professions or profession\nvariants. Some professions or profession variants are simply more common\n(Mostly), but sometimes only specific elements are used (Only).",
|
|
319
|
+
"$ref": "#/$defs/Weight"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"required": [
|
|
323
|
+
"elements",
|
|
324
|
+
"weight"
|
|
325
|
+
],
|
|
326
|
+
"additionalProperties": false
|
|
327
|
+
},
|
|
328
|
+
"rarity": {
|
|
329
|
+
"description": "Some traditions may be found in a culture, but are not that common.",
|
|
330
|
+
"$ref": "#/$defs/Rarity"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
"required": [
|
|
334
|
+
"id"
|
|
335
|
+
],
|
|
336
|
+
"additionalProperties": false
|
|
337
|
+
},
|
|
298
338
|
"MundaneCommonProfessionConstraint": {
|
|
299
339
|
"oneOf": [
|
|
300
340
|
{
|
|
@@ -320,7 +360,7 @@
|
|
|
320
360
|
"const": "ProfessionSubgroup"
|
|
321
361
|
},
|
|
322
362
|
"profession_subgroup": {
|
|
323
|
-
"$ref": "#/$defs/
|
|
363
|
+
"$ref": "#/$defs/MundaneProfessionSubgroupConstraint"
|
|
324
364
|
}
|
|
325
365
|
},
|
|
326
366
|
"required": [
|
|
@@ -340,7 +380,7 @@
|
|
|
340
380
|
"const": "Tradition"
|
|
341
381
|
},
|
|
342
382
|
"tradition": {
|
|
343
|
-
"$ref": "#/$defs/
|
|
383
|
+
"$ref": "#/$defs/MagicalTraditionConstraint"
|
|
344
384
|
}
|
|
345
385
|
},
|
|
346
386
|
"required": [
|
|
@@ -395,7 +435,7 @@
|
|
|
395
435
|
"const": "Tradition"
|
|
396
436
|
},
|
|
397
437
|
"tradition": {
|
|
398
|
-
"$ref": "#/$defs/
|
|
438
|
+
"$ref": "#/$defs/BlessedTraditionConstraint"
|
|
399
439
|
}
|
|
400
440
|
},
|
|
401
441
|
"required": [
|
|
@@ -504,7 +544,7 @@
|
|
|
504
544
|
}
|
|
505
545
|
},
|
|
506
546
|
"required": [],
|
|
507
|
-
"minProperties":
|
|
547
|
+
"minProperties": 1,
|
|
508
548
|
"additionalProperties": false
|
|
509
549
|
},
|
|
510
550
|
"CommonProfessions": {
|
|
@@ -143,18 +143,33 @@
|
|
|
143
143
|
},
|
|
144
144
|
"ElectiveSpellworkRestriction": {
|
|
145
145
|
"description": "The elective spellwork may only take effect if a certain condition is met.\nThe condition may be related to professions or profession variants, but it is\ndesigned so that it can work without a specific profession, as multiple may\nbelong to an institute, but with referencing other entities instead.",
|
|
146
|
+
"oneOf": [
|
|
147
|
+
{
|
|
148
|
+
"type": "object",
|
|
149
|
+
"properties": {
|
|
150
|
+
"tag": {
|
|
151
|
+
"const": "Element"
|
|
152
|
+
},
|
|
153
|
+
"element": {
|
|
154
|
+
"$ref": "#/$defs/ElectiveSpellworkElementRestriction"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"required": [
|
|
158
|
+
"tag",
|
|
159
|
+
"element"
|
|
160
|
+
],
|
|
161
|
+
"additionalProperties": false
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
"ElectiveSpellworkElementRestriction": {
|
|
146
166
|
"type": "object",
|
|
147
167
|
"properties": {
|
|
148
|
-
"tag": {
|
|
149
|
-
"const": "Element"
|
|
150
|
-
},
|
|
151
168
|
"id": {
|
|
152
|
-
"description": "The element's identifier.",
|
|
153
169
|
"$ref": "./_Identifier.schema.json#/$defs/ElementIdentifier"
|
|
154
170
|
}
|
|
155
171
|
},
|
|
156
172
|
"required": [
|
|
157
|
-
"tag",
|
|
158
173
|
"id"
|
|
159
174
|
],
|
|
160
175
|
"additionalProperties": false
|
|
@@ -196,13 +196,13 @@
|
|
|
196
196
|
]
|
|
197
197
|
},
|
|
198
198
|
"cost": {
|
|
199
|
-
"$ref": "
|
|
199
|
+
"$ref": "../_ActivatableSkillCost.schema.json#/$defs/OneTimeCost"
|
|
200
200
|
},
|
|
201
201
|
"range": {
|
|
202
|
-
"$ref": "
|
|
202
|
+
"$ref": "../_ActivatableSkillRange.schema.json#/$defs/Range"
|
|
203
203
|
},
|
|
204
204
|
"duration": {
|
|
205
|
-
"$ref": "
|
|
205
|
+
"$ref": "../_ActivatableSkillDuration.schema.json#/$defs/DurationForOneTime"
|
|
206
206
|
}
|
|
207
207
|
},
|
|
208
208
|
"required": [
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
81
81
|
"type": "array",
|
|
82
82
|
"items": {
|
|
83
|
-
"$ref": "
|
|
83
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
84
84
|
},
|
|
85
85
|
"minItems": 1
|
|
86
86
|
}
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"type": "boolean"
|
|
125
125
|
},
|
|
126
126
|
"display_option": {
|
|
127
|
-
"$ref": "
|
|
127
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
128
128
|
}
|
|
129
129
|
},
|
|
130
130
|
"required": [
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"properties": {
|
|
152
152
|
"external_entry": {
|
|
153
153
|
"description": "The possible advanced special abilities.",
|
|
154
|
-
"$ref": "
|
|
154
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
155
155
|
},
|
|
156
156
|
"map": {
|
|
157
157
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -162,7 +162,7 @@
|
|
|
162
162
|
"properties": {
|
|
163
163
|
"from_option": {
|
|
164
164
|
"description": "The select option's identifier.",
|
|
165
|
-
"$ref": "
|
|
165
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
166
166
|
},
|
|
167
167
|
"to_advanced": {
|
|
168
168
|
"type": "object",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"minItems": 1
|
|
187
187
|
},
|
|
188
188
|
"display_option": {
|
|
189
|
-
"$ref": "
|
|
189
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
190
190
|
}
|
|
191
191
|
},
|
|
192
192
|
"required": [
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
249
249
|
"type": "array",
|
|
250
250
|
"items": {
|
|
251
|
-
"$ref": "
|
|
251
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
252
252
|
},
|
|
253
253
|
"minItems": 1
|
|
254
254
|
}
|
|
@@ -292,7 +292,7 @@
|
|
|
292
292
|
"type": "boolean"
|
|
293
293
|
},
|
|
294
294
|
"display_option": {
|
|
295
|
-
"$ref": "
|
|
295
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
296
296
|
}
|
|
297
297
|
},
|
|
298
298
|
"required": [
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"properties": {
|
|
320
320
|
"external_entry": {
|
|
321
321
|
"description": "The possible advanced special abilities.",
|
|
322
|
-
"$ref": "
|
|
322
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
323
323
|
},
|
|
324
324
|
"map": {
|
|
325
325
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
"properties": {
|
|
331
331
|
"from_option": {
|
|
332
332
|
"description": "The select option's identifier.",
|
|
333
|
-
"$ref": "
|
|
333
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
334
334
|
},
|
|
335
335
|
"to_advanced": {
|
|
336
336
|
"type": "object",
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
"minItems": 1
|
|
355
355
|
},
|
|
356
356
|
"display_option": {
|
|
357
|
-
"$ref": "
|
|
357
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
358
358
|
}
|
|
359
359
|
},
|
|
360
360
|
"required": [
|
|
@@ -416,7 +416,7 @@
|
|
|
416
416
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
417
417
|
"type": "array",
|
|
418
418
|
"items": {
|
|
419
|
-
"$ref": "
|
|
419
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
420
420
|
},
|
|
421
421
|
"minItems": 1
|
|
422
422
|
}
|
|
@@ -460,7 +460,7 @@
|
|
|
460
460
|
"type": "boolean"
|
|
461
461
|
},
|
|
462
462
|
"display_option": {
|
|
463
|
-
"$ref": "
|
|
463
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
464
464
|
}
|
|
465
465
|
},
|
|
466
466
|
"required": [
|
|
@@ -487,7 +487,7 @@
|
|
|
487
487
|
"properties": {
|
|
488
488
|
"external_entry": {
|
|
489
489
|
"description": "The possible advanced special abilities.",
|
|
490
|
-
"$ref": "
|
|
490
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
491
491
|
},
|
|
492
492
|
"map": {
|
|
493
493
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -498,7 +498,7 @@
|
|
|
498
498
|
"properties": {
|
|
499
499
|
"from_option": {
|
|
500
500
|
"description": "The select option's identifier.",
|
|
501
|
-
"$ref": "
|
|
501
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
502
502
|
},
|
|
503
503
|
"to_advanced": {
|
|
504
504
|
"type": "object",
|
|
@@ -522,7 +522,7 @@
|
|
|
522
522
|
"minItems": 1
|
|
523
523
|
},
|
|
524
524
|
"display_option": {
|
|
525
|
-
"$ref": "
|
|
525
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
526
526
|
}
|
|
527
527
|
},
|
|
528
528
|
"required": [
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
74
74
|
"type": "array",
|
|
75
75
|
"items": {
|
|
76
|
-
"$ref": "
|
|
76
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
77
77
|
},
|
|
78
78
|
"minItems": 1
|
|
79
79
|
}
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"type": "boolean"
|
|
118
118
|
},
|
|
119
119
|
"display_option": {
|
|
120
|
-
"$ref": "
|
|
120
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"required": [
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"properties": {
|
|
145
145
|
"external_entry": {
|
|
146
146
|
"description": "The possible advanced special abilities.",
|
|
147
|
-
"$ref": "
|
|
147
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
148
148
|
},
|
|
149
149
|
"map": {
|
|
150
150
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"properties": {
|
|
156
156
|
"from_option": {
|
|
157
157
|
"description": "The select option's identifier.",
|
|
158
|
-
"$ref": "
|
|
158
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
159
159
|
},
|
|
160
160
|
"to_advanced": {
|
|
161
161
|
"type": "object",
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"minItems": 1
|
|
180
180
|
},
|
|
181
181
|
"display_option": {
|
|
182
|
-
"$ref": "
|
|
182
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
183
183
|
}
|
|
184
184
|
},
|
|
185
185
|
"required": [
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
242
242
|
"type": "array",
|
|
243
243
|
"items": {
|
|
244
|
-
"$ref": "
|
|
244
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
245
245
|
},
|
|
246
246
|
"minItems": 1
|
|
247
247
|
}
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
"type": "boolean"
|
|
286
286
|
},
|
|
287
287
|
"display_option": {
|
|
288
|
-
"$ref": "
|
|
288
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
289
289
|
}
|
|
290
290
|
},
|
|
291
291
|
"required": [
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"properties": {
|
|
313
313
|
"external_entry": {
|
|
314
314
|
"description": "The possible advanced special abilities.",
|
|
315
|
-
"$ref": "
|
|
315
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
316
316
|
},
|
|
317
317
|
"map": {
|
|
318
318
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
"properties": {
|
|
324
324
|
"from_option": {
|
|
325
325
|
"description": "The select option's identifier.",
|
|
326
|
-
"$ref": "
|
|
326
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
327
327
|
},
|
|
328
328
|
"to_advanced": {
|
|
329
329
|
"type": "object",
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
"minItems": 1
|
|
348
348
|
},
|
|
349
349
|
"display_option": {
|
|
350
|
-
"$ref": "
|
|
350
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
351
351
|
}
|
|
352
352
|
},
|
|
353
353
|
"required": [
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
410
410
|
"type": "array",
|
|
411
411
|
"items": {
|
|
412
|
-
"$ref": "
|
|
412
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
413
413
|
},
|
|
414
414
|
"minItems": 1
|
|
415
415
|
}
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
"type": "boolean"
|
|
454
454
|
},
|
|
455
455
|
"display_option": {
|
|
456
|
-
"$ref": "
|
|
456
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
457
457
|
}
|
|
458
458
|
},
|
|
459
459
|
"required": [
|
|
@@ -480,7 +480,7 @@
|
|
|
480
480
|
"properties": {
|
|
481
481
|
"external_entry": {
|
|
482
482
|
"description": "The possible advanced special abilities.",
|
|
483
|
-
"$ref": "
|
|
483
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
484
484
|
},
|
|
485
485
|
"map": {
|
|
486
486
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
"properties": {
|
|
492
492
|
"from_option": {
|
|
493
493
|
"description": "The select option's identifier.",
|
|
494
|
-
"$ref": "
|
|
494
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
495
495
|
},
|
|
496
496
|
"to_advanced": {
|
|
497
497
|
"type": "object",
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
"minItems": 1
|
|
516
516
|
},
|
|
517
517
|
"display_option": {
|
|
518
|
-
"$ref": "
|
|
518
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
519
519
|
}
|
|
520
520
|
},
|
|
521
521
|
"required": [
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
74
74
|
"type": "array",
|
|
75
75
|
"items": {
|
|
76
|
-
"$ref": "
|
|
76
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
77
77
|
},
|
|
78
78
|
"minItems": 1
|
|
79
79
|
}
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"type": "boolean"
|
|
118
118
|
},
|
|
119
119
|
"display_option": {
|
|
120
|
-
"$ref": "
|
|
120
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
121
121
|
}
|
|
122
122
|
},
|
|
123
123
|
"required": [
|
|
@@ -144,7 +144,7 @@
|
|
|
144
144
|
"properties": {
|
|
145
145
|
"external_entry": {
|
|
146
146
|
"description": "The possible advanced special abilities.",
|
|
147
|
-
"$ref": "
|
|
147
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
148
148
|
},
|
|
149
149
|
"map": {
|
|
150
150
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -155,7 +155,7 @@
|
|
|
155
155
|
"properties": {
|
|
156
156
|
"from_option": {
|
|
157
157
|
"description": "The select option's identifier.",
|
|
158
|
-
"$ref": "
|
|
158
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
159
159
|
},
|
|
160
160
|
"to_advanced": {
|
|
161
161
|
"type": "object",
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"minItems": 1
|
|
180
180
|
},
|
|
181
181
|
"display_option": {
|
|
182
|
-
"$ref": "
|
|
182
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
183
183
|
}
|
|
184
184
|
},
|
|
185
185
|
"required": [
|
|
@@ -241,7 +241,7 @@
|
|
|
241
241
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
242
242
|
"type": "array",
|
|
243
243
|
"items": {
|
|
244
|
-
"$ref": "
|
|
244
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
245
245
|
},
|
|
246
246
|
"minItems": 1
|
|
247
247
|
}
|
|
@@ -285,7 +285,7 @@
|
|
|
285
285
|
"type": "boolean"
|
|
286
286
|
},
|
|
287
287
|
"display_option": {
|
|
288
|
-
"$ref": "
|
|
288
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
289
289
|
}
|
|
290
290
|
},
|
|
291
291
|
"required": [
|
|
@@ -312,7 +312,7 @@
|
|
|
312
312
|
"properties": {
|
|
313
313
|
"external_entry": {
|
|
314
314
|
"description": "The possible advanced special abilities.",
|
|
315
|
-
"$ref": "
|
|
315
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
316
316
|
},
|
|
317
317
|
"map": {
|
|
318
318
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -323,7 +323,7 @@
|
|
|
323
323
|
"properties": {
|
|
324
324
|
"from_option": {
|
|
325
325
|
"description": "The select option's identifier.",
|
|
326
|
-
"$ref": "
|
|
326
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
327
327
|
},
|
|
328
328
|
"to_advanced": {
|
|
329
329
|
"type": "object",
|
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
"minItems": 1
|
|
348
348
|
},
|
|
349
349
|
"display_option": {
|
|
350
|
-
"$ref": "
|
|
350
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
351
351
|
}
|
|
352
352
|
},
|
|
353
353
|
"required": [
|
|
@@ -409,7 +409,7 @@
|
|
|
409
409
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
410
410
|
"type": "array",
|
|
411
411
|
"items": {
|
|
412
|
-
"$ref": "
|
|
412
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
413
413
|
},
|
|
414
414
|
"minItems": 1
|
|
415
415
|
}
|
|
@@ -453,7 +453,7 @@
|
|
|
453
453
|
"type": "boolean"
|
|
454
454
|
},
|
|
455
455
|
"display_option": {
|
|
456
|
-
"$ref": "
|
|
456
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
457
457
|
}
|
|
458
458
|
},
|
|
459
459
|
"required": [
|
|
@@ -480,7 +480,7 @@
|
|
|
480
480
|
"properties": {
|
|
481
481
|
"external_entry": {
|
|
482
482
|
"description": "The possible advanced special abilities.",
|
|
483
|
-
"$ref": "
|
|
483
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
484
484
|
},
|
|
485
485
|
"map": {
|
|
486
486
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
"properties": {
|
|
492
492
|
"from_option": {
|
|
493
493
|
"description": "The select option's identifier.",
|
|
494
|
-
"$ref": "
|
|
494
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
495
495
|
},
|
|
496
496
|
"to_advanced": {
|
|
497
497
|
"type": "object",
|
|
@@ -515,7 +515,7 @@
|
|
|
515
515
|
"minItems": 1
|
|
516
516
|
},
|
|
517
517
|
"display_option": {
|
|
518
|
-
"$ref": "
|
|
518
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
519
519
|
}
|
|
520
520
|
},
|
|
521
521
|
"required": [
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
68
68
|
"type": "array",
|
|
69
69
|
"items": {
|
|
70
|
-
"$ref": "
|
|
70
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
71
71
|
},
|
|
72
72
|
"minItems": 1
|
|
73
73
|
}
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"type": "boolean"
|
|
112
112
|
},
|
|
113
113
|
"display_option": {
|
|
114
|
-
"$ref": "
|
|
114
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
115
115
|
}
|
|
116
116
|
},
|
|
117
117
|
"required": [
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
"properties": {
|
|
139
139
|
"external_entry": {
|
|
140
140
|
"description": "The possible advanced special abilities.",
|
|
141
|
-
"$ref": "
|
|
141
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
142
142
|
},
|
|
143
143
|
"map": {
|
|
144
144
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"properties": {
|
|
150
150
|
"from_option": {
|
|
151
151
|
"description": "The select option's identifier.",
|
|
152
|
-
"$ref": "
|
|
152
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
153
153
|
},
|
|
154
154
|
"to_advanced": {
|
|
155
155
|
"type": "object",
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"minItems": 1
|
|
174
174
|
},
|
|
175
175
|
"display_option": {
|
|
176
|
-
"$ref": "
|
|
176
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
177
177
|
}
|
|
178
178
|
},
|
|
179
179
|
"required": [
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
236
236
|
"type": "array",
|
|
237
237
|
"items": {
|
|
238
|
-
"$ref": "
|
|
238
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
239
239
|
},
|
|
240
240
|
"minItems": 1
|
|
241
241
|
}
|
|
@@ -279,7 +279,7 @@
|
|
|
279
279
|
"type": "boolean"
|
|
280
280
|
},
|
|
281
281
|
"display_option": {
|
|
282
|
-
"$ref": "
|
|
282
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
283
283
|
}
|
|
284
284
|
},
|
|
285
285
|
"required": [
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
"properties": {
|
|
307
307
|
"external_entry": {
|
|
308
308
|
"description": "The possible advanced special abilities.",
|
|
309
|
-
"$ref": "
|
|
309
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
310
310
|
},
|
|
311
311
|
"map": {
|
|
312
312
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"properties": {
|
|
318
318
|
"from_option": {
|
|
319
319
|
"description": "The select option's identifier.",
|
|
320
|
-
"$ref": "
|
|
320
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
321
321
|
},
|
|
322
322
|
"to_advanced": {
|
|
323
323
|
"type": "object",
|
|
@@ -341,7 +341,7 @@
|
|
|
341
341
|
"minItems": 1
|
|
342
342
|
},
|
|
343
343
|
"display_option": {
|
|
344
|
-
"$ref": "
|
|
344
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
345
345
|
}
|
|
346
346
|
},
|
|
347
347
|
"required": [
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"description": "Specify the select option(s) that only are allowed for the referenced\nadvanced special ability; others are disallowed.",
|
|
404
404
|
"type": "array",
|
|
405
405
|
"items": {
|
|
406
|
-
"$ref": "
|
|
406
|
+
"$ref": "../_IdentifierGroup.schema.json#/$defs/AdvancedSpecialAbilityRestrictedOptionIdentifier"
|
|
407
407
|
},
|
|
408
408
|
"minItems": 1
|
|
409
409
|
}
|
|
@@ -447,7 +447,7 @@
|
|
|
447
447
|
"type": "boolean"
|
|
448
448
|
},
|
|
449
449
|
"display_option": {
|
|
450
|
-
"$ref": "
|
|
450
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
451
451
|
}
|
|
452
452
|
},
|
|
453
453
|
"required": [
|
|
@@ -474,7 +474,7 @@
|
|
|
474
474
|
"properties": {
|
|
475
475
|
"external_entry": {
|
|
476
476
|
"description": "The possible advanced special abilities.",
|
|
477
|
-
"$ref": "
|
|
477
|
+
"$ref": "../_Identifier.schema.json#/$defs/MagicalTraditionIdentifier"
|
|
478
478
|
},
|
|
479
479
|
"map": {
|
|
480
480
|
"description": "Map options from the external entry to allowed advanced special abilities.",
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
"properties": {
|
|
486
486
|
"from_option": {
|
|
487
487
|
"description": "The select option's identifier.",
|
|
488
|
-
"$ref": "
|
|
488
|
+
"$ref": "../_Identifier.schema.json#/$defs/PatronIdentifier"
|
|
489
489
|
},
|
|
490
490
|
"to_advanced": {
|
|
491
491
|
"type": "object",
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
"minItems": 1
|
|
510
510
|
},
|
|
511
511
|
"display_option": {
|
|
512
|
-
"$ref": "
|
|
512
|
+
"$ref": "../prerequisites/DisplayOption.schema.json#/$defs/DisplayOption"
|
|
513
513
|
}
|
|
514
514
|
},
|
|
515
515
|
"required": [
|