Wikisource · Schema

list_entry_write

Open DataOpen KnowledgeLiteratureHistorical DocumentsPublic DomainTranscriptionPrimary SourcesNon-ProfitOpen Source

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://en.wikisource.org/api/rest_v1/schemas/list_entry_write",
  "title": "list_entry_write",
  "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"
  ]
}