{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "$comment": "https://github.com/actions/labeler",
  "additionalProperties": {
    "title": "Label",
    "type": ["string", "array"],
    "items": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "properties": {
            "any": {
              "title": "Any",
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "all": {
              "title": "All",
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      ]
    }
  },
  "description": "A GitHub Action for automatically labelling pull requests.",
  "id": "https://json.schemastore.org/pull-request-labeler.json",
  "title": "Pull Request Labeler",
  "type": "object"
}
