action edrv_patch_charge_station_variable { label: "patchChargeStationVariable" description: "Update config variables for a chargestation" provider: edrv method: PATCH path: "/v1/commands/{id}/variables" encoding: json input: { type: "object" properties: { id: { type: "string" } value: { type: "string" } variable: { type: "string" enum: ["MeterValueSampleInterval", "HeartbeatInterval", "ConnectionTimeOut", "WebSocketPingInterval", "TransactionMessageRetryInterval", "TransactionMessageAttempts"] } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }