Vapi · Schema

ChatCost

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type string This is the type of cost, always 'chat' for this class.
cost number This is the cost of the component in USD.
View JSON Schema on GitHub

JSON Schema

vapi-chatcost-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatCost",
  "title": "ChatCost",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "This is the type of cost, always 'chat' for this class.",
      "enum": [
        "chat"
      ]
    },
    "cost": {
      "type": "number",
      "description": "This is the cost of the component in USD."
    }
  },
  "required": [
    "type",
    "cost"
  ]
}