action just_eat_post_order_time_updated { label: "Order time updated" description: "Callback to notify recipients that there has been a change to the restaurant order times for a given day and service type" provider: just_eat method: POST path: "/order-time-updated" encoding: json input: { type: "object" properties: { dayOfWeek: { type: "string" format: "enum" description: "The day of the week that has been updated." enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"] } lowerBoundMinutes: { type: "integer" format: "int32" description: "Order time lower bound value, in minutes." } restaurantId: { type: "string" description: "The Just Eat restaurant ID" } serviceType: { type: "string" format: "enum" description: "Service type of the order time." enum: ["Delivery", "Collection"] } upperBoundMinutes: { type: "integer" format: "int32" description: "Order time upper bound value, in minutes." } } } output: { type: "object" additionalProperties: true } }