action just_eat_post_late_order_compensation_query { label: "late order compensation query, restaurant response required" description: "This webhook will be invoked when a late order compensation query has been raised and a restaurant response is required." provider: just_eat method: POST path: "/late-order-compensation-query" encoding: json input: { type: "object" properties: { compensationOptions: { type: "array" items: { type: "object" properties: { amount: { type: "number" format: "decimal" description: "Cost of the option in local currency" } isRecommended: { type: "boolean" description: "Whether this option is the recommended option" } } additionalProperties: false } } orderId: { type: "string" description: "Just Eat order identifier" } restaurantId: { type: "string" description: "Just Eat restaurant identifier" } tenant: { type: "string" description: "Tenant (Country) of order restaurant." } } } output: { type: "object" additionalProperties: true } }