{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://wix-rich-content/video-content-data-schema.json",
    "type": "object",
    "properties": {
      "src": {
        "oneOf": [
          {
            "$id": "/properties/src",
            "type": "string",
            "title": "Video Source URL",
            "examples": ["https://www.youtube.com/watch?v=eqZVIiD6wSg"]
          },
          {
            "$id": "/properties/src",
            "type": "object",
            "properties": {
              "pathname": {
                "$id": "/properties/src/pathname",
                "type": "string",
                "title": "Video Source Pathname",
                "examples": ["video-sample/jellyfish-25-mbps-hd-hevc.mp4"]
              },
              "thumbnail": {
                "$id": "/properties/src/thumbnail",
                "type": "object",
                "properties": {
                  "pathname": {
                    "$id": "/properties/src/thumbnail/pathname",
                    "type": "string",
                    "title": "Video Thumbnail Pathname",
                    "examples": ["media/441c23_84f5c058e5e4479ab9e626cd5560a21bf002.jpg"]
                  },
                  "height": {
                    "$id": "/properties/src/thumbnail/height",
                    "type": "integer",
                    "title": "Video Thumbnail Height",
                    "examples": [1080]
                  },
                  "width": {
                    "$id": "/properties/src/thumbnail/width",
                    "type": "integer",
                    "title": "Video Thumbnail Width",
                    "examples": [1920]
                  }
                }
              }
            }
          }
        ]
      },
      "isCustomVideo": {
        "$id": "/properties/isCustomVideo",
        "type": "boolean",
        "title": "Is Custom Video",
        "default": false
      },
      "config": {
        "$id": "/properties/config",
        "type": "object",
        "title": "configuration",
        "properties": {
          "size": {
            "$id": "/properties/config/properties/size",
            "enum": ["content", "small", "fullWidth"],
            "title": "Size",
            "default": "large",
            "examples": ["content", "small", "fullWidth"]
          },
          "alignment": {
            "$id": "/properties/config/properties/alignment",
            "enum": ["left", "right", "center"],
            "title": "Alignment",
            "default": "center",
            "examples": ["left", "right", "center"]
          },
          "textWrap": {
            "$id": "/properties/config/properties/textWrap",
            "type": "string",
            "title": "Text Wrap",
            "default": "nowrap",
            "examples": ["nowrap"]
          }
        }
      }
    },
    "required": ["src"]
  }
  