Files
2022-10-13 19:25:17 +02:00

19 lines
664 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "blockception.minecraft.world_x_packs",
"type": "array",
"title": "World X Pack Schema",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"examples": [[{ "pack_id": "UUID", "version": [1, 0, 0] }]],
"items": {
"title": "Items",
"description": "A reference to a pack.",
"type": "object",
"properties": {
"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" }
}
}
}