{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://json-schema.int.adscore.com/report/delete.schema.json",
  "title": "Delete saved report",
  "description": "Delete report saved as template or schedule.",
  "type": "object",
  "required": [
    "route_params"
  ],
  "properties": {
    "route": {
      "type": "object",
      "properties": {
        "path": {
          "const": "/account/{account_id}/report/{id}"
        },
        "methods": {
          "const": ["DELETE"]
        }
      }
    },
    "route_params": {
      "type": "object",
      "description": "Route attributes",
      "required": [
        "account_id",
        "id"
      ],
      "properties": {
        "account_id": {
          "type": "integer"
        },
        "id": {
          "type": "integer"
        }
      }
    }
  }
}
