Otter · JSON Structure

Public Api Delivery Window Structure

The delivery window in which the shipment is expected to arrive at the destination.

Type: object Properties: 2 Required: 2
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

DeliveryWindow is a JSON Structure definition published by Otter, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

start end

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-delivery-window-structure.json",
  "name": "DeliveryWindow",
  "description": "The delivery window in which the shipment is expected to arrive at the destination.",
  "type": "object",
  "properties": {
    "start": {
      "type": "datetime",
      "description": "ISO-8601 timestamp representing the start of the time range.",
      "example": "2007-12-03T10:15:30+01:00"
    },
    "end": {
      "type": "datetime",
      "description": "ISO-8601 timestamp representing the end of the time range.",
      "example": "2007-12-03T10:15:30+01:00"
    }
  },
  "required": [
    "start",
    "end"
  ]
}