You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
657 B
25 lines
657 B
{
|
|
"$id": "streamConfig.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"border": {
|
|
"$ref": "shared.json#/definitions/borders"
|
|
},
|
|
"columns": {
|
|
"$ref": "shared.json#/definitions/columns"
|
|
},
|
|
"columnDefault": {
|
|
"$ref": "shared.json#/definitions/column"
|
|
},
|
|
"columnCount": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"drawVerticalLine": {
|
|
"typeof": "function"
|
|
}
|
|
},
|
|
"required": ["columnDefault", "columnCount"],
|
|
"additionalProperties": false
|
|
}
|
|
|