Uber · Schema

DeliveryQuote

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
id string Quote identifier to use when creating the delivery.
created string
expires string
fee integer Estimated delivery fee in cents.
currency string Currency code.
duration integer Estimated delivery duration in seconds.
View JSON Schema on GitHub

JSON Schema

uber-deliveryquote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeliveryQuote",
  "title": "DeliveryQuote",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Quote identifier to use when creating the delivery."
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "expires": {
      "type": "string",
      "format": "date-time"
    },
    "fee": {
      "type": "integer",
      "description": "Estimated delivery fee in cents."
    },
    "currency": {
      "type": "string",
      "description": "Currency code."
    },
    "duration": {
      "type": "integer",
      "description": "Estimated delivery duration in seconds."
    }
  }
}