TemplateSettingType
Types of user-configurable template settings.
Properties
oneOf:
- string
"text"
- string
"toggle"
Property Type Required Description selectobject Yes Selection from a fixed set of options
View JSON Schema
{
"oneOf": [
{
"type": "string",
"description": "Free-form text input",
"enum": [
"text"
]
},
{
"type": "string",
"description": "Boolean toggle",
"enum": [
"toggle"
]
},
{
"type": "object",
"description": "Selection from a fixed set of options",
"required": [
"select"
],
"properties": {
"select": {
"type": "object",
"description": "Selection from a fixed set of options",
"required": [
"options"
],
"properties": {
"options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
],
"description": "Types of user-configurable template settings."
}