Otter · Schema

ShipmentStateChange

ShipmentStateChange schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
state object
timestamp string ISO-8601 timestamp representing when the state change occurred.
View JSON Schema on GitHub

JSON Schema

public-api-shipment-state-change-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ShipmentStateChange",
  "description": "ShipmentStateChange schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-shipment-state-change-schema.json",
  "type": "object",
  "properties": {
    "state": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-shipment-state-schema.json"
    },
    "timestamp": {
      "type": "string",
      "description": "ISO-8601 timestamp representing when the state change occurred.",
      "format": "date-time",
      "example": "2007-12-03T10:15:30+01:00"
    }
  },
  "required": [
    "timestamp",
    "state"
  ]
}