action edrv_post_charge { label: "postCharge" description: "Change charge" provider: edrv method: POST path: "/v1/vehicles/{id}/charge" encoding: json input: { type: "object" properties: { action: { type: "string" enum: ["START", "STOP"] } id: { type: "string" } } required: ["action", "id"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }