Wikisource · Schema

thumbnail

Open DataOpen KnowledgeLiteratureHistorical DocumentsPublic DomainTranscriptionPrimary SourcesNon-ProfitOpen Source

Properties

Name Type Description
source string Thumbnail image URI
width integer Thumbnail width
height integer Thumnail height
View JSON Schema on GitHub

JSON Schema

thumbnail.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://en.wikisource.org/api/rest_v1/schemas/thumbnail",
  "title": "thumbnail",
  "type": "object",
  "properties": {
    "source": {
      "type": "string",
      "description": "Thumbnail image URI"
    },
    "width": {
      "type": "integer",
      "description": "Thumbnail width"
    },
    "height": {
      "type": "integer",
      "description": "Thumnail height"
    }
  },
  "required": [
    "height",
    "source",
    "width"
  ]
}