action edrv_get_charge_station { label: "getChargeStation" description: "Get a single charge station's data" provider: edrv method: GET path: "/v1/chargestations/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } include_evses: { type: "boolean" } include_location: { type: "boolean" } include_organization: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }