gitlab-org--gitlab-foss/spec/fixtures/api/schemas/current-board.json
Winnie Hellmann 2e6225538f Split and prepend CurrentBoardEntity
(cherry picked from commit 1e8bdd01bff96122fe80c51fa8f024f18675b58b)
2019-07-12 06:31:17 +00:00

16 lines
246 B
JSON

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