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

group_labels.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fbde45f2904898185fce71695780e5b2be92093c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "type": "array",
  "items": {
    "type": "object",
    "properties" : {
      "id" : { "type": "integer" },
      "name" : { "type": "string "},
      "color" : { "type": "string "},
      "text_color" : { "type": "string "},
      "description" : { "type": "string "},
      "open_issues_count" : { "type": "integer "},
      "closed_issues_count" : { "type": "integer "},
      "open_merge_requests_count" : { "type": "integer "},
      "subscribed" : { "type": "boolean" },
      "priority" : { "type": "null" }
    },
    "additionalProperties": false
  }
}