Uber · Schema

StoreUpdate

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
name string Updated store name.
contact_emails array
View JSON Schema on GitHub

JSON Schema

uber-storeupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StoreUpdate",
  "title": "StoreUpdate",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated store name."
    },
    "contact_emails": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      }
    }
  }
}