1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-25 03:34:45 +00:00
Files
bedrock-samples/metadata/json_schemas/server/1.21.60/Crafting Catalog Group Identifier.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

48 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2254328111",
"x-format-version": "1.21.60",
"x-minecraft-version": "1.21.90-beta.3",
"definitions": {
"2438968950": {
"title": "Crafting Catalog Item",
"description": "A single item or block.",
"oneOf": [
{
"type": "string",
"pattern": "^(?:.)+:(?:.)+$"
},
{
"type": "object",
"properties": {
"name": {
"description": "The name of an item or block. A namespace for the item is required. You can optionally provide an aux value for items that use it at the end. Example: namespace:my_item:1",
"type": "string",
"pattern": "^(?:.)+:(?:.)+$"
}
},
"required": [
"name"
]
}
]
}
},
"title": "Crafting Catalog Group Icon",
"description": "The identifier of a group of items.",
"type": "object",
"properties": {
"icon": {
"description": "The item or block that represents the group.",
"$ref": "#/definitions/2438968950"
},
"name": {
"description": "A localization key representing the name of the group that starts with a namespace. The 'minecraft' namespace is reservered for the Vanilla game. Creating new group names starting with 'minecraft' run the risk of being overwritten in later updates.",
"type": "string",
"pattern": "^(?:.)+:(?:.)+$"
}
},
"required": [
"name"
]
}