action netatmo_switchschedule { label: "switchschedule" description: "The method switchschedule switches the Thermostat's schedule to another existing schedule." provider: netatmo method: POST path: "/switchschedule" encoding: json input: { type: "object" properties: { device_id: { type: "string" } module_id: { type: "string" } schedule_id: { type: "string" } } required: ["device_id", "module_id", "schedule_id"] additionalProperties: false } output: { properties: { body: { type: "string" } status: { type: "string" } time_exec: { type: "number" format: "double" } time_server: { type: "integer" format: "int32" } } } }