{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://schema.mydesignsystem.com/downloads.schema.json",
  "title": "Downloads",
  "description": "Downloads component for providing users with downloadable files and resources.",
  "type": "object",
  "properties": {
    "download": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The name of the file"
          },
          "description": {
            "type": "string",
            "description": "A brief description of the file"
          },
          "previewImage": {
            "type": "string",
            "format": "image",
            "description": "A URL to an image that previews the file."
          },
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The URL to download the file from."
          },
          "size": {
            "type": ["string"],
            "description": "The size of the download file"
          },
          "format": {
            "type": ["string"],
            "description": "The format of the download file"
          }
        },
        "required": ["name", "url"]
      }
    }
  },
  "additionalProperties": false
}
