Uber Eats · JSON Structure

Eats Store Status Structure

StoreStatus schema from Uber Eats Marketplace API

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

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

Properties

status offline_reason paused_until

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-store-status-structure.json",
  "name": "StoreStatus",
  "description": "StoreStatus schema from Uber Eats Marketplace API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "ONLINE",
        "OFFLINE",
        "PAUSED"
      ],
      "example": "ONLINE"
    },
    "offline_reason": {
      "type": "string",
      "example": "STORE_CLOSED"
    },
    "paused_until": {
      "type": "datetime",
      "example": "2026-06-01T19:00:00.000Z"
    }
  }
}