Google Places · JSON Structure

Time Point Structure

A point in time when a place opens or closes.

Type: object Properties: 3
RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

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

Properties

day hour minute

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/google-places/refs/heads/main/json-structure/time-point-structure.json",
  "name": "TimePoint",
  "description": "A point in time when a place opens or closes.",
  "type": "object",
  "properties": {
    "day": {
      "description": "Day of the week, 0 (Sunday) to 6 (Saturday).",
      "minimum": 0,
      "maximum": 6,
      "example": 1,
      "type": "int32"
    },
    "hour": {
      "description": "Hour in 24-hour format, 0 to 23.",
      "minimum": 0,
      "maximum": 23,
      "example": 9,
      "type": "int32"
    },
    "minute": {
      "description": "Minute, 0 to 59.",
      "minimum": 0,
      "maximum": 59,
      "example": 0,
      "type": "int32"
    }
  }
}