mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Updated Schemas
This commit is contained in:
parent
c6137ff96c
commit
18fc7f1dde
@ -4507,7 +4507,7 @@
|
|||||||
},
|
},
|
||||||
"type": {
|
"type": {
|
||||||
"description": "The type of dream candle this is.",
|
"description": "The type of dream candle this is.",
|
||||||
"default": "Ground",
|
"default": "ground",
|
||||||
"$ref": "#/definitions/DreamCandleType"
|
"$ref": "#/definitions/DreamCandleType"
|
||||||
},
|
},
|
||||||
"startLit": {
|
"startLit": {
|
||||||
|
|||||||
@ -1,6 +1,30 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-04/schema#",
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
||||||
"title": "Title Screen 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",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"properties": {
|
"properties": {
|
||||||
@ -45,18 +69,10 @@
|
|||||||
"$ref": "#/definitions/MenuPlanetModule"
|
"$ref": "#/definitions/MenuPlanetModule"
|
||||||
},
|
},
|
||||||
"extras": {
|
"extras": {
|
||||||
"type": "object",
|
"description": "Extra data that may be used by extension mods"
|
||||||
"description": "Extra data that may be used by extension mods",
|
}
|
||||||
"additionalProperties": {
|
|
||||||
"type": "object"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"$schema": {
|
|
||||||
"type": "string",
|
|
||||||
"description": "The schema to validate with"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"definitions": {
|
|
||||||
"MColor": {
|
"MColor": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user