Amazon Polly · Schema

LexiconDescription

Describes the content of the lexicon.

AIMachine LearningSpeech SynthesisText-To-SpeechTTSVoiceSSMLNeural EngineGenerative AI

Properties

Name Type Description
Name object
Attributes object
View JSON Schema on GitHub

JSON Schema

amazon-polly-lexicon-description-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-polly/refs/heads/main/json-schema/amazon-polly-lexicon-description-schema.json",
  "title": "LexiconDescription",
  "description": "Describes the content of the lexicon.",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LexiconName"
        },
        {
          "description": "Name of the lexicon."
        }
      ]
    },
    "Attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LexiconAttributes"
        },
        {
          "description": "Provides lexicon metadata."
        }
      ]
    }
  }
}