Otter · Schema

UploadPastOrdersResponse

The response to create a past order (read only).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
orderReferences array References for orders that were successfully uploaded.
View JSON Schema on GitHub

JSON Schema

public-api-upload-past-orders-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UploadPastOrdersResponse",
  "description": "The response to create a past order (read only).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-upload-past-orders-response-schema.json",
  "type": "object",
  "properties": {
    "orderReferences": {
      "type": "array",
      "description": "References for orders that were successfully uploaded.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-reference-schema.json"
      }
    }
  },
  "required": [
    "orderReferences"
  ]
}