-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracks.json
46 lines (46 loc) · 949 Bytes
/
tracks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"track_id1": {
"title": "title1",
"artist": "artist1",
"length": 211,
"year": 2019,
"genres": [
"Genre1",
"Genre2"
],
"id": "track_id1"
},
"track_id2": {
"title": "Baby One More Time",
"artist": "Britney Spears",
"length": 237,
"year": 1998,
"genres": [
"dance pop",
"teen pop"
],
"id": "track_id2"
},
"track_id3": {
"title": "It's my life",
"artist": "Bon Jovi",
"length": 224,
"year": 2000,
"genres": [
"pop rock",
"arena rock"
],
"id": "track_id3"
},
"track_id4": {
"title": "Suerte",
"artist": "Shakira",
"length": 196,
"year": 2001,
"genres": [
"worldbeat",
"latin"
],
"id": "track_id4"
}
}