+ +```js +{ + sidebar: { + playlistSidebarRenderer: { + items: [ + { + playlistSidebarPrimaryInfoRenderer: { + title: { + simpleText: '..' + }, + description: { + runs: [ + { + text: '..' + }, + //.... + ] + }, + stats: [ + { + simpleText: '..' + }, + { + runs: [ + { + text: '..' + } + ] + } + ] + } + } + ] + } + } +} +``` + +
++ +```js +{ + sidebar: { + type: 'PlaylistSidebar', + contents: [ + { + type: 'PlaylistSidebarPrimaryInfo', + title: { text: '..' }, + description: { text: '..' }, + stats: [ + { + text: '..' + }, + { + text: '..' + } + ] + } + ] + } +} +``` + +
+