action enode_control_charger_charging { label: "Control Charging" description: "Instruct the charger to start or stop charging" provider: enode method: POST path: "/chargers/{chargerId}/charging" encoding: json input: { type: "object" properties: { action: { type: "string" description: "Charging action to perform" enum: ["START", "STOP"] } chargerId: { type: "string" } } required: ["action", "chargerId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }