{
  "type": "object",
  "properties": {
    "auto_trigger_checks": {
      "type": "array",
      "description": "Enables or disables automatic creation of CheckSuite events upon pushes to the repository. Enabled by default.",
      "items": {
        "type": "object",
        "properties": {
          "app_id": {
            "type": "integer",
            "description": "The `id` of the GitHub App."
          },
          "setting": {
            "type": "boolean",
            "description": "Set to `true` to enable automatic creation of CheckSuite events upon pushes to the repository, or `false` to disable them.",
            "default": true
          }
        },
        "required": [
          "app_id",
          "setting"
        ]
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}