type: object
description: >-
  Object containing the thumbnail images for a YouTubeVideo.

  **Note:** Not all sizes are guaranteed to exist, and dimensions for the same size can vary.
  The images are however, guaranteed to maintain the same aspect ratio for each size, regardless of dimension.

  Since we will not be getting these from the YouTube Data API for MVP, the below guaranteed sizes will have their
  URLs generated. Thumbnail width and height properties for these generated sizes will be the defaults provided
  by YouTube for the purpose of ultimately exposing the aspect ratios.


  ### Sizes that will always exist


  - `default`
  - `medium`
  - `high`
nullable: false
properties:
  default:
    $ref: './VideoImage.yaml'
  medium:
    $ref: './VideoImage.yaml'
  high:
    $ref: './VideoImage.yaml'
  standard:
    $ref: './VideoImage.yaml'
  maxres:
    $ref: './VideoImage.yaml'
example:
  default:
    url: https://i.ytimg.com/vi/sOnqjkJTMaA/default.jpg
    width: 120
    height: 90
  medium:
    url: https://i.ytimg.com/vi/sOnqjkJTMaA/mqdefault.jpg
    width: 320
    height: 180
  high:
    url: https://i.ytimg.com/vi/sOnqjkJTMaA/hqdefault.jpg
    width: 480
    height: 360
  standard:
    url: https://i.ytimg.com/vi/sOnqjkJTMaA/sddefault.jpg
    width: 640
    height: 480
  maxres:
    url: https://i.ytimg.com/vi/sOnqjkJTMaA/maxresdefault.jpg
    width: 1280
    height: 720