summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/public_api/v4/labels/label_with_counts.json
blob: 2331932e07dc8c9dc8acca89f0254494be5eead4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "type": "object",
  "properties": {
    "allOf": [
      { "$ref": "label.json" },
      {
        "type": "object",
        "properties": {
          "open_issues_count": { "type": "integer" },
          "closed_issues_count": { "type": "integer" },
          "open_merge_requests_count": { "type": "integer" }
        }
      }
    ]
  }
}