Files
minecraft-bedrock-json-schemas/source/resource/sounds/sound_definitions.json
2021-06-06 10:07:19 +00:00

10 lines
589 B
JSON

{
"$id": "blockception.minecraft.sound_definition.json",
"examples": [{ "format_version": "1.14.0", "sound_definitions": { "music.game": { "category": "music", "sounds": [""] } } }],
"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" } },
{ "properties": { "format_version": { "$ref": "../../general/format_version.json" } } }
]
}