Bringg · Schema

Bringg Driver (User)

A user with a driver role responsible for executing orders.

Last-Mile DeliveryDelivery OrchestrationFulfillmentLogisticsRetailDispatchRoutingDriver AppCarrier NetworkFleet ManagementSupply ChainE-commerceSame-Day DeliveryCurbside PickupReturns

Properties

Name Type Description
id integer
external_id string
name string
phone string
email string
user_type_id integer
team_ids array
lat number
lng number
current_location_updated_at string
is_on_shift boolean
unavailable boolean
View JSON Schema on GitHub

JSON Schema

bringg-driver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bringg/json-schema/bringg-driver-schema.json",
  "title": "Bringg Driver (User)",
  "description": "A user with a driver role responsible for executing orders.",
  "type": "object",
  "properties": {
    "id": {"type": "integer"},
    "external_id": {"type": "string"},
    "name": {"type": "string"},
    "phone": {"type": "string"},
    "email": {"type": "string", "format": "email"},
    "user_type_id": {"type": "integer"},
    "team_ids": {"type": "array", "items": {"type": "integer"}},
    "lat": {"type": "number"},
    "lng": {"type": "number"},
    "current_location_updated_at": {"type": "string", "format": "date-time"},
    "is_on_shift": {"type": "boolean"},
    "unavailable": {"type": "boolean"}
  },
  "required": ["id"]
}