5etools-utils 0.9.56 → 0.9.58

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 (37) hide show
  1. package/package.json +1 -1
  2. package/schema/brew/adventures.json +6 -1
  3. package/schema/brew/bestiary/bestiary.json +34 -4
  4. package/schema/brew/books.json +6 -1
  5. package/schema/brew/entry.json +4 -0
  6. package/schema/brew/spells/spells.json +5 -4
  7. package/schema/brew/util.json +4 -1
  8. package/schema/brew-fast/adventures.json +6 -1
  9. package/schema/brew-fast/bestiary/bestiary.json +34 -4
  10. package/schema/brew-fast/books.json +6 -1
  11. package/schema/brew-fast/entry.json +4 -0
  12. package/schema/brew-fast/spells/spells.json +5 -4
  13. package/schema/brew-fast/util.json +4 -1
  14. package/schema/site/adventures.json +6 -1
  15. package/schema/site/bestiary/bestiary.json +7 -4
  16. package/schema/site/books.json +6 -1
  17. package/schema/site/entry.json +4 -0
  18. package/schema/site/spells/spells.json +5 -4
  19. package/schema/site/util.json +4 -1
  20. package/schema/site-fast/adventures.json +6 -1
  21. package/schema/site-fast/bestiary/bestiary.json +7 -4
  22. package/schema/site-fast/books.json +6 -1
  23. package/schema/site-fast/entry.json +4 -0
  24. package/schema/site-fast/spells/spells.json +5 -4
  25. package/schema/site-fast/util.json +4 -1
  26. package/schema/ua/adventures.json +6 -1
  27. package/schema/ua/bestiary/bestiary.json +7 -4
  28. package/schema/ua/books.json +6 -1
  29. package/schema/ua/entry.json +4 -0
  30. package/schema/ua/spells/spells.json +5 -4
  31. package/schema/ua/util.json +4 -1
  32. package/schema/ua-fast/adventures.json +6 -1
  33. package/schema/ua-fast/bestiary/bestiary.json +7 -4
  34. package/schema/ua-fast/books.json +6 -1
  35. package/schema/ua-fast/entry.json +4 -0
  36. package/schema/ua-fast/spells/spells.json +5 -4
  37. package/schema/ua-fast/util.json +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.9.56",
3
+ "version": "0.9.58",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "examples": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -896,7 +896,8 @@
896
896
  "required": [
897
897
  "name",
898
898
  "source"
899
- ]
899
+ ],
900
+ "additionalProperties": false
900
901
  },
901
902
  {
902
903
  "type": "object",
@@ -905,6 +906,15 @@
905
906
  "tokenUrl": {
906
907
  "type": "string"
907
908
  },
909
+ "name": {
910
+ "type": "string"
911
+ },
912
+ "source": {
913
+ "$ref": "../util.json#/$defs/source"
914
+ },
915
+ "page": {
916
+ "$ref": "../util.json#/$defs/page"
917
+ },
908
918
  "tokenCredit": {
909
919
  "type": "string"
910
920
  },
@@ -2094,7 +2104,8 @@
2094
2104
  "required": [
2095
2105
  "name",
2096
2106
  "source"
2097
- ]
2107
+ ],
2108
+ "additionalProperties": false
2098
2109
  },
2099
2110
  {
2100
2111
  "type": "object",
@@ -2103,6 +2114,15 @@
2103
2114
  "tokenUrl": {
2104
2115
  "type": "string"
2105
2116
  },
2117
+ "name": {
2118
+ "type": "string"
2119
+ },
2120
+ "source": {
2121
+ "$ref": "../util.json#/$defs/source"
2122
+ },
2123
+ "page": {
2124
+ "$ref": "../util.json#/$defs/page"
2125
+ },
2106
2126
  "tokenCredit": {
2107
2127
  "type": "string"
2108
2128
  },
@@ -3306,7 +3326,8 @@
3306
3326
  "required": [
3307
3327
  "name",
3308
3328
  "source"
3309
- ]
3329
+ ],
3330
+ "additionalProperties": false
3310
3331
  },
3311
3332
  {
3312
3333
  "type": "object",
@@ -3315,6 +3336,15 @@
3315
3336
  "tokenUrl": {
3316
3337
  "type": "string"
3317
3338
  },
3339
+ "name": {
3340
+ "type": "string"
3341
+ },
3342
+ "source": {
3343
+ "$ref": "../util.json#/$defs/source"
3344
+ },
3345
+ "page": {
3346
+ "$ref": "../util.json#/$defs/page"
3347
+ },
3318
3348
  "tokenCredit": {
3319
3349
  "type": "string"
3320
3350
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3323,6 +3323,9 @@
3323
3323
  "weekly": {
3324
3324
  "$ref": "#/$defs/entrySpellcasting_frequency"
3325
3325
  },
3326
+ "monthly": {
3327
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3328
+ },
3326
3329
  "yearly": {
3327
3330
  "$ref": "#/$defs/entrySpellcasting_frequency"
3328
3331
  },
@@ -3392,6 +3395,7 @@
3392
3395
  "rest",
3393
3396
  "daily",
3394
3397
  "weekly",
3398
+ "monthly",
3395
3399
  "yearly",
3396
3400
  "ritual",
3397
3401
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1681,12 +1681,13 @@
1681
1681
  "type": {
1682
1682
  "type": "string",
1683
1683
  "examples": [
1684
- "hour",
1685
- "minute",
1686
1684
  "turn",
1687
1685
  "round",
1688
- "week",
1686
+ "minute",
1687
+ "hour",
1689
1688
  "day",
1689
+ "week",
1690
+ "month",
1690
1691
  "year"
1691
1692
  ]
1692
1693
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3283,6 +3283,9 @@
3283
3283
  "weekly": {
3284
3284
  "type": "object"
3285
3285
  },
3286
+ "monthly": {
3287
+ "type": "object"
3288
+ },
3286
3289
  "yearly": {
3287
3290
  "type": "object"
3288
3291
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "examples": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -896,7 +896,8 @@
896
896
  "required": [
897
897
  "name",
898
898
  "source"
899
- ]
899
+ ],
900
+ "additionalProperties": false
900
901
  },
901
902
  {
902
903
  "type": "object",
@@ -905,6 +906,15 @@
905
906
  "tokenUrl": {
906
907
  "type": "string"
907
908
  },
909
+ "name": {
910
+ "type": "string"
911
+ },
912
+ "source": {
913
+ "$ref": "../util.json#/$defs/source"
914
+ },
915
+ "page": {
916
+ "$ref": "../util.json#/$defs/page"
917
+ },
908
918
  "tokenCredit": {
909
919
  "type": "string"
910
920
  },
@@ -2094,7 +2104,8 @@
2094
2104
  "required": [
2095
2105
  "name",
2096
2106
  "source"
2097
- ]
2107
+ ],
2108
+ "additionalProperties": false
2098
2109
  },
2099
2110
  {
2100
2111
  "type": "object",
@@ -2103,6 +2114,15 @@
2103
2114
  "tokenUrl": {
2104
2115
  "type": "string"
2105
2116
  },
2117
+ "name": {
2118
+ "type": "string"
2119
+ },
2120
+ "source": {
2121
+ "$ref": "../util.json#/$defs/source"
2122
+ },
2123
+ "page": {
2124
+ "$ref": "../util.json#/$defs/page"
2125
+ },
2106
2126
  "tokenCredit": {
2107
2127
  "type": "string"
2108
2128
  },
@@ -3306,7 +3326,8 @@
3306
3326
  "required": [
3307
3327
  "name",
3308
3328
  "source"
3309
- ]
3329
+ ],
3330
+ "additionalProperties": false
3310
3331
  },
3311
3332
  {
3312
3333
  "type": "object",
@@ -3315,6 +3336,15 @@
3315
3336
  "tokenUrl": {
3316
3337
  "type": "string"
3317
3338
  },
3339
+ "name": {
3340
+ "type": "string"
3341
+ },
3342
+ "source": {
3343
+ "$ref": "../util.json#/$defs/source"
3344
+ },
3345
+ "page": {
3346
+ "$ref": "../util.json#/$defs/page"
3347
+ },
3318
3348
  "tokenCredit": {
3319
3349
  "type": "string"
3320
3350
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3323,6 +3323,9 @@
3323
3323
  "weekly": {
3324
3324
  "$ref": "#/$defs/entrySpellcasting_frequency"
3325
3325
  },
3326
+ "monthly": {
3327
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3328
+ },
3326
3329
  "yearly": {
3327
3330
  "$ref": "#/$defs/entrySpellcasting_frequency"
3328
3331
  },
@@ -3392,6 +3395,7 @@
3392
3395
  "rest",
3393
3396
  "daily",
3394
3397
  "weekly",
3398
+ "monthly",
3395
3399
  "yearly",
3396
3400
  "ritual",
3397
3401
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1681,12 +1681,13 @@
1681
1681
  "type": {
1682
1682
  "type": "string",
1683
1683
  "examples": [
1684
- "hour",
1685
- "minute",
1686
1684
  "turn",
1687
1685
  "round",
1688
- "week",
1686
+ "minute",
1687
+ "hour",
1689
1688
  "day",
1689
+ "week",
1690
+ "month",
1690
1691
  "year"
1691
1692
  ]
1692
1693
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3283,6 +3283,9 @@
3283
3283
  "weekly": {
3284
3284
  "type": "object"
3285
3285
  },
3286
+ "monthly": {
3287
+ "type": "object"
3288
+ },
3286
3289
  "yearly": {
3287
3290
  "type": "object"
3288
3291
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "enum": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -888,7 +888,8 @@
888
888
  "required": [
889
889
  "name",
890
890
  "source"
891
- ]
891
+ ],
892
+ "additionalProperties": false
892
893
  }
893
894
  ]
894
895
  }
@@ -1980,7 +1981,8 @@
1980
1981
  "required": [
1981
1982
  "name",
1982
1983
  "source"
1983
- ]
1984
+ ],
1985
+ "additionalProperties": false
1984
1986
  }
1985
1987
  ]
1986
1988
  }
@@ -3086,7 +3088,8 @@
3086
3088
  "required": [
3087
3089
  "name",
3088
3090
  "source"
3089
- ]
3091
+ ],
3092
+ "additionalProperties": false
3090
3093
  }
3091
3094
  ]
3092
3095
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3280,6 +3280,9 @@
3280
3280
  "weekly": {
3281
3281
  "$ref": "#/$defs/entrySpellcasting_frequency"
3282
3282
  },
3283
+ "monthly": {
3284
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3285
+ },
3283
3286
  "yearly": {
3284
3287
  "$ref": "#/$defs/entrySpellcasting_frequency"
3285
3288
  },
@@ -3349,6 +3352,7 @@
3349
3352
  "rest",
3350
3353
  "daily",
3351
3354
  "weekly",
3355
+ "monthly",
3352
3356
  "yearly",
3353
3357
  "ritual",
3354
3358
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1042,12 +1042,13 @@
1042
1042
  "type": {
1043
1043
  "type": "string",
1044
1044
  "enum": [
1045
- "hour",
1046
- "minute",
1047
1045
  "turn",
1048
1046
  "round",
1049
- "week",
1047
+ "minute",
1048
+ "hour",
1050
1049
  "day",
1050
+ "week",
1051
+ "month",
1051
1052
  "year"
1052
1053
  ]
1053
1054
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3268,6 +3268,9 @@
3268
3268
  "weekly": {
3269
3269
  "type": "object"
3270
3270
  },
3271
+ "monthly": {
3272
+ "type": "object"
3273
+ },
3271
3274
  "yearly": {
3272
3275
  "type": "object"
3273
3276
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "enum": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -888,7 +888,8 @@
888
888
  "required": [
889
889
  "name",
890
890
  "source"
891
- ]
891
+ ],
892
+ "additionalProperties": false
892
893
  }
893
894
  ]
894
895
  }
@@ -1980,7 +1981,8 @@
1980
1981
  "required": [
1981
1982
  "name",
1982
1983
  "source"
1983
- ]
1984
+ ],
1985
+ "additionalProperties": false
1984
1986
  }
1985
1987
  ]
1986
1988
  }
@@ -3086,7 +3088,8 @@
3086
3088
  "required": [
3087
3089
  "name",
3088
3090
  "source"
3089
- ]
3091
+ ],
3092
+ "additionalProperties": false
3090
3093
  }
3091
3094
  ]
3092
3095
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3280,6 +3280,9 @@
3280
3280
  "weekly": {
3281
3281
  "$ref": "#/$defs/entrySpellcasting_frequency"
3282
3282
  },
3283
+ "monthly": {
3284
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3285
+ },
3283
3286
  "yearly": {
3284
3287
  "$ref": "#/$defs/entrySpellcasting_frequency"
3285
3288
  },
@@ -3349,6 +3352,7 @@
3349
3352
  "rest",
3350
3353
  "daily",
3351
3354
  "weekly",
3355
+ "monthly",
3352
3356
  "yearly",
3353
3357
  "ritual",
3354
3358
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1042,12 +1042,13 @@
1042
1042
  "type": {
1043
1043
  "type": "string",
1044
1044
  "enum": [
1045
- "hour",
1046
- "minute",
1047
1045
  "turn",
1048
1046
  "round",
1049
- "week",
1047
+ "minute",
1048
+ "hour",
1050
1049
  "day",
1050
+ "week",
1051
+ "month",
1051
1052
  "year"
1052
1053
  ]
1053
1054
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3268,6 +3268,9 @@
3268
3268
  "weekly": {
3269
3269
  "type": "object"
3270
3270
  },
3271
+ "monthly": {
3272
+ "type": "object"
3273
+ },
3271
3274
  "yearly": {
3272
3275
  "type": "object"
3273
3276
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "enum": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -888,7 +888,8 @@
888
888
  "required": [
889
889
  "name",
890
890
  "source"
891
- ]
891
+ ],
892
+ "additionalProperties": false
892
893
  }
893
894
  ]
894
895
  }
@@ -1980,7 +1981,8 @@
1980
1981
  "required": [
1981
1982
  "name",
1982
1983
  "source"
1983
- ]
1984
+ ],
1985
+ "additionalProperties": false
1984
1986
  }
1985
1987
  ]
1986
1988
  }
@@ -3086,7 +3088,8 @@
3086
3088
  "required": [
3087
3089
  "name",
3088
3090
  "source"
3089
- ]
3091
+ ],
3092
+ "additionalProperties": false
3090
3093
  }
3091
3094
  ]
3092
3095
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3280,6 +3280,9 @@
3280
3280
  "weekly": {
3281
3281
  "$ref": "#/$defs/entrySpellcasting_frequency"
3282
3282
  },
3283
+ "monthly": {
3284
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3285
+ },
3283
3286
  "yearly": {
3284
3287
  "$ref": "#/$defs/entrySpellcasting_frequency"
3285
3288
  },
@@ -3349,6 +3352,7 @@
3349
3352
  "rest",
3350
3353
  "daily",
3351
3354
  "weekly",
3355
+ "monthly",
3352
3356
  "yearly",
3353
3357
  "ritual",
3354
3358
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1582,12 +1582,13 @@
1582
1582
  "type": {
1583
1583
  "type": "string",
1584
1584
  "enum": [
1585
- "hour",
1586
- "minute",
1587
1585
  "turn",
1588
1586
  "round",
1589
- "week",
1587
+ "minute",
1588
+ "hour",
1590
1589
  "day",
1590
+ "week",
1591
+ "month",
1591
1592
  "year"
1592
1593
  ]
1593
1594
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3271,6 +3271,9 @@
3271
3271
  "weekly": {
3272
3272
  "type": "object"
3273
3273
  },
3274
+ "monthly": {
3275
+ "type": "object"
3276
+ },
3274
3277
  "yearly": {
3275
3278
  "type": "object"
3276
3279
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.17",
4
+ "version": "1.10.18",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -155,9 +155,14 @@
155
155
  "type": "integer"
156
156
  },
157
157
  "coverUrl": {
158
+ "deprecated": true,
158
159
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
159
160
  "type": "string"
160
161
  },
162
+ "cover": {
163
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
164
+ "$ref": "entry.json#/$defs/mediaHref"
165
+ },
161
166
  "storyline": {
162
167
  "type": "string",
163
168
  "enum": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.22",
3
+ "version": "1.21.23",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -888,7 +888,8 @@
888
888
  "required": [
889
889
  "name",
890
890
  "source"
891
- ]
891
+ ],
892
+ "additionalProperties": false
892
893
  }
893
894
  ]
894
895
  }
@@ -1980,7 +1981,8 @@
1980
1981
  "required": [
1981
1982
  "name",
1982
1983
  "source"
1983
- ]
1984
+ ],
1985
+ "additionalProperties": false
1984
1986
  }
1985
1987
  ]
1986
1988
  }
@@ -3086,7 +3088,8 @@
3086
3088
  "required": [
3087
3089
  "name",
3088
3090
  "source"
3089
- ]
3091
+ ],
3092
+ "additionalProperties": false
3090
3093
  }
3091
3094
  ]
3092
3095
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "books.json",
4
- "version": "1.2.11",
4
+ "version": "1.2.12",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "book": {
@@ -52,9 +52,14 @@
52
52
  "description": "The date of publication of the book, in the format YYYY-MM-DD (RFC3339)."
53
53
  },
54
54
  "coverUrl": {
55
+ "deprecated": true,
55
56
  "description": "A direct link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
56
57
  "type": "string"
57
58
  },
59
+ "cover": {
60
+ "description": "A link to an image which should be 300 x 300px in size. Larger images will be centred and cropped.",
61
+ "$ref": "entry.json#/$defs/mediaHref"
62
+ },
58
63
  "contents": {
59
64
  "description": "The linked Table of Contents of the rulebook.",
60
65
  "type": "array",
@@ -3280,6 +3280,9 @@
3280
3280
  "weekly": {
3281
3281
  "$ref": "#/$defs/entrySpellcasting_frequency"
3282
3282
  },
3283
+ "monthly": {
3284
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3285
+ },
3283
3286
  "yearly": {
3284
3287
  "$ref": "#/$defs/entrySpellcasting_frequency"
3285
3288
  },
@@ -3349,6 +3352,7 @@
3349
3352
  "rest",
3350
3353
  "daily",
3351
3354
  "weekly",
3355
+ "monthly",
3352
3356
  "yearly",
3353
3357
  "ritual",
3354
3358
  "spells",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.10",
4
+ "version": "1.9.11",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -1582,12 +1582,13 @@
1582
1582
  "type": {
1583
1583
  "type": "string",
1584
1584
  "enum": [
1585
- "hour",
1586
- "minute",
1587
1585
  "turn",
1588
1586
  "round",
1589
- "week",
1587
+ "minute",
1588
+ "hour",
1590
1589
  "day",
1590
+ "week",
1591
+ "month",
1591
1592
  "year"
1592
1593
  ]
1593
1594
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.15.1",
6
+ "version": "1.15.2",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -3271,6 +3271,9 @@
3271
3271
  "weekly": {
3272
3272
  "type": "object"
3273
3273
  },
3274
+ "monthly": {
3275
+ "type": "object"
3276
+ },
3274
3277
  "yearly": {
3275
3278
  "type": "object"
3276
3279
  }