Skip to content
Get Bricks

Global Variables Schema

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "bricks://global/global-variables",
"schemaVersion": "2.2.1",
"title": "Bricks Global Variables",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
},
"category": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"id",
"name",
"value"
],
"additionalProperties": false
}
}