AutocompleteResponse

Response from the autocomplete endpoint

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
suggestions array List of autocomplete suggestions
View JSON Schema on GitHub

JSON Schema

google-maps-autocompleteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutocompleteResponse",
  "title": "AutocompleteResponse",
  "type": "object",
  "description": "Response from the autocomplete endpoint",
  "properties": {
    "suggestions": {
      "type": "array",
      "description": "List of autocomplete suggestions",
      "items": {
        "$ref": "#/components/schemas/Suggestion"
      },
      "example": []
    }
  }
}