{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v1/common/lights_report.schema.json", "title": "LightsReport", "description": "Report status of printer lights", "type": "array", "items": { "type": "object", "properties": { "mode": { "type": "string", "enum": [ "on", "off", "ON", "OFF" ] }, "node": { "type": "string", "enum": [ "chamber_light", "work_light", "chamber_light2" ] } } } }