1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-09-30 06:32:52 +00:00
Files
2025-09-09 10:02:11 -07:00

47 lines
1.1 KiB
JSON

{
"$id": "3076687790",
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"1527037515": {
"title": "Reference",
"type": "string"
}
},
"description": "Specifies a particular block. Can be a string block name or a JSON object",
"oneOf": [
{
"$ref": "#/definitions/1527037515"
},
{
"properties": {
"name": {
"$ref": "#/definitions/1527037515",
"description": "Name of the block"
},
"states": {
"additionalProperties": {
"oneOf": [
{
"type": "integer"
},
{
"type": "boolean"
},
{
"type": "string"
}
]
},
"description": "Contains members named after each state, with boolean, integer, or string values.",
"type": "object"
}
},
"required": [
"name"
],
"type": "object"
}
],
"title": "Block Specifier",
"x-format-version": "1.20.60"
}