elevenlabs · Schema
TranscriptSegment
Properties
| Name | Type | Description |
|---|---|---|
| start | number | Start time of the segment in seconds. |
| end | number | End time of the segment in seconds. |
| text | string | The transcribed or translated text for this segment. |
| speaker | string | The speaker identifier for this segment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TranscriptSegment",
"title": "TranscriptSegment",
"type": "object",
"properties": {
"start": {
"type": "number",
"description": "Start time of the segment in seconds."
},
"end": {
"type": "number",
"description": "End time of the segment in seconds."
},
"text": {
"type": "string",
"description": "The transcribed or translated text for this segment."
},
"speaker": {
"type": "string",
"description": "The speaker identifier for this segment."
}
}
}