Wikimedia · Schema

list_entry_write

Schema for list_entry_write from the Wikimedia REST API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

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

list_entry_write.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/list_entry_write.json",
  "title": "list_entry_write",
  "description": "Schema for list_entry_write from the 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"
  ]
}