Google Places · Schema

SearchResponse

A response containing a list of places.

RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

Properties

Name Type Description
places array The list of places matching the request.
View JSON Schema on GitHub

JSON Schema

search-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/search-response-schema.json",
  "title": "SearchResponse",
  "description": "A response containing a list of places.",
  "type": "object",
  "properties": {
    "places": {
      "type": "array",
      "description": "The list of places matching the request.",
      "items": {
        "$ref": "#/components/schemas/Place"
      }
    }
  }
}