{
  "$ref": "#/definitions/Component",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "Component": {
      "additionalProperties": false,
      "properties": {
        "fetch_data": {
          "$ref": "#/definitions/Fetch"
        },
        "id": {
          "type": "string"
        },
        "style": {
          "type": "string"
        },
        "upload_id": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "Fetch": {
      "additionalProperties": false,
      "properties": {
        "data": {},
        "headers": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "method": {
          "type": "string"
        },
        "url": {
          "type": "string"
        }
      },
      "required": [
        "data",
        "url"
      ],
      "type": "object"
    }
  }
}
