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