Otter · Schema

PickUpInfo

Pick up information for delivery.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
readyAtTime string The timestamp the order(s) became ready for pick up by a courier. If not provided, the order is not yet ready to be picked up.
View JSON Schema on GitHub

JSON Schema

public-api-pick-up-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PickUpInfo",
  "description": "Pick up information for delivery.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-pick-up-info-schema.json",
  "type": "object",
  "properties": {
    "readyAtTime": {
      "type": "string",
      "description": "The timestamp the order(s) became ready for pick up by a courier. If not provided, the order is not yet ready to be picked up.",
      "format": "date-time",
      "example": "2007-12-03T10:15:30+01:00"
    }
  }
}