{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TranscriptionResponse", "title": "TranscriptionResponse", "type": "object", "properties": { "text": { "type": "string", "description": "The full transcribed text." }, "language_code": { "type": "string", "description": "The detected language of the audio content." }, "language_probability": { "type": "number", "description": "Confidence score for the detected language." }, "words": { "type": "array", "description": "Word-level timing information when timestamps are requested.", "items": { "$ref": "#/components/schemas/TranscriptionWord" } }, "audio_events": { "type": "array", "description": "Non-speech audio events detected in the recording.", "items": { "$ref": "#/components/schemas/AudioEvent" } } } }