Uber Eats · Schema

StoreStatus

StoreStatus schema from Uber Eats Marketplace API

Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

Properties

Name Type Description
status string
offline_reason string
paused_until string
View JSON Schema on GitHub

JSON Schema

eats-store-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StoreStatus",
  "description": "StoreStatus schema from Uber Eats Marketplace API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uber-eats/refs/heads/main/json-schema/eats-store-status-schema.json",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "ONLINE",
        "OFFLINE",
        "PAUSED"
      ],
      "example": "ONLINE"
    },
    "offline_reason": {
      "type": "string",
      "example": "STORE_CLOSED"
    },
    "paused_until": {
      "type": "string",
      "format": "date-time",
      "example": "2026-06-01T19:00:00.000Z"
    }
  }
}