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

issue_boards.json « entities « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 742f7be5485fcdc4724f741ab4efe01720c2953c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "type": "object",
  "required" : [
    "issues",
    "size"
  ],
  "properties" : {
    "issues": {
      "type": "array",
      "items": { "$ref": "issue_board.json" }
    },
    "size": { "type": "integer" }
  }
}