Vapi · Schema

SimulationRunSuiteEntry

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string Type discriminator
simulationSuiteId string ID of the simulation suite to run
suiteId string
View JSON Schema on GitHub

JSON Schema

vapi-simulationrunsuiteentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimulationRunSuiteEntry",
  "title": "SimulationRunSuiteEntry",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type discriminator",
      "enum": [
        "simulationSuite"
      ]
    },
    "simulationSuiteId": {
      "type": "string",
      "description": "ID of the simulation suite to run",
      "format": "uuid"
    },
    "suiteId": {
      "type": "string",
      "deprecated": true
    }
  },
  "required": [
    "type"
  ]
}