eBay · Schema

RatingAspect

The type that defines the fields for the product aspect ratings.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
count integer The number of eBay users that rated the product on this aspect.
description string The name of the rating aspect. Camping tent examples: Is it lightweight? or Is it easy to set up?
name string The answer or value of the rating aspect. Camping tent examples: Lightweight or Easy to set up
ratingAspectDistributions array The container for the details of the aspect rating. The details show the aspect rating value, usually TRUE or FALSE and the user count and percentage.
View JSON Schema on GitHub

JSON Schema

ebay-ratingaspect-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RatingAspect",
  "title": "RatingAspect",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "The number of eBay users that rated the product on this aspect.",
      "format": "int32"
    },
    "description": {
      "type": "string",
      "description": "The name of the rating aspect. Camping tent examples: Is it lightweight? or Is it easy to set up?"
    },
    "name": {
      "type": "string",
      "description": "The answer or value of the rating aspect. Camping tent examples: Lightweight or Easy to set up"
    },
    "ratingAspectDistributions": {
      "type": "array",
      "description": "The container for the details of the aspect rating. The details show the aspect rating value, usually TRUE or FALSE and the user count and percentage.",
      "items": {
        "$ref": "#/components/schemas/RatingAspectDistribution"
      }
    }
  },
  "description": "The type that defines the fields for the product aspect ratings."
}