action edrv_patch_charge_station { label: "patchChargeStation" description: "Update a charge station's data" provider: edrv method: PATCH path: "/v1/chargestations/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } location: { type: "string" } manufacturer: { type: "string" } model: { type: "string" } protocol: { type: "string" } public: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }