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

protected_tag.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5aaf0f0cba973155a7985442127f37d6547e6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "object",
  "required": [
    "name",
    "create_access_levels"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "create_access_levels": {
      "type": "array",
      "items": {
        "$ref": "entities/protected_ref_access.json"
      }
    },
    "additionalProperties": false
  }
}