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

protected_ref_access.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 144852e155839a7070556a6b235d2715688fa9da (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
{
  "type": "object",
  "required": [
    "id",
    "access_level",
    "access_level_description"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "access_level": {
      "type": [
        "integer",
        "null"
      ]
    },
    "access_level_description": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}