Files
minecraft-bedrock-json-schemas/source/general/block_definition.json

19 lines
547 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
"title": "Block",
"type": "object",
"additionalProperties": false,
"properties": {
2022-07-22 19:41:04 +02:00
"name": { "title": "Name", "description": "The block id, for example: `minecraft:air'.", "type": "string" },
2021-06-06 10:07:19 +00:00
"states": {
"title": "States",
2022-07-22 19:41:04 +02:00
"description": "The block states.",
2021-06-06 10:07:19 +00:00
"type": "object",
"additionalProperties": {
"title": "State",
2022-07-22 19:41:04 +02:00
"description": "A single state of a block.",
2021-06-06 10:07:19 +00:00
"oneOf": [{ "type": "string" }, { "type": "boolean" }, { "type": "number" }]
}
}
}
}