Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scan_result_policy_project_approval_settings.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4885e5266c15b0ef70f8972321b3edb115d752ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "Scan result policy project_approval_settings",
  "type": "object",
  "properties": {
    "prevent_approval_by_author": {
      "type": "boolean"
    },
    "prevent_approval_by_commit_author": {
      "type": "boolean"
    },
    "remove_approvals_with_new_commit": {
      "type": "boolean"
    },
    "require_password_to_approve": {
      "type": "boolean"
    },
    "block_branch_modification": {
      "type": "boolean"
    }
  }
}