15 lines
442 B
JSON
15 lines
442 B
JSON
|
|
{
|
||
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
|
"$id": "blockception.minecraft.sound_definition.json",
|
||
|
|
"allOf": [
|
||
|
|
{
|
||
|
|
"if": { "properties": { "format_version": { "type": "string" } } },
|
||
|
|
"else": { "$ref": "sound_definitions_unknown.json" }
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"if": { "properties": { "format_version": { "type": "string", "const": "1.14.0" } } },
|
||
|
|
"then": { "$ref": "1.14.0/sound_definitions.json" }
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|