{ "$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" } } } }