HistoryResponse

HistoryResponse schema from MediaWiki Core REST API

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
revisions array
latest string Link to latest revisions page
older string
newer string
View JSON Schema on GitHub

JSON Schema

mediawiki-core-rest-history-response-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-history-response-schema.json",
  "title": "HistoryResponse",
  "description": "HistoryResponse schema from MediaWiki Core REST API",
  "type": "object",
  "properties": {
    "revisions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Revision"
      }
    },
    "latest": {
      "type": "string",
      "format": "uri",
      "description": "Link to latest revisions page"
    },
    "older": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "newer": {
      "type": "string",
      "format": "uri",
      "nullable": true
    }
  }
}