{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/wiktionary/refs/heads/main/json-structure/mediawiki-action-api-query-search-response-structure.json", "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": "int32", "example": 1234 } } }, "search": { "type": "array", "items": { "$ref": "#/components/schemas/SearchHit" } } } } }, "name": "QuerySearchResponse" }