SerenAI

Pay Per Call Agentic Commerce

TemplateSettingType

Types of user-configurable template settings.

Properties

oneOf:
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."
}