{ "$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." } } }