action just_eat_get_order_times { label: "Get the restaurant's delivery and collection lead times" description: "Get list of the delivery and collection lead times supplied by the restaurant" provider: just_eat method: GET path: "/restaurants/{tenant}/{restaurantId}/ordertimes" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } restaurantId: { type: "string" } tenant: { type: "string" } } required: ["Authorization", "restaurantId", "tenant"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "The object representing order time entry" properties: { dayOfWeek: { type: "string" description: "Day of week for order time" enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] } lowerBoundMinutes: { type: "integer" format: "int32" description: "Order time lower bound value, in minutes." } serviceType: { type: "string" description: "Service type of the order time" enum: ["Delivery", "Collection"] } upperBoundMinutes: { type: "integer" format: "int32" description: "Order time upper bound value, in minutes." } } } } }