EditCounts

EditCounts schema from MediaWiki Core REST API

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
count integer Edit count of requested type
limit boolean Whether the count was truncated
View JSON Schema on GitHub

JSON Schema

mediawiki-core-rest-edit-counts-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikipedia/refs/heads/main/json-schema/mediawiki-core-rest-edit-counts-schema.json",
  "title": "EditCounts",
  "description": "EditCounts schema from MediaWiki Core REST API",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Edit count of requested type"
    },
    "limit": {
      "type": "boolean",
      "description": "Whether the count was truncated"
    }
  }
}