elevenlabs · Schema
ProjectPronunciationRequest
Properties
| Name | Type | Description |
|---|---|---|
| pronunciation_dictionary_locators | array | List of pronunciation dictionary locators to apply. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectPronunciationRequest",
"title": "ProjectPronunciationRequest",
"type": "object",
"required": [
"pronunciation_dictionary_locators"
],
"properties": {
"pronunciation_dictionary_locators": {
"type": "array",
"description": "List of pronunciation dictionary locators to apply.",
"items": {
"type": "object",
"required": [
"pronunciation_dictionary_id",
"version_id"
],
"properties": {
"pronunciation_dictionary_id": {
"type": "string",
"description": "The pronunciation dictionary identifier."
},
"version_id": {
"type": "string",
"description": "The pronunciation dictionary version identifier."
}
}
}
}
}
}