action netatmo_createnewschedule { label: "createnewschedule" description: "The method createnewschedule creates a new schedule stored in the backup list." provider: netatmo method: POST path: "/createnewschedule" encoding: json input: { type: "object" properties: { device_id: { type: "string" } module_id: { type: "string" } } required: ["device_id", "module_id"] additionalProperties: false } output: { properties: { body: { properties: { schedule_id: { type: "string" description: "Id of the schedule. It can be use with the method \"switchschedule\" \n" } } } status: { type: "string" } time_exec: { type: "number" format: "double" } time_server: { type: "integer" format: "int32" } } } }