Fix booleans written as strings in the schema

This commit is contained in:
Nick 2022-05-18 00:31:38 -04:00
parent 0aa3537d5a
commit 5c848bd82b

View File

@ -193,12 +193,12 @@
"canShowOnTitle": { "canShowOnTitle": {
"type": "boolean", "type": "boolean",
"description": "Should this planet ever be shown on the title screen", "description": "Should this planet ever be shown on the title screen",
"default": "true" "default": true
}, },
"isQuantumState": { "isQuantumState": {
"type": "boolean", "type": "boolean",
"description": "Does this config describe a quantum state of a custom planet defined in another file?", "description": "Does this config describe a quantum state of a custom planet defined in another file?",
"default": "false" "default": false
}, },
"Base": { "Base": {
"type": "object", "type": "object",
@ -950,7 +950,7 @@
"description": "For creating different objects containing translatable text.", "description": "For creating different objects containing translatable text.",
"items": { "items": {
"type": "object", "type": "object",
"additionalProperties": "false", "additionalProperties": false,
"properties": { "properties": {
"position": { "position": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
@ -989,7 +989,7 @@
"description": "Additional information about each arc in the text", "description": "Additional information about each arc in the text",
"items": { "items": {
"type": "object", "type": "object",
"additionalProperties": "false", "additionalProperties": false,
"properties": { "properties": {
"position": { "position": {
"$ref": "#/$defs/vector2", "$ref": "#/$defs/vector2",
@ -1023,7 +1023,7 @@
"description": "Like those on Giant's Deep", "description": "Like those on Giant's Deep",
"items": { "items": {
"type": "object", "type": "object",
"additionalProperties": "false", "additionalProperties": false,
"properties": { "properties": {
"position": { "position": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
@ -1069,7 +1069,7 @@
"description": "Like those in the DLC", "description": "Like those in the DLC",
"items": { "items": {
"type": "object", "type": "object",
"additionalProperties": "false", "additionalProperties": false,
"properties": { "properties": {
"position": { "position": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",