summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/group_link/project_group_link.json
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" }
      }
    }
  ]
}