Flipdish · JSON Structure

Orders Refund Structure

Refund

Type: object Properties: 3 Required: 2
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Refund is a JSON Structure definition published by Flipdish, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

RefundReason RefundAmount NotifyCustomer

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/orders-refund-structure.json",
  "name": "Refund",
  "description": "Refund",
  "type": "object",
  "properties": {
    "RefundReason": {
      "description": "Refund reason",
      "type": "string",
      "example": "string"
    },
    "RefundAmount": {
      "description": "Refund amount",
      "minimum": 0,
      "type": "double",
      "example": 12.5
    },
    "NotifyCustomer": {
      "description": "If true, the system sends notification to the customer about the refund",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "RefundAmount",
    "NotifyCustomer"
  ]
}