Vapi · Schema

RelayCommandSay

Artificial IntelligenceVoiceAgentsReal-TimeCPaaS

Properties

Name Type Description
type string The type of relay command
content string The content for the assistant to speak
View JSON Schema on GitHub

JSON Schema

vapi-relaycommandsay-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelayCommandSay",
  "title": "RelayCommandSay",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "say"
      ],
      "description": "The type of relay command"
    },
    "content": {
      "type": "string",
      "description": "The content for the assistant to speak"
    }
  },
  "required": [
    "type",
    "content"
  ]
}