Vapi · Schema

RelayTargetAssistant

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string The type of relay target
assistantId string The unique identifier of the assistant
assistantName string The name of the assistant
View JSON Schema on GitHub

JSON Schema

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