``` json
{
   "component":"fc.list",
   "dataSource":"variantProducts",
   "props":{
      "defaultPageSize":5,
      "rowsPerPageOptions":[
         5
      ],
      "attributes":[
         {
            "type":"image",
            "value":"{{node.attributes.byName.imageUrl}}",
            "options":{
               "width":50,
               "height":50
            }
         },
         {
            "label":"Product",
            "type":"component",
            "options":{
               "component":"fc.attribute.column",
               "props":{
                  "value":[
                     {
                        "name":"name"
                     },
                     {
                        "name":"ref",
                        "style":{
                           "color":"grey"
                        }
                     }
                  ]
               },
               "dataSource":"node"
            }
         },
         {
            "label":"Description",
            "type":"component",
            "options":{
               "component":"fc.attribute.column",
               "props":{
                  "value":[
                     {
                        "label":"Colour",
                        "name":"Colour"
                     },
                     {
                        "label":"Size",
                        "name":"Size"
                     }
                  ]
               },
               "dataSource":"node.attributes.byName"
            }
         }
      ],
      "filter":{
         "enabled":true,
         "exclude":[
            "type",
            "summary",
            "createdOn",
            "updatedOn",
            "status",
            "gtin"
         ]
      }
   }
}
```