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

group_group_link.json « group_link « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfca5c885e35060179b042c61fbea62d89b3823e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "allOf": [
    { "$ref": "group_link.json" },
    {
      "required": [
        "can_update",
        "can_remove"
      ],
      "properties": {
        "can_update": { "type": "boolean" },
        "can_remove": { "type": "boolean" }
      }
    }
  ]
}