"description":"The manifest file contains all the basic information about the pack that Minecraft needs to identify it. The tables below contain all the components of the manifest, their individual properties, and what they mean.",
"description":"This is a short description of the pack. It will appear in the game below the name of the pack. We recommend keeping it to 1-2 lines.",
"title":"Description"
},
"uuid":{
"type":"string",
"$ref":"#/definitions/uuidv4",
"description":"This is a special type of identifier that uniquely identifies this pack from any other pack. UUIDs are written in the format xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx where each x is a hexadecimal value (0-9 or a-f). We recommend using an online service to generate this and guarantee their uniqueness (just bing UUID Generator to find some)",
"version":{"$ref":"#/definitions/version","description":"This is the version of your pack in the format [majorVersion, minorVersion, revision].","title":"Version"},
"description":"This is the minimum version of the game that this pack was written for. This helps the game identify whether any backwards compatibility is needed for your pack. You should always use the highest version currently available when creating packs",
"description":"This is a short description of the module. This is not user-facing at the moment but is a good place to remind yourself why the module is defined",
"title":"Description"
},
"uuid":{
"$ref":"#/definitions/uuidv4",
"description":"This is a unique identifier for the module in the same format as the pack's UUID in the header. This should be different from the pack's UUID, and different for every module",
"description":"This is the version of the module in the same format as the pack's version in the header. This can be used to further identify changes in your pack",
"description":"These are the different features that the pack makes use of that aren't necessarily enabled by default.",
"items":{
"additionalProperties":false,
"type":"object",
"properties":{
"uuid":{
"type":"string",
"$ref":"#/definitions/uuidv4",
"description":"This is the unique identifier of the pack that this pack depends on. It needs to be the exact same UUID that the pack has defined in the header section of it's manifest file",