{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": {
    "anyOf": [
      {
        "$ref": "https://json.schemastore.org/grunt-task#/definitions/fileFormat"
      },
      {
        "$ref": "https://json.schemastore.org/grunt-task#/definitions/dynamic"
      },
      {
        "type": "object",
        "properties": {
          "options": {
            "$ref": "#/definitions/options"
          }
        }
      },
      {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    ]
  },
  "definitions": {
    "options": {
      "description": "Set the options for grunt-contrib-copy",
      "type": "object",
      "properties": {
        "force": {
          "description": "This overrides this task from blocking deletion of folders outside current working dir (CWD). Use with caution.",
          "type": "boolean",
          "default": false
        },
        "no-write": {
          "description": "Will log messages of what would happen if the task was ran but doesn't actually delete the files.",
          "type": "boolean",
          "default": false
        }
      }
    }
  },
  "id": "https://json.schemastore.org/grunt-clean-task.json",
  "properties": {
    "options": {
      "$ref": "#/definitions/options"
    }
  },
  "title": "JSON schema for the Grunt clean task",
  "type": "object"
}
