Yelp · JSON Structure

Yelp Business Hours Structure

BusinessHours schema from Yelp Fusion API

Type: object Properties: 3
RestaurantLocal SearchReviewsBusiness DataLocation

BusinessHours is a JSON Structure definition published by Yelp, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

hour_type open is_open_now

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/yelp/refs/heads/main/json-structure/yelp-business-hours-structure.json",
  "name": "BusinessHours",
  "description": "BusinessHours schema from Yelp Fusion API",
  "type": "object",
  "properties": {
    "hour_type": {
      "type": "string",
      "example": "REGULAR"
    },
    "open": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "day": {
            "type": "int32",
            "description": "Day of week",
            "0 (Monday) to 6 (Sunday).": null
          },
          "start": {
            "type": "string"
          },
          "end": {
            "type": "string"
          },
          "is_overnight": {
            "type": "boolean"
          }
        }
      }
    },
    "is_open_now": {
      "type": "boolean",
      "example": true
    }
  }
}