{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://wix-rich-content/giphy-content-data-schema.json",
    "type": "object",
    "properties": {
      "gif": {
        "$id": "/properties/gif",
        "type": "object",
        "title": "Giphy Source",
        "properties": {
          "originalUrl": {
            "$id": "/properties/gif/properties/originalUrl",
            "type": "string",
            "title": "original gif url",
            "default": "",
            "examples": ["https://media3.giphy.com/media/5BYvjhtjsQdoyx9JT9/giphy.gif"]
          },
          "stillUrl": {
            "$id": "/properties/gif/properties/stillUrl",
            "type": "string",
            "title": "still gif image url",
            "default": "",
            "examples": ["https://media3.giphy.com/media/5BYvjhtjsQdoyx9JT9/giphy_s.gif"]
          },
          "height": {
            "$id": "/properties/gif/properties/height",
            "type": "integer",
            "title": "gif height",
            "default": "",
            "examples": ["50"]
          },
          "width": {
            "$id": "/properties/gif/properties/width",
            "type": "integer",
            "title": "gif width",
            "default": "",
            "examples": ["50"]
          }
        }
      },
      "config": {
        "$id": "/properties/config",
        "type": "object",
        "properties": {
          "size": {
            "$id": "/properties/config/properties/size",
            "type": "string",
            "title": "Size",
            "default": "large",
            "examples": ["medium", "small", "large"]
          },
          "alignment": {
            "$id": "/properties/config/properties/alignment",
            "type": "string",
            "title": "The Alignment Schema ",
            "default": "center",
            "examples": ["left", "right", "center"]
          }
        }
      }
    },
    "required": ["gif"]
  }
  