Vapi · Schema

SimulationRunTargetSquad

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string Type of target
squadId string ID of an existing squad to test against. Cannot be combined with inline squad.
squad object Inline squad configuration to test against. Cannot be combined with squadId.
View JSON Schema on GitHub

JSON Schema

vapi-simulationruntargetsquad-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimulationRunTargetSquad",
  "title": "SimulationRunTargetSquad",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "squad"
      ],
      "description": "Type of target"
    },
    "squadId": {
      "type": "string",
      "description": "ID of an existing squad to test against. Cannot be combined with inline squad.",
      "format": "uuid"
    },
    "squad": {
      "description": "Inline squad configuration to test against. Cannot be combined with squadId.",
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateSquadDTO"
        }
      ]
    }
  },
  "required": [
    "type"
  ]
}