Uber Eats · JSON Structure

Uber Direct Podreq Structure

PODReq schema from Uber Direct (DaaS) API

Type: object Properties: 2 Required: 2
Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

PODReq is a JSON Structure definition published by Uber Eats, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

waypoint type

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/uber-direct-podreq-structure.json",
  "name": "PODReq",
  "description": "PODReq schema from Uber Direct (DaaS) API",
  "type": "object",
  "properties": {
    "waypoint": {
      "type": "string",
      "enum": [
        "pickup",
        "dropoff",
        "return"
      ],
      "description": "The waypoint where the verification requirement was taken.",
      "example": "pickup"
    },
    "type": {
      "type": "string",
      "enum": [
        "picture",
        "signature",
        "pincode"
      ],
      "description": "The type of delivery verification requirement.",
      "example": "picture"
    }
  },
  "required": [
    "waypoint",
    "type"
  ]
}