elevenlabs · Schema
AudioEvent
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of audio event detected. |
| start | number | Start time of the event in seconds. |
| end | number | End time of the event in seconds. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AudioEvent",
"title": "AudioEvent",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The type of audio event detected."
},
"start": {
"type": "number",
"description": "Start time of the event in seconds."
},
"end": {
"type": "number",
"description": "End time of the event in seconds."
}
}
}