Flipdish · JSON Structure

Stores Store Order Capacity Period Structure

Represents a single order capacity period

Type: object Properties: 6
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

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

Properties

MaxOrderNumberPerStoreInterval DayOfTheWeek PeriodStartHour PeriodStartMinutes PeriodEndHour PeriodEndMinutes

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-period-structure.json",
  "name": "StoreOrderCapacityPeriod",
  "description": "Represents a single order capacity period",
  "type": "object",
  "properties": {
    "MaxOrderNumberPerStoreInterval": {
      "description": "The maximum number of orders per each store order interval in this order capacity period.\r\nE.g. for a period from 9:00 till 11:00, if the store's interval is 10 minutes, and MaxOrderNumberPerStoreInterval is set to 5,\r\nit means that within each 10-minute interval between 9:00 and 11:00 (i.e. 9:00-9:10, 9:10-9:20, .. , 10:50-11:00) it will be possible to\r\nrequest at most 5 orders.",
      "type": "int32",
      "example": 3
    },
    "DayOfTheWeek": {
      "description": "Day of the week the period pertains to",
      "enum": [
        "Sunday",
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday",
        "Saturday"
      ],
      "type": "string",
      "example": "Sunday"
    },
    "PeriodStartHour": {
      "description": "The hour the period starts at",
      "type": "int32",
      "example": 1
    },
    "PeriodStartMinutes": {
      "description": "The minutes after the hour the period starts at",
      "type": "int32",
      "example": 1
    },
    "PeriodEndHour": {
      "description": "The hour the period ends at",
      "type": "int32",
      "example": 1
    },
    "PeriodEndMinutes": {
      "description": "The minutes after the hour the period ends at",
      "type": "int32",
      "example": 1
    }
  }
}