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