{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AsyncTranscriptionResponse", "title": "AsyncTranscriptionResponse", "type": "object", "properties": { "task_id": { "type": "string", "description": "The identifier of the asynchronous transcription task." }, "status": { "type": "string", "description": "The current status of the transcription task.", "enum": [ "pending", "processing", "completed", "failed" ] } } }