Properties
| Name | Type | Description |
|---|---|---|
| voiceId | string | |
| name | string | |
| publicOwnerId | string | |
| description | string | |
| gender | string | |
| age | object | |
| accent | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VoiceLibraryVoiceResponse",
"title": "VoiceLibraryVoiceResponse",
"type": "object",
"properties": {
"voiceId": {
"type": "string"
},
"name": {
"type": "string"
},
"publicOwnerId": {
"type": "string"
},
"description": {
"type": "string"
},
"gender": {
"type": "string"
},
"age": {
"type": "object"
},
"accent": {
"type": "string"
}
},
"required": [
"voiceId",
"name"
]
}