Flipdish · JSON Structure

Payments Previous Order Item Structure

PreviousOrderItem schema from Flipdish API - Payments.

Type: object Properties: 7
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

PreviousOrderItem is a JSON Structure definition published by Flipdish, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

MenuSectionDisplayOrder MenuSectionName Name PriceIncludingOptionSetItems DepositReturnFee TaxAmount PreviousOrderItemOptions

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/flipdish/refs/heads/main/json-structure/payments-previous-order-item-structure.json",
  "name": "PreviousOrderItem",
  "description": "PreviousOrderItem schema from Flipdish API - Payments.",
  "type": "object",
  "properties": {
    "MenuSectionDisplayOrder": {
      "type": "int32",
      "example": 1
    },
    "MenuSectionName": {
      "type": "string",
      "example": "Example Name"
    },
    "Name": {
      "type": "string",
      "example": "Example Name"
    },
    "PriceIncludingOptionSetItems": {
      "type": "double",
      "example": 12.5
    },
    "DepositReturnFee": {
      "type": "double",
      "example": 12.5
    },
    "TaxAmount": {
      "type": "double",
      "example": 12.5
    },
    "PreviousOrderItemOptions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PreviousOrderItemOption"
      },
      "example": []
    }
  }
}