16 lines
311 B
JSON
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"
|
|
}
|
|
}
|