grubhub · Schema

OrderConfirmation

Payload for confirming an order, with optional wait time estimate.

Properties

Name Type Description
wait_time_in_minutes integer Estimated number of minutes until the order will be ready for delivery or pickup.
View JSON Schema on GitHub

JSON Schema

grubhub-orderconfirmation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OrderConfirmation",
  "title": "OrderConfirmation",
  "type": "object",
  "description": "Payload for confirming an order, with optional wait time estimate.",
  "properties": {
    "wait_time_in_minutes": {
      "type": "integer",
      "description": "Estimated number of minutes until the order will be ready for delivery or pickup.",
      "minimum": 1
    }
  }
}