Flipdish · JSON Structure

Stores Store Collection Settings Structure

Store Collection Settings

Type: object Properties: 6 Required: 6
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

PickupEnabled MinimumPickupOrderAmount RequireCustomerNameForPickup CashOrdersPickupEnabled LeadTimeMinutes EtaInPickupConfirmationSmsEnabled

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/stores-store-collection-settings-structure.json",
  "name": "StoreCollectionSettings",
  "description": "Store Collection Settings",
  "type": "object",
  "properties": {
    "PickupEnabled": {
      "description": "True if the store accepts pickup orders",
      "type": "boolean",
      "example": true
    },
    "MinimumPickupOrderAmount": {
      "description": "Minimum pickup order amount",
      "type": "double",
      "example": 12.5
    },
    "RequireCustomerNameForPickup": {
      "description": "True if customer name required for pickup orders",
      "type": "boolean",
      "example": true
    },
    "CashOrdersPickupEnabled": {
      "description": "True if the store accepts cash payment for pickup orders",
      "type": "boolean",
      "example": true
    },
    "LeadTimeMinutes": {
      "description": "Auto accept lead time for collection orders",
      "type": "int32",
      "example": 1
    },
    "EtaInPickupConfirmationSmsEnabled": {
      "description": "True if order confirmation sms includes estimated time when order will be ready for collection",
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "PickupEnabled",
    "MinimumPickupOrderAmount",
    "RequireCustomerNameForPickup",
    "CashOrdersPickupEnabled",
    "LeadTimeMinutes",
    "EtaInPickupConfirmationSmsEnabled"
  ]
}