elevenlabs · Schema
Chapter
Properties
| Name | Type | Description |
|---|---|---|
| chapter_id | string | Unique identifier for the chapter. |
| name | string | Display name of the chapter. |
| content | string | The text content of the chapter. |
| voice_id | string | The voice assigned to this chapter. |
| state | string | Current rendering state of the chapter. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Chapter",
"title": "Chapter",
"type": "object",
"properties": {
"chapter_id": {
"type": "string",
"description": "Unique identifier for the chapter."
},
"name": {
"type": "string",
"description": "Display name of the chapter."
},
"content": {
"type": "string",
"description": "The text content of the chapter."
},
"voice_id": {
"type": "string",
"description": "The voice assigned to this chapter."
},
"state": {
"type": "string",
"description": "Current rendering state of the chapter."
}
}
}