{ "anyOf": [{ "$ref": "#/definitions/SceneComponentEntry" }, { "type": "array", "items": { "$ref": "#/definitions/SceneComponentEntry" } }], "definitions": { "SceneComponentEntry": { "type": "object", "properties": { "name": { "type": "string" }, "entities": { "type": "object", "additionalProperties": { "anyOf": [{ "$ref": "#/definitions/EntitySceneConfig" }, { "type": ["string", "boolean"] }] } } }, "additionalProperties": false, "required": ["entities", "name"] }, "EntitySceneConfig": { "additionalProperties": true, "type": "object", "properties": { "state": { "type": "boolean" }, "brightness": { "type": ["string", "number"] }, "source": { "type": "string" }, "color_temp": { "type": ["string", "number"] }, "xy_color": {} } } }, "$schema": "http://json-schema.org/draft-07/schema#" }
