15 lines
247 B
JSON
15 lines
247 B
JSON
{
|
|
"type": "object",
|
|
"required" : [
|
|
"issues",
|
|
"size"
|
|
],
|
|
"properties" : {
|
|
"issues": {
|
|
"type": "array",
|
|
"items": { "$ref": "issue.json" }
|
|
},
|
|
"size": { "type": "integer" }
|
|
},
|
|
"additionalProperties": false
|
|
}
|