action lyft_get_ride { label: "Get the ride detail of a given ride ID" description: "Get the status of a ride along with information about the driver, vehicle and price of a given ride ID\n" provider: lyft method: GET path: "/rides/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }