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

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