Otter · Schema

StoreHoursConfiguration

The current store hours configuration of a store.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
deliveryHours object
pickupHours object
timezone string The store time zone identifier. (e.g. America/New_York)
View JSON Schema on GitHub

JSON Schema

public-api-store-hours-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StoreHoursConfiguration",
  "description": "The current store hours configuration of a store.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-hours-configuration-schema.json",
  "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"
  ]
}