summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/issues.json
blob: fbcd9eea389ae1e4aa3ed6b78b512c204dd0a8fe (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.json" }
    },
    "size": { "type": "integer" }
  }
}