action just_eat_get_delivery_estimate { label: "Get delivery estimate" description: "Get delivery estimate" provider: just_eat method: GET path: "/delivery/estimate" encoding: json input: { type: "object" properties: { restaurantReference: { type: "string" } toLat: { type: "string" } toLon: { type: "string" } toPostcode: { type: "string" } } required: ["restaurantReference"] additionalProperties: false } output: { type: "object" properties: { DurationInMinutes: { type: "string" } RestaurantReference: { type: "string" } } } }