{ "title": "Template", "description": "Template for lang items to generate schema for lang files", "type": "object", "properties": { "scopes": { "title": "Scopes", "description": "All scopes of lang items", "type": "array", "uniqueItems": true, "items": { "title": "Scope", "description": "First level of all lang items", "type": "object", "properties": { "scope": { "type": "string", "description": "Scope name" }, "types": { "type": "array", "description": "All types of lang items", "uniqueItems": true, "items": { "oneOf": [ { "type": "string", "description": "Value of lang item" }, { "type": "object", "properties": { "subtype": { "type": "string", "description": "Subtype name of lang item" }, "types": { "type": "array", "description": "All subtypes of lang items", "uniqueItems": true, "items": { "$ref": "#/properties/scopes/items/properties/types/items" } } } } ] } } } } } } }