Adding format version regex

This commit is contained in:
DaanV2
2021-04-06 22:41:46 +02:00
parent 659442fefd
commit 7d96ec8f17
20 changed files with 53 additions and 20 deletions

View File

@@ -7,6 +7,9 @@
"type": "object",
"title": "Biome",
"description": "A biome definition",
"allOf": [{ "if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } }, "then": { "$ref": "./1.12.0/biomes.json" } }]
"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" } } }
]
}
}