5etools-utils 0.16.35 → 0.16.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/brew/decks.json +140 -1
- package/schema/brew/entry.json +70 -28
- package/schema/brew-fast/decks.json +140 -1
- package/schema/brew-fast/entry.json +70 -28
- package/schema/site/decks.json +140 -1
- package/schema/site/entry.json +94 -40
- package/schema/site-fast/decks.json +140 -1
- package/schema/site-fast/entry.json +94 -40
- package/schema/ua/decks.json +140 -1
- package/schema/ua/entry.json +70 -28
- package/schema/ua-fast/decks.json +140 -1
- package/schema/ua-fast/entry.json +70 -28
package/schema/ua/decks.json
CHANGED
|
@@ -1,9 +1,124 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "decks.json",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
+
"_deckSpreadOutcomesCardMap": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"propertyNames": {
|
|
10
|
+
"pattern": "^[^A-Z|]+\\|[^A-Z|]+\\|[^A-Z|]+$"
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"minProperties": 1
|
|
16
|
+
},
|
|
17
|
+
"_deckSpreadOutcomesCorpusMap": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"additionalProperties": {
|
|
20
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCardMap"
|
|
21
|
+
},
|
|
22
|
+
"minProperties": 1
|
|
23
|
+
},
|
|
24
|
+
"_deckSpreadOutcomes": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"adventure": {
|
|
28
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCorpusMap"
|
|
29
|
+
},
|
|
30
|
+
"book": {
|
|
31
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCorpusMap"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"minProperties": 1,
|
|
35
|
+
"additionalProperties": false
|
|
36
|
+
},
|
|
37
|
+
"_deckSpreadSeeAlsoHeader": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "UIDs of adventure/book headers to be linked as a footnote.\n\nE.g. \"Fortunes of Ravenloft|CoS|2|Fortunes of Ravenloft\".",
|
|
42
|
+
"markdownDescription": "UIDs of adventure/book headers to be linked as a footnote.\n\nE.g. "Fortunes of Ravenloft|CoS|2|Fortunes of Ravenloft"."
|
|
43
|
+
},
|
|
44
|
+
"minItems": 1,
|
|
45
|
+
"uniqueItems": true
|
|
46
|
+
},
|
|
47
|
+
"_deckSpreadPosition": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"properties": {
|
|
50
|
+
"name": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"entries": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": {
|
|
56
|
+
"$ref": "entry.json"
|
|
57
|
+
},
|
|
58
|
+
"minItems": 1
|
|
59
|
+
},
|
|
60
|
+
"suits": {
|
|
61
|
+
"$comment": "The suits this position may draw from; \"None\" matches cards which have no suit. Omit to draw from the whole deck.",
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"minItems": 1,
|
|
67
|
+
"uniqueItems": true
|
|
68
|
+
},
|
|
69
|
+
"outcomes": {
|
|
70
|
+
"$comment": "Card outcomes specific to this position. These override spread-level outcomes.",
|
|
71
|
+
"$ref": "#/$defs/_deckSpreadOutcomes"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"entries"
|
|
76
|
+
],
|
|
77
|
+
"additionalProperties": false
|
|
78
|
+
},
|
|
79
|
+
"_deckSpread": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"properties": {
|
|
82
|
+
"name": {
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
"source": {
|
|
86
|
+
"$ref": "util.json#/$defs/source"
|
|
87
|
+
},
|
|
88
|
+
"page": {
|
|
89
|
+
"$ref": "util.json#/$defs/page"
|
|
90
|
+
},
|
|
91
|
+
"entries": {
|
|
92
|
+
"type": "array",
|
|
93
|
+
"items": {
|
|
94
|
+
"$ref": "entry.json"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"seeAlsoAdventureHeader": {
|
|
98
|
+
"$ref": "#/$defs/_deckSpreadSeeAlsoHeader"
|
|
99
|
+
},
|
|
100
|
+
"seeAlsoBookHeader": {
|
|
101
|
+
"$ref": "#/$defs/_deckSpreadSeeAlsoHeader"
|
|
102
|
+
},
|
|
103
|
+
"positions": {
|
|
104
|
+
"type": "array",
|
|
105
|
+
"items": {
|
|
106
|
+
"$ref": "#/$defs/_deckSpreadPosition"
|
|
107
|
+
},
|
|
108
|
+
"minItems": 1
|
|
109
|
+
},
|
|
110
|
+
"outcomes": {
|
|
111
|
+
"$comment": "Card outcomes shared by all positions.",
|
|
112
|
+
"$ref": "#/$defs/_deckSpreadOutcomes"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"required": [
|
|
116
|
+
"name",
|
|
117
|
+
"source",
|
|
118
|
+
"positions"
|
|
119
|
+
],
|
|
120
|
+
"additionalProperties": false
|
|
121
|
+
},
|
|
7
122
|
"deckData": {
|
|
8
123
|
"type": "object",
|
|
9
124
|
"properties": {
|
|
@@ -65,6 +180,14 @@
|
|
|
65
180
|
"$ref": "entry.json"
|
|
66
181
|
}
|
|
67
182
|
},
|
|
183
|
+
"spreads": {
|
|
184
|
+
"type": "array",
|
|
185
|
+
"items": {
|
|
186
|
+
"$ref": "#/$defs/_deckSpread"
|
|
187
|
+
},
|
|
188
|
+
"minItems": 1,
|
|
189
|
+
"uniqueItems": true
|
|
190
|
+
},
|
|
68
191
|
"back": {
|
|
69
192
|
"$ref": "entry.json#/$defs/entryImage"
|
|
70
193
|
},
|
|
@@ -139,6 +262,14 @@
|
|
|
139
262
|
"$ref": "entry.json"
|
|
140
263
|
}
|
|
141
264
|
},
|
|
265
|
+
"spreads": {
|
|
266
|
+
"type": "array",
|
|
267
|
+
"items": {
|
|
268
|
+
"$ref": "#/$defs/_deckSpread"
|
|
269
|
+
},
|
|
270
|
+
"minItems": 1,
|
|
271
|
+
"uniqueItems": true
|
|
272
|
+
},
|
|
142
273
|
"back": {
|
|
143
274
|
"$ref": "entry.json#/$defs/entryImage"
|
|
144
275
|
},
|
|
@@ -216,6 +347,14 @@
|
|
|
216
347
|
"$ref": "entry.json"
|
|
217
348
|
}
|
|
218
349
|
},
|
|
350
|
+
"spreads": {
|
|
351
|
+
"type": "array",
|
|
352
|
+
"items": {
|
|
353
|
+
"$ref": "#/$defs/_deckSpread"
|
|
354
|
+
},
|
|
355
|
+
"minItems": 1,
|
|
356
|
+
"uniqueItems": true
|
|
357
|
+
},
|
|
219
358
|
"back": {
|
|
220
359
|
"$ref": "entry.json#/$defs/entryImage"
|
|
221
360
|
},
|
package/schema/ua/entry.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.10.
|
|
6
|
+
"version": "1.10.1",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3741,34 +3741,76 @@
|
|
|
3741
3741
|
"additionalProperties": false
|
|
3742
3742
|
},
|
|
3743
3743
|
"entryWrapped": {
|
|
3744
|
-
"
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
"
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3744
|
+
"oneOf": [
|
|
3745
|
+
{
|
|
3746
|
+
"type": "object",
|
|
3747
|
+
"properties": {
|
|
3748
|
+
"name": {
|
|
3749
|
+
"type": "string"
|
|
3750
|
+
},
|
|
3751
|
+
"type": {
|
|
3752
|
+
"type": "string",
|
|
3753
|
+
"const": "wrapper"
|
|
3754
|
+
},
|
|
3755
|
+
"source": {
|
|
3756
|
+
"$ref": "util.json#/$defs/source"
|
|
3757
|
+
},
|
|
3758
|
+
"page": {
|
|
3759
|
+
"$ref": "util.json#/$defs/page"
|
|
3760
|
+
},
|
|
3761
|
+
"data": {
|
|
3762
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3763
|
+
},
|
|
3764
|
+
"id": {
|
|
3765
|
+
"type": "string"
|
|
3766
|
+
},
|
|
3767
|
+
"wrapped": {
|
|
3768
|
+
"$ref": "#"
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3771
|
+
"required": [
|
|
3772
|
+
"type",
|
|
3773
|
+
"wrapped"
|
|
3774
|
+
],
|
|
3775
|
+
"additionalProperties": false
|
|
3764
3776
|
},
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3777
|
+
{
|
|
3778
|
+
"type": "object",
|
|
3779
|
+
"properties": {
|
|
3780
|
+
"name": {
|
|
3781
|
+
"type": "string"
|
|
3782
|
+
},
|
|
3783
|
+
"type": {
|
|
3784
|
+
"type": "string",
|
|
3785
|
+
"const": "wrapper"
|
|
3786
|
+
},
|
|
3787
|
+
"source": {
|
|
3788
|
+
"$ref": "util.json#/$defs/source"
|
|
3789
|
+
},
|
|
3790
|
+
"page": {
|
|
3791
|
+
"$ref": "util.json#/$defs/page"
|
|
3792
|
+
},
|
|
3793
|
+
"data": {
|
|
3794
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3795
|
+
},
|
|
3796
|
+
"id": {
|
|
3797
|
+
"type": "string"
|
|
3798
|
+
},
|
|
3799
|
+
"wrappeds": {
|
|
3800
|
+
"type": "array",
|
|
3801
|
+
"items": {
|
|
3802
|
+
"$ref": "#"
|
|
3803
|
+
},
|
|
3804
|
+
"minItems": 1
|
|
3805
|
+
}
|
|
3806
|
+
},
|
|
3807
|
+
"required": [
|
|
3808
|
+
"type",
|
|
3809
|
+
"wrappeds"
|
|
3810
|
+
],
|
|
3811
|
+
"additionalProperties": false
|
|
3812
|
+
}
|
|
3813
|
+
]
|
|
3772
3814
|
},
|
|
3773
3815
|
"dataDamImmune": {
|
|
3774
3816
|
"oneOf": [
|
|
@@ -1,9 +1,124 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "decks.json",
|
|
4
|
-
"version": "1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
|
+
"_deckSpreadOutcomesCardMap": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"propertyNames": {
|
|
10
|
+
"pattern": "^[^A-Z|]+\\|[^A-Z|]+\\|[^A-Z|]+$"
|
|
11
|
+
},
|
|
12
|
+
"additionalProperties": {
|
|
13
|
+
"type": "string"
|
|
14
|
+
},
|
|
15
|
+
"minProperties": 1
|
|
16
|
+
},
|
|
17
|
+
"_deckSpreadOutcomesCorpusMap": {
|
|
18
|
+
"type": "object",
|
|
19
|
+
"additionalProperties": {
|
|
20
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCardMap"
|
|
21
|
+
},
|
|
22
|
+
"minProperties": 1
|
|
23
|
+
},
|
|
24
|
+
"_deckSpreadOutcomes": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"properties": {
|
|
27
|
+
"adventure": {
|
|
28
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCorpusMap"
|
|
29
|
+
},
|
|
30
|
+
"book": {
|
|
31
|
+
"$ref": "#/$defs/_deckSpreadOutcomesCorpusMap"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"minProperties": 1,
|
|
35
|
+
"additionalProperties": false
|
|
36
|
+
},
|
|
37
|
+
"_deckSpreadSeeAlsoHeader": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "string",
|
|
41
|
+
"description": "UIDs of adventure/book headers to be linked as a footnote.\n\nE.g. \"Fortunes of Ravenloft|CoS|2|Fortunes of Ravenloft\".",
|
|
42
|
+
"markdownDescription": "UIDs of adventure/book headers to be linked as a footnote.\n\nE.g. "Fortunes of Ravenloft|CoS|2|Fortunes of Ravenloft"."
|
|
43
|
+
},
|
|
44
|
+
"minItems": 1,
|
|
45
|
+
"uniqueItems": true
|
|
46
|
+
},
|
|
47
|
+
"_deckSpreadPosition": {
|
|
48
|
+
"type": "object",
|
|
49
|
+
"properties": {
|
|
50
|
+
"name": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"entries": {
|
|
54
|
+
"type": "array",
|
|
55
|
+
"items": {
|
|
56
|
+
"$ref": "entry.json"
|
|
57
|
+
},
|
|
58
|
+
"minItems": 1
|
|
59
|
+
},
|
|
60
|
+
"suits": {
|
|
61
|
+
"$comment": "The suits this position may draw from; \"None\" matches cards which have no suit. Omit to draw from the whole deck.",
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": {
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"minItems": 1,
|
|
67
|
+
"uniqueItems": true
|
|
68
|
+
},
|
|
69
|
+
"outcomes": {
|
|
70
|
+
"$comment": "Card outcomes specific to this position. These override spread-level outcomes.",
|
|
71
|
+
"$ref": "#/$defs/_deckSpreadOutcomes"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"required": [
|
|
75
|
+
"entries"
|
|
76
|
+
],
|
|
77
|
+
"additionalProperties": false
|
|
78
|
+
},
|
|
79
|
+
"_deckSpread": {
|
|
80
|
+
"type": "object",
|
|
81
|
+
"properties": {
|
|
82
|
+
"name": {
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
"source": {
|
|
86
|
+
"$ref": "util.json#/$defs/source"
|
|
87
|
+
},
|
|
88
|
+
"page": {
|
|
89
|
+
"$ref": "util.json#/$defs/page"
|
|
90
|
+
},
|
|
91
|
+
"entries": {
|
|
92
|
+
"type": "array",
|
|
93
|
+
"items": {
|
|
94
|
+
"$ref": "entry.json"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"seeAlsoAdventureHeader": {
|
|
98
|
+
"$ref": "#/$defs/_deckSpreadSeeAlsoHeader"
|
|
99
|
+
},
|
|
100
|
+
"seeAlsoBookHeader": {
|
|
101
|
+
"$ref": "#/$defs/_deckSpreadSeeAlsoHeader"
|
|
102
|
+
},
|
|
103
|
+
"positions": {
|
|
104
|
+
"type": "array",
|
|
105
|
+
"items": {
|
|
106
|
+
"$ref": "#/$defs/_deckSpreadPosition"
|
|
107
|
+
},
|
|
108
|
+
"minItems": 1
|
|
109
|
+
},
|
|
110
|
+
"outcomes": {
|
|
111
|
+
"$comment": "Card outcomes shared by all positions.",
|
|
112
|
+
"$ref": "#/$defs/_deckSpreadOutcomes"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"required": [
|
|
116
|
+
"name",
|
|
117
|
+
"source",
|
|
118
|
+
"positions"
|
|
119
|
+
],
|
|
120
|
+
"additionalProperties": false
|
|
121
|
+
},
|
|
7
122
|
"deckData": {
|
|
8
123
|
"type": "object",
|
|
9
124
|
"properties": {
|
|
@@ -65,6 +180,14 @@
|
|
|
65
180
|
"$ref": "entry.json"
|
|
66
181
|
}
|
|
67
182
|
},
|
|
183
|
+
"spreads": {
|
|
184
|
+
"type": "array",
|
|
185
|
+
"items": {
|
|
186
|
+
"$ref": "#/$defs/_deckSpread"
|
|
187
|
+
},
|
|
188
|
+
"minItems": 1,
|
|
189
|
+
"uniqueItems": true
|
|
190
|
+
},
|
|
68
191
|
"back": {
|
|
69
192
|
"$ref": "entry.json#/$defs/entryImage"
|
|
70
193
|
},
|
|
@@ -139,6 +262,14 @@
|
|
|
139
262
|
"$ref": "entry.json"
|
|
140
263
|
}
|
|
141
264
|
},
|
|
265
|
+
"spreads": {
|
|
266
|
+
"type": "array",
|
|
267
|
+
"items": {
|
|
268
|
+
"$ref": "#/$defs/_deckSpread"
|
|
269
|
+
},
|
|
270
|
+
"minItems": 1,
|
|
271
|
+
"uniqueItems": true
|
|
272
|
+
},
|
|
142
273
|
"back": {
|
|
143
274
|
"$ref": "entry.json#/$defs/entryImage"
|
|
144
275
|
},
|
|
@@ -216,6 +347,14 @@
|
|
|
216
347
|
"$ref": "entry.json"
|
|
217
348
|
}
|
|
218
349
|
},
|
|
350
|
+
"spreads": {
|
|
351
|
+
"type": "array",
|
|
352
|
+
"items": {
|
|
353
|
+
"$ref": "#/$defs/_deckSpread"
|
|
354
|
+
},
|
|
355
|
+
"minItems": 1,
|
|
356
|
+
"uniqueItems": true
|
|
357
|
+
},
|
|
219
358
|
"back": {
|
|
220
359
|
"$ref": "entry.json#/$defs/entryImage"
|
|
221
360
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.10.
|
|
6
|
+
"version": "1.10.1",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3741,34 +3741,76 @@
|
|
|
3741
3741
|
"additionalProperties": false
|
|
3742
3742
|
},
|
|
3743
3743
|
"entryWrapped": {
|
|
3744
|
-
"
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
"
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3744
|
+
"oneOf": [
|
|
3745
|
+
{
|
|
3746
|
+
"type": "object",
|
|
3747
|
+
"properties": {
|
|
3748
|
+
"name": {
|
|
3749
|
+
"type": "string"
|
|
3750
|
+
},
|
|
3751
|
+
"type": {
|
|
3752
|
+
"type": "string",
|
|
3753
|
+
"const": "wrapper"
|
|
3754
|
+
},
|
|
3755
|
+
"source": {
|
|
3756
|
+
"$ref": "util.json#/$defs/source"
|
|
3757
|
+
},
|
|
3758
|
+
"page": {
|
|
3759
|
+
"$ref": "util.json#/$defs/page"
|
|
3760
|
+
},
|
|
3761
|
+
"data": {
|
|
3762
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3763
|
+
},
|
|
3764
|
+
"id": {
|
|
3765
|
+
"type": "string"
|
|
3766
|
+
},
|
|
3767
|
+
"wrapped": {
|
|
3768
|
+
"$ref": "#"
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3771
|
+
"required": [
|
|
3772
|
+
"type",
|
|
3773
|
+
"wrapped"
|
|
3774
|
+
],
|
|
3775
|
+
"additionalProperties": false
|
|
3764
3776
|
},
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3777
|
+
{
|
|
3778
|
+
"type": "object",
|
|
3779
|
+
"properties": {
|
|
3780
|
+
"name": {
|
|
3781
|
+
"type": "string"
|
|
3782
|
+
},
|
|
3783
|
+
"type": {
|
|
3784
|
+
"type": "string",
|
|
3785
|
+
"const": "wrapper"
|
|
3786
|
+
},
|
|
3787
|
+
"source": {
|
|
3788
|
+
"$ref": "util.json#/$defs/source"
|
|
3789
|
+
},
|
|
3790
|
+
"page": {
|
|
3791
|
+
"$ref": "util.json#/$defs/page"
|
|
3792
|
+
},
|
|
3793
|
+
"data": {
|
|
3794
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3795
|
+
},
|
|
3796
|
+
"id": {
|
|
3797
|
+
"type": "string"
|
|
3798
|
+
},
|
|
3799
|
+
"wrappeds": {
|
|
3800
|
+
"type": "array",
|
|
3801
|
+
"items": {
|
|
3802
|
+
"$ref": "#"
|
|
3803
|
+
},
|
|
3804
|
+
"minItems": 1
|
|
3805
|
+
}
|
|
3806
|
+
},
|
|
3807
|
+
"required": [
|
|
3808
|
+
"type",
|
|
3809
|
+
"wrappeds"
|
|
3810
|
+
],
|
|
3811
|
+
"additionalProperties": false
|
|
3812
|
+
}
|
|
3813
|
+
]
|
|
3772
3814
|
},
|
|
3773
3815
|
"dataDamImmune": {
|
|
3774
3816
|
"oneOf": [
|