{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/wiktionary/refs/heads/main/json-structure/rest-api-definition-entry-structure.json", "description": "DefinitionEntry schema from Wiktionary Wikimedia REST API", "type": "object", "properties": { "definition": { "type": "string", "description": "HTML/wikitext definition body for one sense.", "example": "A standard greeting." }, "examples": { "type": "array", "description": "Raw usage example strings.", "items": { "type": "string" }, "example": [ "Hello, world!" ] }, "parsedExamples": { "type": "array", "description": "Structured usage examples (HTML or translation pairs).", "items": { "type": "object", "additionalProperties": true } } }, "required": [ "definition" ], "name": "DefinitionEntry" }