Flipdish · JSON Structure

Payments Payout Store Structure

Payout details for a single store

Type: object Properties: 12
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

StoreId StoreName Amount OnlineRevenue Revenue RevenueAdjustments FlipdishFees Chargebacks OtherCharges Balance PosRevenue ThirdPartyFees

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-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"
    }
  }
}