action lyft_get_cost { label: "Cost estimates" description: "Estimate the cost of taking a Lyft between two points.\n" provider: lyft method: GET path: "/cost" encoding: json input: { type: "object" properties: { end_lat: { type: "string" } end_lng: { type: "string" } start_lat: { type: "string" } start_lng: { type: "string" } } required: ["start_lat", "start_lng"] additionalProperties: false } output: { type: "object" additionalProperties: true } }