{
  "type": "pagedList",
  "pagination": {
    "url": "https://jsonplaceholder.typicode.com/posts?_page=${page}&_limit=${pageSize}",
    "pageSize": 10
  },
  "itemSpacing": 8,
  "style": {
    "padding": { "all": 16 }
  },
  "itemTemplate": {
    "type": "card",
    "style": {
      "padding": { "all": 12 }
    },
    "children": [
      {
        "type": "text",
        "text": "${title}",
        "style": { "fontSize": 16, "fontWeight": "bold" }
      },
      { "type": "spacer", "height": 6 },
      {
        "type": "text",
        "text": "${body}",
        "style": { "fontSize": 13 }
      }
    ]
  }
}