Files
minecraft-bedrock-json-schemas/source/behavior/volumes/volumes.json
Daan Verstraten b543ec56d6 Added $Schema #17
2021-11-20 11:26:35 +01:00

20 lines
581 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behavior.volumes",
"examples": [
{
"format_version": "1.17.0",
"minecraft:volume": {
"description": {
"identifier": "example:foo"
},
"components": {}
}
}
],
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.17.0" } } }, "then": { "$ref": "./1.17.0/volumes.json" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}