Words API · JSON Structure

Words Examples Response Structure

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

Type: object Properties: 2
DictionariesLinguisticsEnglishThesaurusLexical DataPublic APIs

ExamplesResponse is a JSON Structure definition published by Words API, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

word examples

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/words/refs/heads/main/json-structure/words-examples-response-structure.json",
  "name": "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"
      ]
    }
  }
}