Words API · Schema

ExamplesResponse

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

DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

Properties

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

JSON Schema

words-examples-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-examples-response-schema.json",
  "title": "ExamplesResponse",
  "description": "Response from GET /words/{word}/examples.",
  "type": "object",
  "properties": {
    "word": {
      "type": "string",
      "example": "apple"
    },
    "examples": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "he is the apple of my eye"
      ]
    }
  }
}