Files
minecraft-bedrock-json-schemas/behaviour/recipes/recipes.json
2020-11-01 17:22:42 +01:00

15 lines
434 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.behaviour.recipes",
"allOf": [
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.12" } } },
"then": { "$ref": "1.12.0/recipes.json" }
},
{
"if": { "properties": { "format_version": { "type": "string", "const": "1.12.0" } } },
"then": { "$ref": "1.12.0/recipes.json" }
}
]
}