---
id: video.json
"$schema": "http://json-schema.org/draft-04/schema"
title: Video
description: "An HTML video element which can have a cover image with
  annotated measurements data"
type:
- object
properties:
  type:
    description: Block type
    example: "image"
    type: string
    enum:
      - video
  video:
    "$ref": "base.json#/definitions/url"
  cover:
    "$ref": "media.json#/definitions/cover"

required: [type, html]
