Yelp · Schema

BusinessHours

BusinessHours schema from Yelp Fusion API

RestaurantLocal SearchReviewsBusiness DataLocation

Properties

Name Type Description
hour_type string
open array
is_open_now boolean
View JSON Schema on GitHub

JSON Schema

yelp-business-hours-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/yelp/refs/heads/main/json-schema/yelp-business-hours-schema.json",
  "title": "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": "integer",
            "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
    }
  }
}