Vapi · Schema

BackoffPlan

Artificial IntelligenceVoiceAgentsReal-TimeCPaaS

Properties

Name Type Description
type object This is the type of backoff plan to use. Defaults to fixed. @default fixed
maxRetries number This is the maximum number of retries to attempt if the request fails. Defaults to 0 (no retries). @default 0
baseDelaySeconds number This is the base delay in seconds. For linear backoff, this is the delay between each retry. For exponential backoff, this is the initial delay.
excludedStatusCodes array This is the excluded status codes. If the response status code is in this list, the request will not be retried. By default, the request will be retried for any non-2xx status code.
View JSON Schema on GitHub

JSON Schema

vapi-backoffplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackoffPlan",
  "title": "BackoffPlan",
  "type": "object",
  "properties": {
    "type": {
      "type": "object",
      "description": "This is the type of backoff plan to use. Defaults to fixed.\n\n@default fixed",
      "enum": [
        "fixed",
        "exponential"
      ],
      "example": "fixed"
    },
    "maxRetries": {
      "type": "number",
      "description": "This is the maximum number of retries to attempt if the request fails. Defaults to 0 (no retries).\n\n@default 0",
      "minimum": 0,
      "maximum": 10,
      "example": 0
    },
    "baseDelaySeconds": {
      "type": "number",
      "description": "This is the base delay in seconds. For linear backoff, this is the delay between each retry. For exponential backoff, this is the initial delay.",
      "minimum": 0,
      "maximum": 10,
      "example": 1
    },
    "excludedStatusCodes": {
      "description": "This is the excluded status codes. If the response status code is in this list, the request will not be retried.\nBy default, the request will be retried for any non-2xx status code.",
      "example": [
        400,
        401,
        403,
        404
      ],
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "type",
    "maxRetries",
    "baseDelaySeconds"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vapi-backoffplan"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.