Uber Eats · JSON Structure

Eats Order Structure

Order schema from Uber Eats Marketplace API

Type: object Properties: 9
Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

Order is a JSON Structure definition published by Uber Eats, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id display_id external_reference_id current_state store eater cart payment placed_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uber-eats/refs/heads/main/json-structure/eats-order-structure.json",
  "name": "Order",
  "description": "Order schema from Uber Eats Marketplace API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "del_aBc123XyZ"
    },
    "display_id": {
      "type": "string",
      "example": "del_aBc123XyZ"
    },
    "external_reference_id": {
      "type": "string",
      "example": "del_aBc123XyZ"
    },
    "current_state": {
      "type": "string",
      "example": "example"
    },
    "store": {
      "type": "object"
    },
    "eater": {
      "type": "object"
    },
    "cart": {
      "type": "object"
    },
    "payment": {
      "type": "object"
    },
    "placed_at": {
      "type": "datetime",
      "example": "2026-06-01T19:00:00.000Z"
    }
  }
}