Vapi · Schema

VoiceLibraryVoiceResponse

AIVoiceAgentsRealtimeCPaaS

Properties

Name Type Description
voiceId string
name string
publicOwnerId string
description string
gender string
age object
accent string
View JSON Schema on GitHub

JSON Schema

vapi-voicelibraryvoiceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceLibraryVoiceResponse",
  "title": "VoiceLibraryVoiceResponse",
  "type": "object",
  "properties": {
    "voiceId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "publicOwnerId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "gender": {
      "type": "string"
    },
    "age": {
      "type": "object"
    },
    "accent": {
      "type": "string"
    }
  },
  "required": [
    "voiceId",
    "name"
  ]
}