Revel Systems · Schema

OrderFinalizedPayload

OrderAllInOne object with items, modifiers, taxes, payments, and order history.

POSRestaurantRetailiPad

Properties

Name Type Description
event string
id integer
View JSON Schema on GitHub

JSON Schema

revel-webhooks-order-finalized-payload-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderFinalizedPayload",
  "description": "OrderAllInOne object with items, modifiers, taxes, payments, and order history.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/revel-systems/refs/heads/main/json-schema/revel-webhooks-order-finalized-payload-schema.json",
  "type": "object",
  "properties": {
    "event": {
      "type": "string",
      "const": "order.finalized"
    },
    "id": {
      "type": "integer",
      "example": 1
    }
  }
}