Definition of an ProductAttribute attached to a Product
| name | data type | constraints | description |
|---|---|---|---|
| id | string | ||
| name | string | get the name of the attribute | |
| description | string | get the description | |
| attributeType | AttributeType | get the type of the attribute | |
| catalogId | string | get the catalog the attribute is attached to | |
| visible | boolean | required | check if the attribute is visible(if it will be served with a banner response) |
| filterable | boolean | required | check if the attribute can be used in a filter |
Example
{
"id" : "...",
"name" : "...",
"description" : "...",
"attributeType" : "INTEGER",
"catalogId" : "...",
"visible" : true,
"filterable" : true
}