eBay · Schema

RatingAspectDistribution

The type that defines the field for the aspect rating details, such as the aspect rating value, usually TRUE or FALSE and the user count and percentage.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
count integer The number of eBay users that choose this rating aspect value.
percentage string The percentage of the aspect rating value.

ratingAspectDistributions.percentage = ratingAspectDistributions.count / ratingAspects.count
value string The rating aspect. For example: TRUE or FALSE
View JSON Schema on GitHub

JSON Schema

ebay-ratingaspectdistribution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RatingAspectDistribution",
  "title": "RatingAspectDistribution",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "The number of eBay users that choose this rating aspect value.",
      "format": "int32"
    },
    "percentage": {
      "type": "string",
      "description": "The percentage of the aspect rating value. <br /><br /> <b> ratingAspectDistributions.percentage</b> =  <b> ratingAspectDistributions.count</b> /  <b>ratingAspects.count</b>"
    },
    "value": {
      "type": "string",
      "description": "The rating aspect. For example: TRUE or FALSE"
    }
  },
  "description": "The type that defines the field for the aspect rating details, such as the aspect rating value, usually TRUE or FALSE and the user count and percentage."
}