Vapi · Schema

RelayCommandNote

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string The type of relay command
content string The note content to add to the conversation
View JSON Schema on GitHub

JSON Schema

vapi-relaycommandnote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelayCommandNote",
  "title": "RelayCommandNote",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "message.add"
      ],
      "description": "The type of relay command"
    },
    "content": {
      "type": "string",
      "description": "The note content to add to the conversation"
    }
  },
  "required": [
    "type",
    "content"
  ]
}