Wikimedia · Schema

thumbnail

Schema for thumbnail from the Wikimedia Enterprise API

WikipediaWikimediaEncyclopediaOpen KnowledgeContentSearchReference

Properties

Name Type Description
contentUrl string Thumbnail URL
width integer Thumbnail width in pixels
height integer Thumbnail height in pixels
View JSON Schema on GitHub

JSON Schema

thumbnail.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wikimedia/refs/heads/main/json-schema/thumbnail.json",
  "title": "thumbnail",
  "description": "Schema for thumbnail from the Wikimedia Enterprise API",
  "type": "object",
  "properties": {
    "contentUrl": {
      "type": "string",
      "format": "uri",
      "description": "Thumbnail URL"
    },
    "width": {
      "description": "Thumbnail width in pixels",
      "type": "integer",
      "example": 156
    },
    "height": {
      "description": "Thumbnail height in pixels",
      "type": "integer",
      "example": 255
    }
  }
}