1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-02-22 15:56:12 +00:00
bedrock-samples/metadata/json_schemas/Dimensions v1.21.60.json
Mike Ammerlaan 43ca2795c2 v1.21.60.10
2025-02-11 09:25:02 -08:00

93 lines
2.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "1486903430",
"definitions": {
"1168660568": {
"title": "Bounds",
"type": "object",
"properties": {
"max": {
"type": "integer",
"multipleOf": 16.0,
"minimum": -512.0,
"maximum": 512.0
},
"min": {
"type": "integer",
"multipleOf": 16.0,
"minimum": -512.0,
"maximum": 512.0
}
},
"required": [
"max",
"min"
]
},
"1299192089": {
"title": "Description",
"type": "object",
"properties": {
"identifier": {
"type": "string"
}
},
"required": [
"identifier"
]
},
"164563289": {
"title": "Components",
"type": "object",
"properties": {
"minecraft:dimension_bounds": {
"$ref": "#/definitions/1168660568"
},
"minecraft:generation": {
"$ref": "#/definitions/1892745351"
}
},
"required": [
"minecraft:generation"
]
},
"1892745351": {
"title": "Generation",
"type": "object",
"properties": {
"generator_type": {
"type": "string"
}
},
"required": [
"generator_type"
]
},
"3731137331": {
"title": "Dimension",
"type": "object",
"properties": {
"components": {
"$ref": "#/definitions/164563289"
},
"description": {
"$ref": "#/definitions/1299192089"
}
},
"required": [
"components",
"description"
]
}
},
"title": "DimensionDocument",
"type": "object",
"properties": {
"minecraft:dimension": {
"$ref": "#/definitions/3731137331"
}
},
"required": [
"minecraft:dimension"
]
}