Files
minecraft-bedrock-json-schemas/source/resource/ui/ui.json
Piotr Brzozowski 7141769e54 Add modifications to JSON UI and refactor a bit (#198)
- Added modifications to JSON UI
- Moved grouped-ui definition to grouped-ui.json file
- Added all animation types to anim_type
2023-12-13 15:17:44 +01:00

16 lines
311 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Minecraft JSON UI",
"type": "object",
"properties": {
"namespace": {
"title": "Namespace",
"type": "string",
"pattern": "^[a-zA-Z0-9_-]+$"
}
},
"additionalProperties": {
"$ref": "./grouped-ui.json"
}
}