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

48 lines
894 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"connected": {
"type": "boolean",
"default": false
},
"scene": {
"type": "string"
},
"sceneList": {
"type": "array",
"items": {
"type": "string"
},
"default": []
},
"transitioning": {
"type": "boolean",
"default": false
},
"streaming": {
"type": "boolean",
"default": false
},
"gameLayoutScreenshot": {
"type": "string"
},
"disableTransitioning": {
"type": "boolean",
"default": false
},
"transitionTimestamp": {
"type": "number",
"default": 0
}
},
"required": [
"connected",
"sceneList",
"transitioning",
"streaming",
"disableTransitioning",
"transitionTimestamp"
]
}