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" }