TimeZoneTextValue

A time value with text representation and time zone

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
text string Human-readable time string
value integer Time expressed in seconds since epoch
time_zone string The time zone of this time value
View JSON Schema on GitHub

JSON Schema

google-maps-directions-time-zone-text-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TimeZoneTextValue",
  "type": "object",
  "description": "A time value with text representation and time zone",
  "properties": {
    "text": {
      "type": "string",
      "description": "Human-readable time string"
    },
    "value": {
      "type": "integer",
      "description": "Time expressed in seconds since epoch"
    },
    "time_zone": {
      "type": "string",
      "description": "The time zone of this time value"
    }
  }
}