{ "$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": [] } } }