Vapi · Schema

RecordingConsent

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
type object This is the type of recording consent.
grantedAt string This is the date and time the recording consent was granted. If not specified, it means the recording consent was not granted.
View JSON Schema on GitHub

JSON Schema

vapi-recordingconsent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordingConsent",
  "title": "RecordingConsent",
  "type": "object",
  "properties": {
    "type": {
      "type": "object",
      "description": "This is the type of recording consent."
    },
    "grantedAt": {
      "format": "date-time",
      "type": "string",
      "description": "This is the date and time the recording consent was granted.\nIf not specified, it means the recording consent was not granted."
    }
  },
  "required": [
    "type"
  ]
}