{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wiktionary/refs/heads/main/json-schema/mediawiki-action-api-query-search-response-schema.json", "title": "QuerySearchResponse", "description": "action=query&list=search result.", "type": "object", "properties": { "batchcomplete": { "type": "string", "example": "" }, "continue": { "type": "object", "additionalProperties": true }, "query": { "type": "object", "properties": { "searchinfo": { "type": "object", "properties": { "totalhits": { "type": "integer", "example": 1234 } } }, "search": { "type": "array", "items": { "$ref": "#/components/schemas/SearchHit" } } } } } }