eBay · Schema

AspectGroup

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
aspects array An array of the name/value pairs for the aspects of the product. For example: BRAND/Apple
localizedGroupName string The name of a group of aspects.

In the following example, Product Identifiers and Process are product aspect group names. Under the group name are the product aspect name/value pa
View JSON Schema on GitHub

JSON Schema

ebay-aspectgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AspectGroup",
  "title": "AspectGroup",
  "type": "object",
  "properties": {
    "aspects": {
      "type": "array",
      "description": "An array of the name/value pairs for the aspects of the product. For example: BRAND/Apple",
      "items": {
        "$ref": "#/components/schemas/Aspect"
      }
    },
    "localizedGroupName": {
      "type": "string",
      "description": "The name of a group of aspects.<br><br>In the following example, <b>Product Identifiers</b> and <b>Process</b> are product aspect group names. Under the group name are the product aspect name/value pairs.<br><br><b>Product Identifiers</b><br>&nbsp;&nbsp;&nbsp;Brand/Apple<br>&nbsp;&nbsp;&nbsp;Product Family/iMac<br><br><b>Processor</b><br>&nbsp;&nbsp;&nbsp;Processor Type/Intel<br>&nbsp;&nbsp;&nbsp;Processor Speed/3.10"
    }
  }
}