Vapi · Schema

StructuredDataMultiPlan

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
key string This is the key of the structured data plan in the catalog.
plan object This is an individual structured data plan in the catalog.
View JSON Schema on GitHub

JSON Schema

vapi-structureddatamultiplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StructuredDataMultiPlan",
  "title": "StructuredDataMultiPlan",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "This is the key of the structured data plan in the catalog."
    },
    "plan": {
      "description": "This is an individual structured data plan in the catalog.",
      "allOf": [
        {
          "$ref": "#/components/schemas/StructuredDataPlan"
        }
      ]
    }
  },
  "required": [
    "key",
    "plan"
  ]
}