{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/grunt-copy-task/latest.json",
  "title": "JSON schema for the Grunt clean task",
  "x-lintel": {
    "source": "https://www.schemastore.org/grunt-copy-task.json",
    "sourceSha256": "5bf408646160eddbf1ced95a2eb3fe7a115f8c0c7245851abd6bcaa93fff058a",
    "fileMatch": [
      "copy.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "options": {
      "$ref": "#/$defs/options"
    }
  },
  "id": "https://json.schemastore.org/grunt-copy-task.json",
  "$defs": {
    "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
        }
      }
    }
  },
  "additionalProperties": {
    "allOf": [
      {
        "$ref": "https://catalog.lintel.tools/schemas/schemastore/grunt-copy-task/_shared/latest--grunt-task.json#/additionalProperties"
      },
      {
        "type": "object",
        "properties": {
          "options": {
            "$ref": "#/$defs/options"
          }
        }
      }
    ]
  }
}
