Response from audio transcription.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AudioTranscriptionResponse", "title": "AudioTranscriptionResponse", "type": "object", "description": "Response from audio transcription.", "properties": { "text": { "type": "string", "description": "The transcribed text.", "example": "example_value" } }, "required": [ "text" ] }