action edrv_get_vehicles { label: "getVehicles" description: "List all vehicles" provider: edrv method: GET path: "/v1/vehicles" encoding: json input: { type: "object" properties: { active: { type: "boolean" } } additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "array" items: { type: "object" } } } } }