Check Suite Preference

Check suite configuration preferences for a repository.

APIs.ioEngineeringPlatform

Properties

Name Type Description
preferences object
repository object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-check-suite-preference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/check-suite-preference",
  "title": "Check Suite Preference",
  "description": "Check suite configuration preferences for a repository.",
  "type": "object",
  "required": [
    "preferences",
    "repository"
  ],
  "properties": {
    "preferences": {
      "type": "object",
      "properties": {
        "auto_trigger_checks": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "app_id": {
                "type": "integer"
              },
              "setting": {
                "type": "boolean"
              }
            },
            "required": [
              "app_id",
              "setting"
            ]
          }
        }
      }
    },
    "repository": {
      "$ref": "#/components/schemas/minimal-repository"
    }
  }
}