Flipdish · Schema

PreviousOrderItem

PreviousOrderItem schema from Flipdish API - Payments.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
MenuSectionDisplayOrder integer
MenuSectionName string
Name string
PriceIncludingOptionSetItems number
DepositReturnFee number
TaxAmount number
PreviousOrderItemOptions array
View JSON Schema on GitHub

JSON Schema

payments-previous-order-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/payments-previous-order-item-schema.json",
  "title": "PreviousOrderItem",
  "description": "PreviousOrderItem schema from Flipdish API - Payments.",
  "type": "object",
  "properties": {
    "MenuSectionDisplayOrder": {
      "format": "int32",
      "type": "integer",
      "example": 1
    },
    "MenuSectionName": {
      "type": "string",
      "example": "Example Name"
    },
    "Name": {
      "type": "string",
      "example": "Example Name"
    },
    "PriceIncludingOptionSetItems": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "DepositReturnFee": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "TaxAmount": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "PreviousOrderItemOptions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PreviousOrderItemOption"
      },
      "example": []
    }
  }
}