new-horizons/NewHorizons/Schemas/translation_schema.json
2022-05-17 20:37:06 -04:00

24 lines
603 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$defs": {
"table": {
"type": "object",
"description": "A set of key value pairs where each key is the english text and each value is the translated text"
}
},
"title": "Translation",
"description": "Describes a set tables to use for translations",
"type": "object",
"properties": {
"ShipLogDictionary": {
"$ref": "#/$defs/table"
},
"UIDictionary": {
"$ref": "#/$defs/table"
},
"DialogueDictionary": {
"$ref": "#/$defs/table"
}
},
"additionalProperties": false
}