{
  "type": "object",
  "additionalProperties": {
    "type": "array",
    "items": {
      "anyOf": [
        {
          "type": "string",
          "description": "The path to the file that will be excluded."
        },
        {
          "type": "object",
          "properties": {
            "ifAnyMatch": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "required": [
            "ifAnyMatch"
          ],
          "additionalProperties": false
        },
        {
          "type": "object",
          "properties": {
            "ifNoneMatch": {
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          },
          "required": [
            "ifNoneMatch"
          ],
          "additionalProperties": false
        }
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}