{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-processing-fee-config-schema.json", "title": "ProcessingFeeConfig", "description": "Processing fee config", "type": "object", "properties": { "StoreId": { "format": "int32", "description": "Store Id", "type": "integer", "example": 500123 }, "PaymentAccountType": { "description": "Payment account type", "enum": [ "Card", "Cash", "Ideal", "Bancontact", "Giropay", "Eps", "Emv", "PayPal", "PayGreen", "GoogleWalletToken" ], "type": "string", "example": "Card" }, "PercentFee": { "format": "double", "description": "Percent fee to customer, including VAT", "type": "number", "example": 12.5 }, "FixedFee": { "format": "double", "description": "Fixed fee to customer, including VAT", "type": "number", "example": 12.5 } } }