elevenlabs · Schema
DubbingMetadata
Properties
| Name | Type | Description |
|---|---|---|
| dubbing_id | string | The unique identifier of the dubbing project. |
| name | string | The name of the dubbing project. |
| status | string | The current processing status of the dubbing project. |
| target_languages | array | List of target languages for the dubbing. |
| source_language | string | The detected or specified source language. |
| created_at | string | Timestamp when the dubbing project was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DubbingMetadata",
"title": "DubbingMetadata",
"type": "object",
"properties": {
"dubbing_id": {
"type": "string",
"description": "The unique identifier of the dubbing project."
},
"name": {
"type": "string",
"description": "The name of the dubbing project."
},
"status": {
"type": "string",
"description": "The current processing status of the dubbing project.",
"enum": [
"dubbing",
"dubbed",
"failed"
]
},
"target_languages": {
"type": "array",
"description": "List of target languages for the dubbing.",
"items": {
"type": "string"
}
},
"source_language": {
"type": "string",
"description": "The detected or specified source language."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the dubbing project was created."
}
}
}