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

19 lines
664 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",
2022-07-22 19:41:04 +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",
2022-07-22 19:41:04 +02:00
"description": "A reference to a pack.",
2021-06-06 10:07:19 +00:00
"type": "object",
"properties": {
2022-10-13 19:25:17 +02:00
"pack_id": { "description": "The UUID of the pack to include.", "$ref": "./UUIDV4.json", "title": "Pack Id" },
2022-07-22 19:41:04 +02:00
"version": { "description": "The version of the pack.", "$ref": "./Version.json", "title": "Version" }
2021-10-08 13:50:40 +02:00
}
2021-06-06 10:07:19 +00:00
}
}