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

protected_branch.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ad5dbe23131d5d08228667ecd0e5dc012073e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
  "type": "object",
  "required": [
    "id",
    "name",
    "push_access_levels",
    "merge_access_levels",
    "allow_force_push"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "push_access_levels": {
      "type": "array",
      "items": {
        "$ref": "entities/protected_ref_access.json"
      }
    },
    "merge_access_levels": {
      "type": "array",
      "items": {
        "$ref": "entities/protected_ref_access.json"
      }
    },
    "allow_force_push": {
      "type": "boolean"
    }
  }
}