{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://git.octoturge.com/Continuum/continuum-schemas/raw/branch/main/schemas/bambulab/v2/common/device/airduct_mode.schema.json", "title": "DeviceAirductMode", "description": "Schema for available airduct modes", "type": "object", "properties": { "ctrl": { "type": "array", "items": { "type": "integer", "multipleOf": 16 } }, "off": { "type": "array", "items": { "type": "integer", "multipleOf": 16 } }, "modeId": { "type": "integer" } }, "required": ["ctrl", "off", "modeId"] }