Google Places · JSON Structure

Search Response Structure

A response containing a list of places.

Type: object Properties: 1
RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

SearchResponse is a JSON Structure definition published by Google Places, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

places

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/google-places/refs/heads/main/json-structure/search-response-structure.json",
  "name": "SearchResponse",
  "description": "A response containing a list of places.",
  "type": "object",
  "properties": {
    "places": {
      "description": "The list of places matching the request.",
      "items": {
        "$ref": "#/components/schemas/Place"
      },
      "type": "array"
    }
  }
}