Vapi · Schema

ToolCallFunction

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
arguments string This is the arguments to call the function with
name string This is the name of the function to call
View JSON Schema on GitHub

JSON Schema

vapi-toolcallfunction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ToolCallFunction",
  "title": "ToolCallFunction",
  "type": "object",
  "properties": {
    "arguments": {
      "type": "string",
      "description": "This is the arguments to call the function with"
    },
    "name": {
      "type": "string",
      "description": "This is the name of the function to call",
      "maxLength": 80
    }
  },
  "required": [
    "arguments",
    "name"
  ]
}