list_entry_write

list_entry_write schema from Wikimedia REST API

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

Name Type Description
project string Domain of the wiki containing the page.
title string Title of the page containing the page, in database format.
View JSON Schema on GitHub

JSON Schema

rest-v1-list-entry-write-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/rest-v1-list-entry-write-schema.json",
  "title": "list_entry_write",
  "description": "list_entry_write schema from Wikimedia REST API",
  "type": "object",
  "properties": {
    "project": {
      "type": "string",
      "description": "Domain of the wiki containing the page.",
      "example": "https://en.wikipedia.org"
    },
    "title": {
      "type": "string",
      "description": "Title of the page containing the page, in database format.",
      "example": "Barack_Obama"
    }
  },
  "required": [
    "project",
    "title"
  ]
}