contentstack · Schema
CreateVoiceProfileRequest
Parameters for creating or updating a Voice Profile.
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name for the Voice Profile. |
| description | string | Description of the voice profile's purpose. |
| tone | string | Tonal characteristics for the voice profile. |
| style_guidelines | string | Writing style guidelines for AI content generation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateVoiceProfileRequest",
"title": "CreateVoiceProfileRequest",
"type": "object",
"description": "Parameters for creating or updating a Voice Profile.",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Display name for the Voice Profile."
},
"description": {
"type": "string",
"description": "Description of the voice profile's purpose."
},
"tone": {
"type": "string",
"description": "Tonal characteristics for the voice profile."
},
"style_guidelines": {
"type": "string",
"description": "Writing style guidelines for AI content generation."
}
}
}