Flipdish · Schema

BusinessHoursOverrideBase

BusinessHoursOverrideBase schema from Flipdish API - Stores.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
DeliveryType string Delivery or Pickup
StartTime string Date and time in ISO 8601 format.
EndTime string Date and time in ISO 8601 format.
Type string Open, Closed or ClosedAllowPreOrders
View JSON Schema on GitHub

JSON Schema

stores-business-hours-override-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-business-hours-override-base-schema.json",
  "title": "BusinessHoursOverrideBase",
  "description": "BusinessHoursOverrideBase schema from Flipdish API - Stores.",
  "type": "object",
  "properties": {
    "DeliveryType": {
      "description": "Delivery or Pickup",
      "enum": [
        "Delivery",
        "Pickup"
      ],
      "type": "string",
      "example": "Delivery"
    },
    "StartTime": {
      "format": "date-time",
      "description": "Date and time in ISO 8601 format.",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "EndTime": {
      "format": "date-time",
      "description": "Date and time in ISO 8601 format.",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "Type": {
      "description": "Open, Closed or ClosedAllowPreOrders",
      "enum": [
        "Open",
        "Closed",
        "ClosedAllowPreOrders"
      ],
      "type": "string",
      "example": "Open"
    }
  },
  "required": [
    "StartTime",
    "EndTime"
  ]
}