@camunda/element-templates-json-schema-shared
Version:
Shared schema definitions used within element-templates-json-schema
31 lines • 757 B
JSON
{
"$id": "#/groups",
"type": "array",
"description": "List of custom groups to organize related fields in the properties panel.",
"allOf": [
{
"$ref": "examples.json#/groups"
}
],
"items": {
"$id": "#/groups/group",
"type": "object",
"default": {},
"required": [
"id",
"label"
],
"properties": {
"id": {
"$id": "#/groups/group/id",
"type": "string",
"description": "Uniquely identifies a group object. Required if using groups."
},
"label": {
"$id": "#/groups/group/label",
"type": "string",
"description": "The label of the group, shown as a section header in the properties panel. Required if using groups."
}
}
}
}