{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SwitchModeMultipleFeaturesRequest", "title": "SwitchModeMultipleFeaturesRequest", "type": "object", "required": [ "featureIds", "operatingModeName" ], "properties": { "featureIds": { "type": "array", "example": [ "Y2lzY29zcGFyazovL3VzL0ZFQVRVUkUvYjQzMmI2NmQtM2VkYy00ZGNkLTg4ODctNDZlOGU2NWQwYzIw" ], "description": "List of feature IDs to switch mode", "items": { "type": "string" }, "minItems": 1, "maxItems": 50 }, "operatingModeName": { "type": "string", "example": "Night", "description": "Name of the common operating mode to be set as current operating mode" } } }