1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-08-06 01:42:14 +00:00
Files
Mike Ammerlaan c32ab2ac8e v1.21.100.6
2025-08-05 10:30:44 -07:00

71 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "1899103179",
"x-format-version": "1.20.50",
"x-minecraft-version": "1.21.100-beta.6",
"definitions": {
"2794205495": {
"title": "Block Descriptor",
"oneOf": [
{
"$ref": "#/definitions/2770948419"
},
{
"type": "string",
"minLength": 1
},
{
"$ref": "#/definitions/2770948419"
}
]
},
"2770948419": {
"title": "BlockDescriptorProxy",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"states": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/517105782"
}
},
"tags": {
"type": "string"
}
}
},
"517105782": {
"title": "compound_proxy",
"oneOf": [
{
"type": "integer"
},
{
"type": "string"
},
{
"type": "boolean"
}
]
}
},
"title": "BlockInfo",
"type": "object",
"properties": {
"block": {
"description": "Block to be dug.",
"$ref": "#/definitions/2794205495"
},
"speed": {
"description": "Digging speed for the correlating block(s).",
"type": "integer"
}
},
"required": [
"block",
"speed"
]
}