action edrv_patch_connector { label: "patchConnector" description: "Update a connector's data" provider: edrv method: PATCH path: "/v1/connectors/{id}" encoding: json input: { type: "object" properties: { chargestation: { type: "string" } format: { type: "string" } id: { type: "string" } power: { type: "integer" } power_type: { type: "string" } rate: { type: "string" } type: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }