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-timezonetextvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeZoneTextValue",
  "title": "TimeZoneTextValue",
  "type": "object",
  "description": "A time value with text representation and time zone",
  "properties": {
    "text": {
      "type": "string",
      "description": "Human-readable time string",
      "example": "example_value"
    },
    "value": {
      "type": "integer",
      "format": "int64",
      "description": "Time expressed in seconds since epoch",
      "example": 10
    },
    "time_zone": {
      "type": "string",
      "description": "The time zone of this time value",
      "example": "America/New_York"
    }
  }
}