Otter · JSON Structure

Public Api Store Hours Configuration Structure

The current store hours configuration of a store.

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

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

Properties

deliveryHours pickupHours timezone

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-store-hours-configuration-structure.json",
  "name": "StoreHoursConfiguration",
  "description": "The current store hours configuration of a store.",
  "type": "object",
  "properties": {
    "deliveryHours": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-hours-schema.json"
    },
    "pickupHours": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-hours-schema.json"
    },
    "timezone": {
      "type": "string",
      "description": "The store time zone identifier. (e.g. America/New_York)",
      "example": "America/Los_Angeles"
    }
  },
  "required": [
    "timezone"
  ]
}