Wiktionary · Schema

HistoryCountResponse

HistoryCountResponse schema from Wiktionary MediaWiki Core REST API

DictionariesOpen SourceWikimediaMediaWikiLinguisticsOpen DataPublic APIs

Properties

Name Type Description
count integer
limit boolean True if the count was capped (e.g., >10000).
View JSON Schema on GitHub

JSON Schema

core-rest-api-history-count-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wiktionary/refs/heads/main/json-schema/core-rest-api-history-count-response-schema.json",
  "title": "HistoryCountResponse",
  "description": "HistoryCountResponse schema from Wiktionary MediaWiki Core REST API",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "example": 412
    },
    "limit": {
      "type": "boolean",
      "description": "True if the count was capped (e.g., >10000).",
      "example": false
    }
  }
}