Bringg · Schema

Bringg Waypoint

Waypoint (stop) on an order. Each order may have up to two waypoints: a pickup and a drop-off.

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

Properties

Name Type Description
id integer
task_id integer
position integer
address string
lat number
lng number
scheduled_at string
no_later_than string
checkin_time string
checkout_time string
done boolean
rated boolean
rating_reason string
note string
View JSON Schema on GitHub

JSON Schema

bringg-waypoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/bringg/json-schema/bringg-waypoint-schema.json",
  "title": "Bringg Waypoint",
  "description": "Waypoint (stop) on an order. Each order may have up to two waypoints: a pickup and a drop-off.",
  "type": "object",
  "properties": {
    "id": {"type": "integer"},
    "task_id": {"type": "integer"},
    "position": {"type": "integer"},
    "address": {"type": "string"},
    "lat": {"type": "number"},
    "lng": {"type": "number"},
    "scheduled_at": {"type": "string", "format": "date-time"},
    "no_later_than": {"type": "string", "format": "date-time"},
    "checkin_time": {"type": "string", "format": "date-time"},
    "checkout_time": {"type": "string", "format": "date-time"},
    "done": {"type": "boolean"},
    "rated": {"type": "boolean"},
    "rating_reason": {"type": "string"},
    "note": {"type": "string"}
  },
  "required": ["id"]
}