Words API · Schema

DefinitionsResponse

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

DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

Properties

Name Type Description
word string
definitions array
View JSON Schema on GitHub

JSON Schema

words-definitions-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-definitions-response-schema.json",
  "title": "DefinitionsResponse",
  "description": "Response from GET /words/{word}/definitions.",
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "example": "apple"
    },
    "definitions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DefinitionEntry"
      }
    }
  }
}