Otter · JSON Structure

Public Api Storefront Special Hours Structure

Describes the configuration of special store hours.

Type: object Properties: 3 Required: 3
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

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

Properties

date timeRanges specialHourType

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/otter/refs/heads/main/json-structure/public-api-storefront-special-hours-structure.json",
  "name": "Storefront_SpecialHours",
  "description": "Describes the configuration of special store hours.",
  "type": "object",
  "properties": {
    "date": {
      "type": "date",
      "description": "Date the special hour configuration applies.",
      "example": "2021-10-01"
    },
    "timeRanges": {
      "type": "array",
      "minItems": 1,
      "description": "Hours range applied to configured date.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-storefront-time-range-schema.json"
      }
    },
    "specialHourType": {
      "type": "string",
      "description": "Store state that should be applied during the configured special hour.",
      "enum": [
        "OPEN",
        "CLOSED"
      ],
      "example": "OPEN"
    }
  },
  "required": [
    "date",
    "timeRanges",
    "specialHourType"
  ]
}