Uber · Schema

BusinessLocationRequest

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
name string Location display name.
address string Full street address.
phone_number string Contact phone number.
instructions string Special pickup instructions.
View JSON Schema on GitHub

JSON Schema

uber-businesslocationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessLocationRequest",
  "title": "BusinessLocationRequest",
  "type": "object",
  "required": [
    "name",
    "address"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Location display name."
    },
    "address": {
      "type": "string",
      "description": "Full street address."
    },
    "phone_number": {
      "type": "string",
      "description": "Contact phone number."
    },
    "instructions": {
      "type": "string",
      "description": "Special pickup instructions."
    }
  }
}