thumbnail

thumbnail schema from Wikimedia REST API

Open DataPublic APIsOpen KnowledgeEncyclopediaKnowledge GraphOpen SourceNon-Profit

Properties

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

JSON Schema

rest-v1-thumbnail-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-thumbnail-schema.json",
  "title": "thumbnail",
  "description": "thumbnail schema from Wikimedia REST API",
  "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"
  ]
}