Files
minecraft-bedrock-json-schemas/source/resource/sounds/sound_definitions_unknown.json
2021-06-06 13:00:25 +02:00

96 lines
3.5 KiB
JSON

{
"$id": "blockception.minecraft.sound_definition.json",
"type": "object",
"title": "Sound File, Unknown Version",
"description": "TODO description",
"definitions": {
"SoundPath": {
"$id": "SoundFilepath",
"type": "string",
"title": "Sound Filepath Schema",
"description": "The filepath to the sound, starts with `sounds/'",
"pattern": "(^sounds/.*$|^$)",
"additionalItems": true
},
"SoundSpec": {
"additionalItems": false,
"type": "object",
"$id": "#/Sound",
"title": "Sound",
"required": ["sounds"],
"properties": {
"category": {
"type": "string",
"$id": "#/Sound/category",
"title": "Sound Category",
"enum": ["block", "music", "weather", "ui", "bucket", "neutral", "player", "hostile", "record"],
"description": "TODO description: category"
},
"sounds": {
"items": {
"anyOf": [
{
"$id": "#/Sound/sounds/stringItem",
"type": "string",
"$ref": "#/definitions/SoundPath",
"description": "TODO description: Todo",
"title": "Todo"
},
{
"additionalItems": false,
"$id": "#/Sound/sounds/ObjectItem",
"type": "object",
"required": ["name"],
"properties": {
"pitch": { "description": "The pitch of the audio, 1 is nomial", "type": "number", "minimum": 0, "maximum": 2, "title": "Pitch" },
"volume": {
"description": "The volume of the audio, 1 is nomial",
"type": "number",
"minimum": 0,
"maximum": 2,
"title": "Volume"
},
"load_on_low_memory": {
"type": "boolean",
"description": "Marks if this audio should be loaded or not on low memory",
"title": "Load On Low Memory"
},
"stream": { "description": "If marked true then minecraft will stream the audio", "type": "boolean", "title": "Stream" },
"name": {
"$id": "#/Sound/sounds/stringItem",
"type": "string",
"$ref": "#/definitions/SoundPath",
"description": "TODO description: name",
"title": "Name"
}
},
"description": "TODO description: Todo",
"title": "Todo"
}
],
"description": "TODO description: sounds",
"title": "Sounds"
},
"description": "TODO description: sounds",
"title": "Sounds"
}
},
"description": "TODO description: additionalProperties"
}
},
"additionalProperties": { "$ref": "#/definitions/SoundSpec" },
"properties": {
"format_version": {
"type": "string",
"description": "A version that tells minecraft what type of data format can be expected when reading this file.",
"title": "Format Version"
},
"sound_definitions": {
"type": "object",
"additionalProperties": { "$ref": "#/definitions/SoundSpec" },
"description": "TODO description: sound definitions",
"title": "Sound Definitions"
}
}
}