Trustpilot · Schema

BusinessUnitProfile

Consumer ReviewsReviewsTrustRatingsBusiness ProfilesProduct Reviews

Properties

Name Type Description
id string
displayName string
name string
websiteUrl string
countryCode string
trustScore number
stars number
numberOfReviews object
contact object
View JSON Schema on GitHub

JSON Schema

trustpilot-businessunitprofile-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BusinessUnitProfile",
  "title": "BusinessUnitProfile",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "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"
        },
        "oneStar": {
          "type": "integer"
        },
        "twoStars": {
          "type": "integer"
        },
        "threeStars": {
          "type": "integer"
        },
        "fourStars": {
          "type": "integer"
        },
        "fiveStars": {
          "type": "integer"
        }
      }
    },
    "contact": {
      "type": "object",
      "properties": {
        "email": {
          "type": "string"
        },
        "phone": {
          "type": "string"
        }
      }
    }
  }
}