Webex · Schema

TtsVoicesResponse

Response containing the list of supported text-to-speech voices.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
voices array Array of available text-to-speech voices.
View JSON Schema on GitHub

JSON Schema

webex-ttsvoicesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TtsVoicesResponse",
  "title": "TtsVoicesResponse",
  "type": "object",
  "description": "Response containing the list of supported text-to-speech voices.",
  "example": {
    "voices": [
      {
        "id": "ashley",
        "label": "Ashley-Female"
      },
      {
        "id": "steve",
        "label": "Steve-Male"
      }
    ]
  },
  "required": [
    "voices"
  ],
  "properties": {
    "voices": {
      "type": "array",
      "example": [
        {
          "id": "ashley",
          "label": "Ashley-Female"
        },
        {
          "id": "steve",
          "label": "Steve-Male"
        }
      ],
      "items": {
        "$ref": "#/components/schemas/TtsVoice"
      },
      "description": "Array of available text-to-speech voices."
    }
  }
}