Updated Schemas

This commit is contained in:
github-actions[bot] 2022-05-23 14:37:29 +00:00
parent fe64a4abab
commit d69c6b117c
2 changed files with 5 additions and 0 deletions

View File

@ -508,10 +508,12 @@
"properties": { "properties": {
"Time": { "Time": {
"type": "number", "type": "number",
"description": "A specific point in time",
"format": "float" "format": "float"
}, },
"Value": { "Value": {
"type": "number", "type": "number",
"description": "The value for this point in time",
"format": "float" "format": "float"
} }
} }

View File

@ -6,18 +6,21 @@
"properties": { "properties": {
"dialogueDictionary": { "dialogueDictionary": {
"type": "object", "type": "object",
"description": "Translation table for dialogue",
"additionalProperties": { "additionalProperties": {
"type": "string" "type": "string"
} }
}, },
"shipLogDictionary": { "shipLogDictionary": {
"type": "object", "type": "object",
"description": "Translation table for Ship Log (entries, facts, etc)",
"additionalProperties": { "additionalProperties": {
"type": "string" "type": "string"
} }
}, },
"uiDictionary": { "uiDictionary": {
"type": "object", "type": "object",
"description": "Translation table for UI elements",
"additionalProperties": { "additionalProperties": {
"type": "string" "type": "string"
} }