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

19 lines
660 B
JSON
Raw Normal View History

2021-06-06 10:07:19 +00:00
{
2021-11-20 11:30:59 +01:00
"$schema": "http://json-schema.org/draft-07/schema",
2021-06-06 10:07:19 +00:00
"$id": "blockception.minecraft.world_x_packs",
"type": "array",
"title": "World X Pack Schema",
2021-06-16 16:19:12 +02:00
"description": "UNDOCUMENTED",
2021-07-01 11:35:53 +02:00
"$comment": "UNDOCUMENTED",
2021-06-06 10:07:19 +00:00
"examples": [[{ "pack_id": "UUID", "version": [1, 0, 0] }]],
"items": {
2021-10-08 13:50:40 +02:00
"title": "Items",
"description": "A reference to a pack",
2021-06-06 10:07:19 +00:00
"type": "object",
"properties": {
2021-10-08 13:50:40 +02:00
"pack_id": { "description": "The uuid of the pack to include", "$ref": "./UUIDV4.json", "title": "Pack Id" },
"version": { "description": "The version of the pack", "$ref": "./Version.json", "title": "Version" }
}
2021-06-06 10:07:19 +00:00
}
}