Youtube · Schema

Thumbnail

A thumbnail image

GoogleMediaSocialStreamingVideoVideos

Properties

Name Type Description
url string URL of the thumbnail image
width integer Width of the thumbnail
height integer Height of the thumbnail
View JSON Schema on GitHub

JSON Schema

youtube-thumbnail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Thumbnail",
  "title": "Thumbnail",
  "type": "object",
  "description": "A thumbnail image",
  "properties": {
    "url": {
      "type": "string",
      "description": "URL of the thumbnail image",
      "example": "https://i.ytimg.com/vi/dQw4w9WgXcQ/default.jpg"
    },
    "width": {
      "type": "integer",
      "description": "Width of the thumbnail",
      "example": 120
    },
    "height": {
      "type": "integer",
      "description": "Height of the thumbnail",
      "example": 90
    }
  }
}