{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SwitchModeRequest", "title": "SwitchModeRequest", "type": "object", "required": [ "operatingModeId" ], "properties": { "operatingModeId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL09QRVJBVElOR19NT0RFLzAyZjZlMmI4LTFjZDktNWI3ZS1jOTVjLTczYzZkYzk1MTZjMg==", "description": "Operating mode ID to switch to" }, "isManualSwitchbackEnabled": { "type": "boolean", "example": true, "description": "Determines if switch back will be manual (if true) or automatic (if false or omitted from request)" } } }