Otter · JSON Structure

Public Api Order Status Update Request Structure

The request to change an order status.

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

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

Properties

orderStatus

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-order-status-update-request-structure.json",
  "name": "OrderStatusUpdateRequest",
  "description": "The request to change an order status.",
  "type": "object",
  "properties": {
    "orderStatus": {
      "type": "string",
      "description": "The requested status to transition the order to.",
      "enum": [
        "PREPARED",
        "CANCELED",
        "FULFILLED"
      ],
      "example": "PREPARED"
    }
  },
  "required": [
    "orderStatus"
  ]
}