Words API · Schema

PronunciationResponse

Response from GET /words/{word}/pronunciation.

DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

Properties

Name Type Description
word string
pronunciation object
View JSON Schema on GitHub

JSON Schema

words-pronunciation-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/words/refs/heads/main/json-schema/words-pronunciation-response-schema.json",
  "title": "PronunciationResponse",
  "description": "Response from GET /words/{word}/pronunciation.",
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "example": "apple"
    },
    "pronunciation": {
      "$ref": "#/components/schemas/Pronunciation"
    }
  }
}