music-assistant-server

2.2 KBJSON
home.json
2.2 KB71 lines • json
1{
2    "rows": [
3        {
4            "modules": [
5                {
6                    "title": "My Playlists",
7                    "type": "PLAYLIST_LIST",
8                    "pagedList": {
9                        "items": [
10                            {
11                                "uuid": "aabbcc-1122-3344-5566",
12                                "title": "Test Playlist",
13                                "creator": {
14                                    "id": 99999
15                                },
16                                "image": "playlist-image-id"
17                            }
18                        ]
19                    }
20                }
21            ]
22        },
23        {
24            "modules": [
25                {
26                    "title": "New Albums",
27                    "type": "ALBUM_LIST",
28                    "pagedList": {
29                        "items": [
30                            {
31                                "id": 67890,
32                                "title": "Test Album",
33                                "artists": [
34                                    {
35                                        "id": 12345,
36                                        "name": "Test Artist"
37                                    }
38                                ],
39                                "type": "ALBUM"
40                            }
41                        ]
42                    }
43                }
44            ]
45        },
46        {
47            "modules": [
48                {
49                    "title": "My Mixes",
50                    "type": "MIX_LIST",
51                    "pagedList": {
52                        "items": [
53                            {
54                                "id": "mix_123",
55                                "title": "My Mix",
56                                "subTitle": "A mix for you",
57                                "images": {
58                                    "MEDIUM": {
59                                        "url": "http://example.com/mix.jpg"
60                                    }
61                                },
62                                "mixId": "mix_123"
63                            }
64                        ]
65                    }
66                }
67            ]
68        }
69    ]
70}
71