Flipdish · JSON Structure

Stores Store Order Capacity Config Structure

Represents one store's order capacity configuration

Type: object Properties: 4
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

StoreOrderCapacityConfig is a JSON Structure definition published by Flipdish, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

StoreId DeliveryType StoreIntervalInMinutes OrderCapacityPeriods

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-order-capacity-config-structure.json",
  "name": "StoreOrderCapacityConfig",
  "description": "Represents one store's order capacity configuration",
  "type": "object",
  "properties": {
    "StoreId": {
      "description": "Store identifier",
      "type": "int32",
      "example": 500123
    },
    "DeliveryType": {
      "description": "Signifies whether the order capacity configuration is for Delivery / Pickup",
      "enum": [
        "Delivery",
        "Pickup"
      ],
      "type": "string",
      "example": "Delivery"
    },
    "StoreIntervalInMinutes": {
      "description": "Store Interval - time between orders, e.g. 10 minutes between each order time available to customer",
      "type": "int32",
      "example": 1
    },
    "OrderCapacityPeriods": {
      "description": "Order capacity periods",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/StoreOrderCapacityPeriod"
      },
      "example": []
    }
  }
}