Uber · Schema

BusinessLocation

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
id string Unique location identifier.
name string Location display name.
address string Full address of the location.
phone_number string Contact phone number.
View JSON Schema on GitHub

JSON Schema

uber-businesslocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessLocation",
  "title": "BusinessLocation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique location identifier."
    },
    "name": {
      "type": "string",
      "description": "Location display name."
    },
    "address": {
      "type": "string",
      "description": "Full address of the location."
    },
    "phone_number": {
      "type": "string",
      "description": "Contact phone number."
    }
  }
}