Vapi · Schema

RelayTargetSquad

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string The type of relay target
squadId string The unique identifier of the squad
squadName string The name of the squad
View JSON Schema on GitHub

JSON Schema

vapi-relaytargetsquad-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelayTargetSquad",
  "title": "RelayTargetSquad",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "squad"
      ],
      "description": "The type of relay target"
    },
    "squadId": {
      "type": "string",
      "description": "The unique identifier of the squad"
    },
    "squadName": {
      "type": "string",
      "description": "The name of the squad"
    }
  },
  "required": [
    "type"
  ]
}