Uber Eats · Schema

PODReq

PODReq schema from Uber Direct (DaaS) API

Uber EatsUber DirectFood DeliveryLast-Mile LogisticsRestaurantsMenusOrdersFulfillmentCourierOAuth2

Properties

Name Type Description
waypoint string The waypoint where the verification requirement was taken.
type string The type of delivery verification requirement.
View JSON Schema on GitHub

JSON Schema

uber-direct-podreq-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PODReq",
  "description": "PODReq schema from Uber Direct (DaaS) API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/uber-eats/refs/heads/main/json-schema/uber-direct-podreq-schema.json",
  "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"
  ]
}