Updated Schemas

This commit is contained in:
Ben C 2025-02-17 20:49:20 +00:00
parent c6137ff96c
commit 18fc7f1dde
2 changed files with 58 additions and 42 deletions

View File

@ -4507,7 +4507,7 @@
},
"type": {
"description": "The type of dream candle this is.",
"default": "Ground",
"default": "ground",
"$ref": "#/definitions/DreamCandleType"
},
"startLit": {

View File

@ -1,6 +1,30 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Title Screen Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"titleScreens": {
"type": "array",
"description": "Create title screens",
"items": {
"$ref": "#/definitions/TitleScreenInfo"
}
},
"$schema": {
"type": "string",
"description": "The schema to validate with"
},
"extras": {
"type": "object",
"description": "Extra data that may be used by extension mods",
"additionalProperties": {
"type": "object"
}
}
},
"definitions": {
"TitleScreenInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
@ -45,18 +69,10 @@
"$ref": "#/definitions/MenuPlanetModule"
},
"extras": {
"type": "object",
"description": "Extra data that may be used by extension mods",
"additionalProperties": {
"type": "object"
"description": "Extra data that may be used by extension mods"
}
}
},
"$schema": {
"type": "string",
"description": "The schema to validate with"
}
},
"definitions": {
"MColor": {
"type": "object",
"additionalProperties": false,