{ "$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.

ratingAspectDistributions.percentage = ratingAspectDistributions.count / ratingAspects.count" }, "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." }