From d69c6b117ccf92d82b818c0a4cbc4880b995fe48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 23 May 2022 14:37:29 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 2 ++ NewHorizons/Schemas/translation_schema.json | 3 +++ 2 files changed, 5 insertions(+) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 414972c5..e1bef26b 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -508,10 +508,12 @@ "properties": { "Time": { "type": "number", + "description": "A specific point in time", "format": "float" }, "Value": { "type": "number", + "description": "The value for this point in time", "format": "float" } } diff --git a/NewHorizons/Schemas/translation_schema.json b/NewHorizons/Schemas/translation_schema.json index 3e87485b..e4e278ed 100644 --- a/NewHorizons/Schemas/translation_schema.json +++ b/NewHorizons/Schemas/translation_schema.json @@ -6,18 +6,21 @@ "properties": { "dialogueDictionary": { "type": "object", + "description": "Translation table for dialogue", "additionalProperties": { "type": "string" } }, "shipLogDictionary": { "type": "object", + "description": "Translation table for Ship Log (entries, facts, etc)", "additionalProperties": { "type": "string" } }, "uiDictionary": { "type": "object", + "description": "Translation table for UI elements", "additionalProperties": { "type": "string" }