Wikisource · Schema

list

Open DataOpen KnowledgeLiteratureHistorical DocumentsPublic DomainTranscriptionPrimary SourcesNon-ProfitOpen Source

Properties

Name Type Description
id integer
name string
description string
created string Creation date (in ISO 8601)
updated string Last modification date (in ISO 8601)
View JSON Schema on GitHub

JSON Schema

list_read.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://en.wikisource.org/api/rest_v1/schemas/list_read",
  "title": "list",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 42
    },
    "name": {
      "type": "string",
      "example": "Planets"
    },
    "description": {
      "type": "string",
      "example": "Planets of the Solar System"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Creation date (in ISO 8601)"
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification date (in ISO 8601)"
    }
  },
  "required": [
    "id",
    "name",
    "created",
    "updated"
  ]
}