AuthorAttribution

Information about the author of a review

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
displayName string Name of the review author
uri string URI of the author's profile
photoUri string URI of the author's profile photo
View JSON Schema on GitHub

JSON Schema

google-maps-authorattribution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorAttribution",
  "title": "AuthorAttribution",
  "type": "object",
  "description": "Information about the author of a review",
  "properties": {
    "displayName": {
      "type": "string",
      "description": "Name of the review author",
      "example": "example_value"
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "description": "URI of the author's profile",
      "example": "https://www.example.com"
    },
    "photoUri": {
      "type": "string",
      "format": "uri",
      "description": "URI of the author's profile photo",
      "example": "https://www.example.com"
    }
  }
}