{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "additionalProperties": {
    "allOf": [
      {
        "$ref": "https://json.schemastore.org/grunt-task#/additionalProperties"
      },
      {
        "type": "object",
        "properties": {
          "options": {
            "$ref": "#/definitions/options"
          }
        }
      }
    ]
  },
  "definitions": {
    "options": {
      "description": "Set the options for grunt-contrib-copy",
      "type": "object",
      "properties": {
        "noProcess": {
          "description": "This option is passed to grunt.file.copy as an advanced way to control which file contents are processed.",
          "type": "string"
        },
        "encoding": {
          "description": "The file encoding to copy files with.",
          "type": "string"
        },
        "mode": {
          "description": "Whether to copy or set the existing file permissions. Set to true to copy the existing file permissions. Or set to the mode, i.e.: 0644, that copied files will be set to.",
          "type": ["boolean", "number"],
          "default": false
        }
      }
    }
  },
  "id": "https://json.schemastore.org/grunt-copy-task.json",
  "properties": {
    "options": {
      "$ref": "#/definitions/options"
    }
  },
  "title": "JSON schema for the Grunt clean task",
  "type": "object"
}
