Uber · Schema

TimeEstimate

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
product_id string Unique identifier representing a specific product for a given location.
display_name string Display name of product.
estimate integer ETA for the product in seconds.
View JSON Schema on GitHub

JSON Schema

uber-timeestimate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeEstimate",
  "title": "TimeEstimate",
  "type": "object",
  "properties": {
    "product_id": {
      "type": "string",
      "description": "Unique identifier representing a specific product for a given location."
    },
    "display_name": {
      "type": "string",
      "description": "Display name of product."
    },
    "estimate": {
      "type": "integer",
      "description": "ETA for the product in seconds."
    }
  }
}