Check suite configuration preferences for a repository.
{ "$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" } } }