Webex · Schema

TtsVoice

Text-to-Speech voice metadata.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string The voice ID used to generate the audio prompt.
label string The voice label, including the voice name and gender.
View JSON Schema on GitHub

JSON Schema

webex-ttsvoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TtsVoice",
  "title": "TtsVoice",
  "type": "object",
  "description": "Text-to-Speech voice metadata.",
  "example": {
    "id": "ashley",
    "label": "Ashley-Female"
  },
  "required": [
    "id",
    "label"
  ],
  "properties": {
    "id": {
      "type": "string",
      "example": "ashley",
      "description": "The voice ID used to generate the audio prompt."
    },
    "label": {
      "type": "string",
      "example": "Ashley-Female",
      "description": "The voice label, including the voice name and gender."
    }
  }
}