eBay · Schema

AspectDistribution

The type that define the fields for the aspect information. Aspects are the variations of an item, such as color, size, etc.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
aspectValueDistributions array An array of containers for the various values of the aspect and the match count, and a HATEOAS reference (refinementHref) for this aspect.
localizedAspectName string The name of an aspect, such as Brand, Color, etc.
View JSON Schema on GitHub

JSON Schema

ebay-aspectdistribution-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AspectDistribution",
  "title": "AspectDistribution",
  "type": "object",
  "properties": {
    "aspectValueDistributions": {
      "type": "array",
      "description": "An array of containers for the various values of the aspect and the match count, and a HATEOAS reference (<code>refinementHref</code>) for this aspect.",
      "items": {
        "$ref": "#/components/schemas/AspectValueDistribution"
      }
    },
    "localizedAspectName": {
      "type": "string",
      "description": "The name of an aspect, such as <i>Brand</i>, <i>Color</i>, etc."
    }
  },
  "description": "The type that define the fields for the aspect information. Aspects are the variations of an item, such as color, size, etc."
}