Files
minecraft-bedrock-json-schemas/source/resource/ui/elements/properties/variables.json

27 lines
660 B
JSON
Raw Normal View History

2023-10-24 19:49:51 +02:00
{
"title": "Variables",
"description": "The variables that are contained within this element.",
2023-10-29 19:56:18 +01:00
"definitions": {
"variables": {
"title": "Variable Definition",
"description": "A variable is a reference to a value that can be used in the UI."
}
},
2023-10-24 19:49:51 +02:00
"anyOf": [
2023-10-29 19:56:18 +01:00
{ "$ref": "../../general/item_ref.json" },
2023-10-24 19:49:51 +02:00
{
"type": "array",
"items": {
"type": "object",
"title": "Variables",
2023-10-29 19:56:18 +01:00
"additionalProperties": { "$ref": "#/definitions/variables" }
2023-10-24 19:49:51 +02:00
}
},
{
"type": "object",
"title": "Variables",
2023-10-29 19:56:18 +01:00
"additionalProperties": { "$ref": "#/definitions/variables" }
2023-10-24 19:49:51 +02:00
}
]
}