GeocodedWaypoint

Geocoded information for a waypoint

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
geocoder_status string Status of the geocoding operation
place_id string Place ID of the geocoded waypoint
types array Address type(s) of the geocoded waypoint
partial_match boolean Whether the geocoder did not return an exact match
View JSON Schema on GitHub

JSON Schema

google-maps-directions-geocoded-waypoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "GeocodedWaypoint",
  "type": "object",
  "description": "Geocoded information for a waypoint",
  "properties": {
    "geocoder_status": {
      "type": "string",
      "description": "Status of the geocoding operation"
    },
    "place_id": {
      "type": "string",
      "description": "Place ID of the geocoded waypoint"
    },
    "types": {
      "type": "array",
      "description": "Address type(s) of the geocoded waypoint"
    },
    "partial_match": {
      "type": "boolean",
      "description": "Whether the geocoder did not return an exact match"
    }
  }
}