Flipdish · Schema

FeeSummary

Fee Summary

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
FeeAmount number Fee amount
PercentageRate number Percentage rate
PerTransactionFee number Per transaction fee
View JSON Schema on GitHub

JSON Schema

orders-fee-summary-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/orders-fee-summary-schema.json",
  "title": "FeeSummary",
  "description": "Fee Summary",
  "type": "object",
  "properties": {
    "FeeAmount": {
      "format": "double",
      "description": "Fee amount",
      "type": "number",
      "example": 12.5
    },
    "PercentageRate": {
      "format": "double",
      "description": "Percentage rate",
      "type": "number",
      "example": 1.0
    },
    "PerTransactionFee": {
      "format": "double",
      "description": "Per transaction fee",
      "type": "number",
      "example": 12.5
    }
  }
}