Uber · Schema

DriverProfile

Ride-SharingRidesTaxisTransportationFood DeliveryDeliveryLogistics

Properties

Name Type Description
uuid string Unique identifier for the driver.
first_name string First name of the driver.
last_name string Last name of the driver.
email string Email address of the driver.
phone_number string Phone number of the driver.
picture string Profile picture URL for the driver.
promo_code string Driver's referral promo code.
activation_status string Driver activation status.
View JSON Schema on GitHub

JSON Schema

uber-driverprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DriverProfile",
  "title": "DriverProfile",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Unique identifier for the driver."
    },
    "first_name": {
      "type": "string",
      "description": "First name of the driver."
    },
    "last_name": {
      "type": "string",
      "description": "Last name of the driver."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the driver."
    },
    "phone_number": {
      "type": "string",
      "description": "Phone number of the driver."
    },
    "picture": {
      "type": "string",
      "format": "uri",
      "description": "Profile picture URL for the driver."
    },
    "promo_code": {
      "type": "string",
      "description": "Driver's referral promo code."
    },
    "activation_status": {
      "type": "string",
      "description": "Driver activation status."
    }
  }
}