Flipdish · JSON Structure

Stores Business Hours Override Base Structure

BusinessHoursOverrideBase schema from Flipdish API - Stores.

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

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

Properties

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-base-structure.json",
  "name": "BusinessHoursOverrideBase",
  "description": "BusinessHoursOverrideBase schema from Flipdish API - Stores.",
  "type": "object",
  "properties": {
    "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"
  ]
}