Google Places · Schema

AuthorAttribution

Attribution for the author of a review or photo.

RestaurantGeolocationGoogleLocationsMapsPlacesPoints of Interest

Properties

Name Type Description
displayName string The name of the author.
uri string A link to the author's profile.
photoUri string A link to the author's profile photo.
View JSON Schema on GitHub

JSON Schema

author-attribution-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/author-attribution-schema.json",
  "title": "AuthorAttribution",
  "description": "Attribution for the author of a review or photo.",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "The name of the author.",
      "example": "Googleplex"
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "A link to the author's profile.",
      "example": "https://maps.google.com/?cid=12345678901234567890"
    },
    "photoUri": {
      "type": "string",
      "format": "uri",
      "description": "A link to the author's profile photo.",
      "example": "https://places.googleapis.com/v1/places/ChIJ/photos/AeJ/media"
    }
  }
}