streamConfig.json 657 B

12345678910111213141516171819202122232425
  1. {
  2. "$id": "streamConfig.json",
  3. "$schema": "http://json-schema.org/draft-07/schema#",
  4. "type": "object",
  5. "properties": {
  6. "border": {
  7. "$ref": "shared.json#/definitions/borders"
  8. },
  9. "columns": {
  10. "$ref": "shared.json#/definitions/columns"
  11. },
  12. "columnDefault": {
  13. "$ref": "shared.json#/definitions/column"
  14. },
  15. "columnCount": {
  16. "type": "integer",
  17. "minimum": 1
  18. },
  19. "drawVerticalLine": {
  20. "typeof": "function"
  21. }
  22. },
  23. "required": ["columnDefault", "columnCount"],
  24. "additionalProperties": false
  25. }