Skip to content

Commit

Permalink
Adding pack scope and product type
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Jan 7, 2024
1 parent 9424aee commit 9cfbf9a
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions source/general/manifest/manifest.2.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@
"type": "string",
"description": "This is the name of the pack as it appears within Minecraft. This is a required field."
},
"pack_scope": {
"title": "Pack Scope",
"type": "string",
"description": "This is the scope of the pack. This is only for resource packs",
"enum": ["global", "world", "any"]
},
"uuid": {
"title": "UUID",
"$ref": "../UUIDV4.json",
Expand Down Expand Up @@ -216,8 +222,6 @@
"type": "array",
"items": { "type": "string", "title": "Name", "description": "Name of the author of the pack." }
},
"license": { "type": "string", "title": "License", "description": "The license of the pack." },
"url": { "type": "string", "format": "uri", "title": "Url", "description": "The home website of your pack." },
"generated_with": {
"title": "Generated With",
"description": "A list of tools and their version that have modified this pack.",
Expand All @@ -239,7 +243,15 @@
"pattern": "^[0-9]+\\.[0-9]+\\.[0-9]+$"
}
}
}
},
"license": { "type": "string", "title": "License", "description": "The license of the pack." },
"product_type": {
"type": "string",
"title": "Product Type",
"description": "The type of product this pack is. This is used to determine how the pack is displayed in the store.",
"enum": ["", "addon"]
},
"url": { "type": "string", "format": "uri", "title": "Url", "description": "The home website of your pack." }
}
},
"subpacks": {
Expand Down

0 comments on commit 9cfbf9a

Please sign in to comment.