{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://wix-rich-content/file-upload-content-data-schema.json",
    "type": "object",
    "properties": {
      "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"]
          },
          "width": {
            "$id": "/properties/config/properties/width",
            "type": "string",
            "title": "The Width Schema",
            "default": "fit-content",
            "examples": ["fit-content", "100px"]
          }
        }
      },
      "name": {
        "$id": "/properties/name",
        "type": "string",
        "title": "The File Name Schema",
        "default": "",
        "examples": ["landscape.jpg"]
      },
      "type": {
        "$id": "/properties/type",
        "type": "string",
        "title": "The File Type Schema",
        "default": "",
        "examples": ["jpg"]
      },
      "url": {
        "$id": "/properties/url",
        "type": "string",
        "title": "The File URL Schema",
        "default": "",
        "examples": ["http://example.com/landscape.jpg"]
      }
    }
  }
  