debian-mirror-gitlab/spec/fixtures/api/schemas/current-board.json
2019-09-30 21:07:59 +05:30

17 lines
246 B
JSON

{
"type": "object",
"allOf": [
{ "$ref": "board.json" },
{
"required" : [
"id",
"name"
],
"properties": {
"id": { "type": "integer" },
"name": { "type": "string" }
}
}
]
}