Google Places · Schema

AutocompleteResponse

Response from an Autocomplete request.

RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

Properties

Name Type Description
suggestions array A list of place and query suggestions.
View JSON Schema on GitHub

JSON Schema

autocomplete-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/google-places/refs/heads/main/json-schema/autocomplete-response-schema.json",
  "title": "AutocompleteResponse",
  "description": "Response from an Autocomplete request.",
  "type": "object",
  "properties": {
    "suggestions": {
      "type": "array",
      "description": "A list of place and query suggestions.",
      "items": {
        "$ref": "#/components/schemas/Suggestion"
      }
    }
  }
}