Vapi · Schema

SchedulePlan

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
earliestAt string This is the ISO 8601 date-time string of the earliest time the call can be scheduled.
latestAt string This is the ISO 8601 date-time string of the latest time the call can be scheduled.
View JSON Schema on GitHub

JSON Schema

vapi-scheduleplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchedulePlan",
  "title": "SchedulePlan",
  "type": "object",
  "properties": {
    "earliestAt": {
      "format": "date-time",
      "type": "string",
      "description": "This is the ISO 8601 date-time string of the earliest time the call can be scheduled."
    },
    "latestAt": {
      "format": "date-time",
      "type": "string",
      "description": "This is the ISO 8601 date-time string of the latest time the call can be scheduled."
    }
  },
  "required": [
    "earliestAt"
  ]
}