This component shows list-shaped data. It can be clicked

{
  "id": "shopping-list",
  "type": "list",
  "items": [
    {
      "id": "shopping-list-leggings",
      "title": "Leggings",
      "description": "Stripe leggings",
      "image": "https://cdn.channel.io/assets/snippet/snippet-list-1.png",
      "action": {
        "type": "url",
        "url": "https://channel.io"
      }
    },
    {
      "id": "shopping-list-clutch",
      "title": "Clutch Bag",
      "description": "Handy clutch Bag",
      "image": "https://cdn.channel.io/assets/snippet/snippet-list-2.png",
      "action": {
        "type": "url",
        "url": "https://channel.io"
      }
    },
    {
      "id": "shopping-list-shoes",
      "title": "Sport shoes",
      "description": "Light-weight sport shoes",
      "image": "https://cdn.channel.io/assets/snippet/snippet-list-3.png",
      "action": {
        "type": "url",
        "url": "https://channel.io"
      }
    }
  ]
}
PropertyTypeExampleDescriptionRequired
idstringshopping-listID of component. ID should be unique in snippet.true
typestringlistType of component. use listtrue
itemslist of object[
{
"id": "shopping-list-leggings",
"title": "Leggings",
"description": "Stripe leggings",
"image": "https://cdn.channel.io/assets/snippet/snippet-list-1.png",
"action": {
"type": "url",
"url": "https://channel.io"
}
},
{
"id": "shopping-list-clutch",
"title": "Clutch Bag",
"description": "Handy clutch Bag",
"image": "https://cdn.channel.io/assets/snippet/snippet-list-2.png",
"action": {
"type": "url",
"url": "https://channel.io"
}
},
{
"id": "shopping-list-shoes",
"title": "Sport shoes",
"description": "Light-weight sport shoes",
"image": "https://cdn.channel.io/assets/snippet/snippet-list-3.png",
"action": {
"type": "url",
"url": "https://channel.io"
}
}
]
List of itemstrue
items[i].idstringshopping-list-leggingsID of item. ID should be unique in snippet.true
items[i].titlestringLeggingsTitle of itemtrue
items[i].descriptionstringStripe leggingsDescription of itemfalse
items[i].imagestringhttps://cdn.channel.io/file/5d723ad55d097554-bd222e66682608bdd1ea5e198bf181eaURL of image in itemfalse
items[i].actionobjectfalse
items[i].action.typestringurlType of action. "url" allowed.true
items[i].action.urlstringhttps://channel.ioURL of page which will open when button is clicked.true if type is url