elevenlabs · Schema
VoiceSample
Properties
| Name | Type | Description |
|---|---|---|
| sample_id | string | Unique identifier for the audio sample. |
| file_name | string | Original file name of the uploaded sample. |
| mime_type | string | MIME type of the audio sample. |
| size_bytes | integer | Size of the audio sample in bytes. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VoiceSample",
"title": "VoiceSample",
"type": "object",
"properties": {
"sample_id": {
"type": "string",
"description": "Unique identifier for the audio sample."
},
"file_name": {
"type": "string",
"description": "Original file name of the uploaded sample."
},
"mime_type": {
"type": "string",
"description": "MIME type of the audio sample."
},
"size_bytes": {
"type": "integer",
"description": "Size of the audio sample in bytes."
}
}
}