Files
minecraft-bedrock-json-schemas/source/general/world_x_packs.json

18 lines
678 B
JSON
Raw Normal View History

2020-11-01 17:22:42 +01:00
{
"$id": "blockception.minecraft.world_x_packs",
"type": "array",
2021-03-21 15:18:38 +01:00
"title": "World X Pack Schema",
2020-11-01 17:22:42 +01:00
"description": "TODO description",
2020-11-17 21:19:54 +01:00
"examples": [[{ "pack_id": "UUID", "version": [1, 0, 0] }]],
2021-03-21 15:18:38 +01:00
"definitions": { "uuidv4": { "$ref": "./UUIDV4.json" }, "version": { "$ref": "./Version.json" } },
2020-11-01 17:22:42 +01:00
"items": {
"type": "object",
"properties": {
2021-03-21 15:18:38 +01:00
"pack_id": { "description": "The uuid of the pack to include", "$ref": "#/definitions/uuidv4", "title": "Pack Id" },
"version": { "description": "The version of the pack", "$ref": "#/definitions/version", "title": "Version" }
2020-11-01 17:22:42 +01:00
},
"description": "TODO description: items",
"title": "Items"
}
}