Point

A point in time on a weekly schedule

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
day integer Day of the week (0=Sunday, 6=Saturday)
hour integer Hour in 24-hour format (0-23)
minute integer Minute (0-59)
date object A specific date for current opening hours
View JSON Schema on GitHub

JSON Schema

google-maps-places-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Point",
  "type": "object",
  "description": "A point in time on a weekly schedule",
  "properties": {
    "day": {
      "type": "integer",
      "description": "Day of the week (0=Sunday, 6=Saturday)"
    },
    "hour": {
      "type": "integer",
      "description": "Hour in 24-hour format (0-23)"
    },
    "minute": {
      "type": "integer",
      "description": "Minute (0-59)"
    },
    "date": {
      "type": "object",
      "description": "A specific date for current opening hours"
    }
  }
}