1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-03-01 09:21:17 +00:00
bedrock-samples/metadata/json_schemas/block/v1.20.60/Block Specifier v1.20.60.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2024-08-13 09:36:05 -07:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "3076687790",
"title": "Block Specifier",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"name": {
2024-12-03 08:43:20 -08:00
"type": "string",
"$metaProperties": {}
2024-08-13 09:36:05 -07:00
},
"states": {
"title": "associative container",
"type": "object",
"additionalProperties": {
"oneOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string"
}
]
2024-12-03 08:43:20 -08:00
},
"$metaProperties": {}
2024-08-13 09:36:05 -07:00
}
},
"required": [
"name"
]
}
2024-09-17 09:13:33 -07:00
],
2024-12-03 08:43:20 -08:00
"$metaProperties": {}
2024-08-13 09:36:05 -07:00
}