{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/payments-payout-store-structure.json", "name": "PayoutStore", "description": "Payout details for a single store", "type": "object", "properties": { "StoreId": { "description": "The id of the Store.", "type": "int32", "example": 500123 }, "StoreName": { "description": "Name of the store", "type": "string", "example": "Example Name" }, "Amount": { "description": "Amount of the payout for this Store", "type": "double", "nullable": true, "example": 12.5 }, "OnlineRevenue": { "$ref": "#/components/schemas/RevenueDetail" }, "Revenue": { "$ref": "#/components/schemas/RevenueDetail" }, "RevenueAdjustments": { "$ref": "#/components/schemas/RevenueAdjustmentsDetails" }, "FlipdishFees": { "$ref": "#/components/schemas/FlipdishFeesDetails" }, "Chargebacks": { "$ref": "#/components/schemas/ChargebackDetails" }, "OtherCharges": { "$ref": "#/components/schemas/OtherChargesDetails" }, "Balance": { "$ref": "#/components/schemas/BalanceDetails" }, "PosRevenue": { "$ref": "#/components/schemas/PosRevenueDetails" }, "ThirdPartyFees": { "$ref": "#/components/schemas/ThirdPartyFeesDetails" } } }