{ "$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" ] }