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 |
JSON Schema
{
"$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> Brand/Apple<br> Product Family/iMac<br><br><b>Processor</b><br> Processor Type/Intel<br> Processor Speed/3.10"
}
}
}