Deliveroo · Schema

DeliveryRequest

Request body for scheduling a delivery-as-a-service delivery.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
pickup object
dropoff object
View JSON Schema on GitHub

JSON Schema

signature-api-delivery-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeliveryRequest",
  "description": "Request body for scheduling a delivery-as-a-service delivery.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/signature-api-delivery-request-schema.json",
  "type": "object",
  "properties": {
    "pickup": {
      "$ref": "#/components/schemas/Location"
    },
    "dropoff": {
      "$ref": "#/components/schemas/Location"
    }
  }
}