action edrv_post_charge_stations { label: "postChargeStations" description: "Create a new charge station" provider: edrv method: POST path: "/v1/chargestations" encoding: json input: { type: "object" properties: { location: { type: "string" } manufacturer: { type: "string" } model: { type: "string" } protocol: { type: "string" } public: { type: "boolean" } } } output: { type: "object" properties: { chargestation: { type: "object" } message: { type: "string" } ok: { type: "boolean" } } } }