elevenlabs · Schema
AsyncTranscriptionResponse
Properties
| Name | Type | Description |
|---|---|---|
| task_id | string | The identifier of the asynchronous transcription task. |
| status | string | The current status of the transcription task. |
JSON Schema
{
"$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"
]
}
}
}