esa-nodecg/schemas/otherStreamData.json
2024-03-13 11:26:46 +01:00

26 lines
468 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"show": {
"type": "boolean",
"default": false
},
"runData": {
"oneOf": [
{
"$ref": "../node_modules/speedcontrol-util/schemas/reused/RunData.json"
},
{
"type": "null"
}
],
"default": null
}
},
"required": [
"show",
"runData"
]
}