Trustpilot · Schema

BusinessUnitSummary

Consumer ReviewsReviewsTrustRatingsBusiness ProfilesProduct Reviews

Properties

Name Type Description
id string Trustpilot business unit ID
displayName string
name string
websiteUrl string
countryCode string
trustScore number
stars number
numberOfReviews object
View JSON Schema on GitHub

JSON Schema

trustpilot-businessunitsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessUnitSummary",
  "title": "BusinessUnitSummary",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Trustpilot business unit ID"
    },
    "displayName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "websiteUrl": {
      "type": "string"
    },
    "countryCode": {
      "type": "string"
    },
    "trustScore": {
      "type": "number",
      "format": "double"
    },
    "stars": {
      "type": "number",
      "format": "double"
    },
    "numberOfReviews": {
      "type": "object",
      "properties": {
        "total": {
          "type": "integer"
        }
      }
    }
  }
}