Deliveroo · Schema

Location

A pickup or dropoff location.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
address string The location address.
latitude number The location latitude.
longitude number The location longitude.
View JSON Schema on GitHub

JSON Schema

signature-api-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Location",
  "description": "A pickup or dropoff location.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/signature-api-location-schema.json",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "The location address.",
      "example": "123 Example Street, London"
    },
    "latitude": {
      "type": "number",
      "description": "The location latitude.",
      "example": 1.0
    },
    "longitude": {
      "type": "number",
      "description": "The location longitude.",
      "example": 1.0
    }
  }
}