action edrv_setchargingschedule { label: "setchargingschedule" description: "Set one of charging power or current of a specific chargestation connector" provider: edrv method: POST path: "/v1/commands/chargingschedule" encoding: json input: { properties: { connector: { type: "string" } schedule: { type: "array" items: { type: "object" properties: { endDate: { type: "string" } limit: { type: "number" } startDate: { type: "string" } unit: { type: "string" } } } } } } output: { type: "object" properties: { command: { type: "object" } message: { type: "string" } ok: { type: "boolean" } } } }