action edrv_get_reservation { label: "getReservation" description: "Get one reservation data" provider: edrv method: GET path: "/v1/reservations/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } include_chargestation: { type: "boolean" } include_organization: { type: "boolean" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }