{ "$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-get-lexicon-output-schema.json", "title": "GetLexiconOutput", "description": "GetLexiconOutput schema from Amazon Polly API", "type": "object", "properties": { "Lexicon": { "allOf": [ { "$ref": "#/components/schemas/Lexicon" }, { "description": "Lexicon object that provides name and the string content of the lexicon. " } ] }, "LexiconAttributes": { "allOf": [ { "$ref": "#/components/schemas/LexiconAttributes" }, { "description": "Metadata of the lexicon, including phonetic alphabetic used, language code, lexicon ARN, number of lexemes defined in the lexicon, and size of lexicon in bytes." } ] } }, "example": { "Lexicon": { "Content": "\r\n\r\n \r\n W3C\r\n World Wide Web Consortium\r\n \r\n", "Name": "example" }, "LexiconAttributes": { "Alphabet": "ipa", "LanguageCode": "en-US", "LastModified": 1478542980.117, "LexemesCount": 1, "LexiconArn": "arn:aws:polly:us-east-1:123456789012:lexicon/example", "Size": 503 } } }