Wiktionary · JSON Structure

Mediawiki Action Api Query Search Response Structure

action=query&list=search result.

Type: object Properties: 3
DictionariesOpen SourceWikimediaMediaWikiLinguisticsOpen DataPublic APIs

QuerySearchResponse is a JSON Structure definition published by Wiktionary, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

batchcomplete continue query

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/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"
}