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