elevenlabs · Schema
DialogueSegment
Properties
| Name | Type | Description |
|---|---|---|
| voice_id | string | The voice identifier for this segment of dialogue. |
| text | string | The text content for this segment of dialogue. |
| voice_settings | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DialogueSegment",
"title": "DialogueSegment",
"type": "object",
"required": [
"voice_id",
"text"
],
"properties": {
"voice_id": {
"type": "string",
"description": "The voice identifier for this segment of dialogue."
},
"text": {
"type": "string",
"description": "The text content for this segment of dialogue."
},
"voice_settings": {
"$ref": "#/components/schemas/VoiceSettings"
}
}
}