Response from an Autocomplete request.
{ "$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" } } } }