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

label_with_counts.json « labels « 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: 4aa3199919bac622b712d0932b71fa256f345c38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "type": "object",
  "allOf": [
    {
      "$ref": "label.json"
    },
    {
      "type": "object",
      "properties": {
        "open_issues_count": {
          "type": "integer"
        },
        "closed_issues_count": {
          "type": "integer"
        },
        "open_merge_requests_count": {
          "type": "integer"
        }
      }
    }
  ]
}