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