16 lines
246 B
JSON
16 lines
246 B
JSON
{
|
|
"type": "object",
|
|
"allOf": [
|
|
{ "$ref": "board.json" },
|
|
{
|
|
"required" : [
|
|
"id",
|
|
"name"
|
|
],
|
|
"properties": {
|
|
"id": { "type": "integer" },
|
|
"name": { "type": "string" }
|
|
}
|
|
}
|
|
]
|
|
}
|