5etools-utils 0.9.34 → 0.9.36
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/backgrounds.json +10 -1
- package/schema/brew/citations.json +48 -0
- package/schema/brew/homebrew.json +4 -1
- package/schema/brew-fast/backgrounds.json +10 -1
- package/schema/brew-fast/citations.json +48 -0
- package/schema/brew-fast/homebrew.json +4 -1
- package/schema/site/backgrounds.json +10 -1
- package/schema/site/citations.json +48 -0
- package/schema/site/homebrew.json +4 -1
- package/schema/site-fast/backgrounds.json +10 -1
- package/schema/site-fast/citations.json +48 -0
- package/schema/site-fast/homebrew.json +4 -1
- package/schema/ua/backgrounds.json +10 -1
- package/schema/ua/citations.json +48 -0
- package/schema/ua/homebrew.json +4 -1
- package/schema/ua-fast/backgrounds.json +10 -1
- package/schema/ua-fast/citations.json +48 -0
- package/schema/ua-fast/homebrew.json +4 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -143,6 +146,9 @@
|
|
|
143
146
|
"languageProficiencies": {
|
|
144
147
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
145
148
|
},
|
|
149
|
+
"skillToolLanguageProficiencies": {
|
|
150
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
151
|
+
},
|
|
146
152
|
"weaponProficiencies": {
|
|
147
153
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
148
154
|
},
|
|
@@ -261,6 +267,9 @@
|
|
|
261
267
|
"languageProficiencies": {
|
|
262
268
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
263
269
|
},
|
|
270
|
+
"skillToolLanguageProficiencies": {
|
|
271
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
272
|
+
},
|
|
264
273
|
"weaponProficiencies": {
|
|
265
274
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
266
275
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -643,6 +643,9 @@
|
|
|
643
643
|
},
|
|
644
644
|
"card": {
|
|
645
645
|
"$ref": "decks.json#/properties/card"
|
|
646
|
+
},
|
|
647
|
+
"citation": {
|
|
648
|
+
"$ref": "citations.json#/properties/citation"
|
|
646
649
|
}
|
|
647
650
|
},
|
|
648
651
|
"additionalProperties": false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -143,6 +146,9 @@
|
|
|
143
146
|
"languageProficiencies": {
|
|
144
147
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
145
148
|
},
|
|
149
|
+
"skillToolLanguageProficiencies": {
|
|
150
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
151
|
+
},
|
|
146
152
|
"weaponProficiencies": {
|
|
147
153
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
148
154
|
},
|
|
@@ -261,6 +267,9 @@
|
|
|
261
267
|
"languageProficiencies": {
|
|
262
268
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
263
269
|
},
|
|
270
|
+
"skillToolLanguageProficiencies": {
|
|
271
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
272
|
+
},
|
|
264
273
|
"weaponProficiencies": {
|
|
265
274
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
266
275
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -641,6 +641,9 @@
|
|
|
641
641
|
},
|
|
642
642
|
"card": {
|
|
643
643
|
"$ref": "decks.json#/properties/card"
|
|
644
|
+
},
|
|
645
|
+
"citation": {
|
|
646
|
+
"$ref": "citations.json#/properties/citation"
|
|
644
647
|
}
|
|
645
648
|
},
|
|
646
649
|
"additionalProperties": false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -109,6 +112,9 @@
|
|
|
109
112
|
"languageProficiencies": {
|
|
110
113
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
111
114
|
},
|
|
115
|
+
"skillToolLanguageProficiencies": {
|
|
116
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
117
|
+
},
|
|
112
118
|
"weaponProficiencies": {
|
|
113
119
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
114
120
|
},
|
|
@@ -194,6 +200,9 @@
|
|
|
194
200
|
"languageProficiencies": {
|
|
195
201
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
196
202
|
},
|
|
203
|
+
"skillToolLanguageProficiencies": {
|
|
204
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
205
|
+
},
|
|
197
206
|
"weaponProficiencies": {
|
|
198
207
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
199
208
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -643,6 +643,9 @@
|
|
|
643
643
|
},
|
|
644
644
|
"card": {
|
|
645
645
|
"$ref": "decks.json#/properties/card"
|
|
646
|
+
},
|
|
647
|
+
"citation": {
|
|
648
|
+
"$ref": "citations.json#/properties/citation"
|
|
646
649
|
}
|
|
647
650
|
},
|
|
648
651
|
"additionalProperties": false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -109,6 +112,9 @@
|
|
|
109
112
|
"languageProficiencies": {
|
|
110
113
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
111
114
|
},
|
|
115
|
+
"skillToolLanguageProficiencies": {
|
|
116
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
117
|
+
},
|
|
112
118
|
"weaponProficiencies": {
|
|
113
119
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
114
120
|
},
|
|
@@ -194,6 +200,9 @@
|
|
|
194
200
|
"languageProficiencies": {
|
|
195
201
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
196
202
|
},
|
|
203
|
+
"skillToolLanguageProficiencies": {
|
|
204
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
205
|
+
},
|
|
197
206
|
"weaponProficiencies": {
|
|
198
207
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
199
208
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -641,6 +641,9 @@
|
|
|
641
641
|
},
|
|
642
642
|
"card": {
|
|
643
643
|
"$ref": "decks.json#/properties/card"
|
|
644
|
+
},
|
|
645
|
+
"citation": {
|
|
646
|
+
"$ref": "citations.json#/properties/citation"
|
|
644
647
|
}
|
|
645
648
|
},
|
|
646
649
|
"additionalProperties": false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -113,6 +116,9 @@
|
|
|
113
116
|
"languageProficiencies": {
|
|
114
117
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
115
118
|
},
|
|
119
|
+
"skillToolLanguageProficiencies": {
|
|
120
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
121
|
+
},
|
|
116
122
|
"weaponProficiencies": {
|
|
117
123
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
118
124
|
},
|
|
@@ -201,6 +207,9 @@
|
|
|
201
207
|
"languageProficiencies": {
|
|
202
208
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
203
209
|
},
|
|
210
|
+
"skillToolLanguageProficiencies": {
|
|
211
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
212
|
+
},
|
|
204
213
|
"weaponProficiencies": {
|
|
205
214
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
206
215
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
package/schema/ua/homebrew.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -643,6 +643,9 @@
|
|
|
643
643
|
},
|
|
644
644
|
"card": {
|
|
645
645
|
"$ref": "decks.json#/properties/card"
|
|
646
|
+
},
|
|
647
|
+
"citation": {
|
|
648
|
+
"$ref": "citations.json#/properties/citation"
|
|
646
649
|
}
|
|
647
650
|
},
|
|
648
651
|
"additionalProperties": false,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"languageProficiencies": {
|
|
29
29
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
30
30
|
},
|
|
31
|
+
"skillToolLanguageProficiencies": {
|
|
32
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
33
|
+
},
|
|
31
34
|
"weaponProficiencies": {
|
|
32
35
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
33
36
|
},
|
|
@@ -113,6 +116,9 @@
|
|
|
113
116
|
"languageProficiencies": {
|
|
114
117
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
115
118
|
},
|
|
119
|
+
"skillToolLanguageProficiencies": {
|
|
120
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
121
|
+
},
|
|
116
122
|
"weaponProficiencies": {
|
|
117
123
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
118
124
|
},
|
|
@@ -201,6 +207,9 @@
|
|
|
201
207
|
"languageProficiencies": {
|
|
202
208
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
203
209
|
},
|
|
210
|
+
"skillToolLanguageProficiencies": {
|
|
211
|
+
"$ref": "util.json#/$defs/skillToolLanguageProficiencies"
|
|
212
|
+
},
|
|
204
213
|
"weaponProficiencies": {
|
|
205
214
|
"$ref": "util.json#/$defs/weaponProficiencies"
|
|
206
215
|
},
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "citations.json",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"$defs": {
|
|
7
|
+
"citation": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"properties": {
|
|
10
|
+
"name": {
|
|
11
|
+
"type": "string"
|
|
12
|
+
},
|
|
13
|
+
"source": {
|
|
14
|
+
"$ref": "util.json#/$defs/source"
|
|
15
|
+
},
|
|
16
|
+
"page": {
|
|
17
|
+
"$ref": "util.json#/$defs/page"
|
|
18
|
+
},
|
|
19
|
+
"entries": {
|
|
20
|
+
"type": "array",
|
|
21
|
+
"items": {
|
|
22
|
+
"$ref": "entry.json"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"required": [
|
|
27
|
+
"name",
|
|
28
|
+
"source",
|
|
29
|
+
"entries"
|
|
30
|
+
],
|
|
31
|
+
"additionalProperties": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"properties": {
|
|
35
|
+
"citation": {
|
|
36
|
+
"type": "array",
|
|
37
|
+
"minItems": 1,
|
|
38
|
+
"uniqueItems": true,
|
|
39
|
+
"items": {
|
|
40
|
+
"$ref": "#/$defs/citation"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"required": [
|
|
45
|
+
"citation"
|
|
46
|
+
],
|
|
47
|
+
"additionalProperties": false
|
|
48
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.16",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -641,6 +641,9 @@
|
|
|
641
641
|
},
|
|
642
642
|
"card": {
|
|
643
643
|
"$ref": "decks.json#/properties/card"
|
|
644
|
+
},
|
|
645
|
+
"citation": {
|
|
646
|
+
"$ref": "citations.json#/properties/citation"
|
|
644
647
|
}
|
|
645
648
|
},
|
|
646
649
|
"additionalProperties": false,
|