{
  "$id": "https://elicitra.eigen.rest/developers/v6/schemas/mcp/campaign_create_draft.input.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "channel": {
      "enum": [
        "phone_call",
        "web_call",
        "text_chat"
      ],
      "type": "string"
    },
    "idempotencyKey": {
      "maxLength": 128,
      "minLength": 8,
      "type": "string"
    },
    "name": {
      "maxLength": 256,
      "minLength": 1,
      "type": "string"
    },
    "scenarioId": {
      "maxLength": 128,
      "minLength": 1,
      "type": "string"
    },
    "textChatBudget": {
      "enum": [
        "SHORT",
        "STANDARD",
        "EXTENDED"
      ],
      "type": "string"
    }
  },
  "required": [
    "idempotencyKey",
    "scenarioId",
    "name",
    "channel"
  ],
  "title": "campaign_create_draft input",
  "type": "object"
}
