Files
minecraft-bedrock-json-schemas/source/behavior/biomes/biomes.json

15 lines
497 B
JSON
Raw Normal View History

2021-02-04 11:21:51 +01:00
{
"$id": "minecraft.behavior.biomes",
"type": "object",
"examples": [{ "plains": { "format_version": "1.12.0" } }],
"additionalProperties": {
"type": "object",
"title": "Biome",
"description": "A biome definition",
2021-04-06 22:41:46 +02:00
"allOf": [
{ "if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } }, "then": { "$ref": "./1.12.0/biomes.json" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
2021-02-04 11:21:51 +01:00
}
}