Flipdish · Schema

PayoutReport3StorePayout

PayoutReport3StorePayout schema from Flipdish API - Payments.

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
StoreId integer
StoreName string
SummaryTotalPayout number
SummaryRevenue number
SummaryCashRevenue number
SummaryTotalFlipdishFees number
SummaryAdjustments number
Currency string
View JSON Schema on GitHub

JSON Schema

payments-payout-report3-store-payout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/payments-payout-report3-store-payout-schema.json",
  "title": "PayoutReport3StorePayout",
  "description": "PayoutReport3StorePayout schema from Flipdish API - Payments.",
  "type": "object",
  "properties": {
    "StoreId": {
      "format": "int32",
      "type": "integer",
      "example": 500123
    },
    "StoreName": {
      "type": "string",
      "example": "Example Name"
    },
    "SummaryTotalPayout": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "SummaryRevenue": {
      "format": "double",
      "type": "number",
      "example": 1.0
    },
    "SummaryCashRevenue": {
      "format": "double",
      "type": "number",
      "example": 1.0
    },
    "SummaryTotalFlipdishFees": {
      "format": "double",
      "type": "number",
      "example": 12.5
    },
    "SummaryAdjustments": {
      "format": "double",
      "type": "number",
      "example": 1.0
    },
    "Currency": {
      "type": "string",
      "example": "EUR"
    }
  }
}