summaryrefslogtreecommitdiff
path: root/spec/fixtures/api/schemas/entities/issue_boards.json
blob: 0ac1d9468c876b8533471e002ace9acf8bcff639 (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_board.json" }
    },
    "size": { "type": "integer" }
  },
  "additionalProperties": false
}