mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
24 lines
603 B
JSON
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
|
|
} |