Flipdish · JSON Structure

Stores Business Hours Override Structure

BusinessHoursOverride schema from Flipdish API - Stores.

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

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

Properties

BusinessHoursOverrideId DeliveryType StartTime EndTime Type

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-business-hours-override-structure.json",
  "name": "BusinessHoursOverride",
  "description": "BusinessHoursOverride schema from Flipdish API - Stores.",
  "type": "object",
  "properties": {
    "BusinessHoursOverrideId": {
      "description": "Unique identifier",
      "type": "int32",
      "example": 500123
    },
    "DeliveryType": {
      "description": "Delivery or Pickup",
      "enum": [
        "Delivery",
        "Pickup"
      ],
      "type": "string",
      "example": "Delivery"
    },
    "StartTime": {
      "description": "Date and time in ISO 8601 format.",
      "type": "datetime",
      "example": "2026-06-02T12:00:00Z"
    },
    "EndTime": {
      "description": "Date and time in ISO 8601 format.",
      "type": "datetime",
      "example": "2026-06-02T12:00:00Z"
    },
    "Type": {
      "description": "Open, Closed or ClosedAllowPreOrders",
      "enum": [
        "Open",
        "Closed",
        "ClosedAllowPreOrders"
      ],
      "type": "string",
      "example": "Open"
    }
  },
  "required": [
    "StartTime",
    "EndTime"
  ]
}