-
Notifications
You must be signed in to change notification settings - Fork 5
/
db.json
71 lines (71 loc) · 1.52 KB
/
db.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"comics": [
{
"id": 1,
"slug": "blacksad",
"title": "Blacksad",
"scriptwriter": "Juan Diaz Canales",
"illustrator": "Juanjo Guarnido",
"publisher": "Dargaud",
"albums": [1, 2, 3, 4, 5]
},
{
"id": 2,
"slug": "calvin-and-hobbes",
"title": "Calvin and Hobbes",
"scriptwriter": "Bill Watterson",
"illustrator": "Bill Watterson",
"publisher": "Andrews McMeel Publishing"
},
{
"id": 3,
"slug": "akira",
"title": "Akira",
"scriptwriter": "Katsuhiro Otomo",
"illustrator": "Katsuhiro Otomo",
"publisher": "Epic Comics"
}
],
"albums": [
{
"id": 1,
"title": "Somewhere Within the Shadows",
"publicationDate": "2000-11-01",
"number": 1,
"coverName": "blacksad-1.jpg",
"comicId": 1
},
{
"id": 2,
"title": "Arctic-Nation",
"publicationDate": "2003-04-01",
"number": 2,
"coverName": "blacksad-2.jpg",
"comicId": 1
},
{
"id": 3,
"title": "Red Soul",
"publicationDate": "2005-11-01",
"number": 3,
"coverName": "blacksad-3.jpg",
"comicId": 1
},
{
"id": 4,
"title": "A Silent Hell",
"publicationDate": "2010-09-01",
"number": 4,
"coverName": "blacksad-4.jpg",
"comicId": 1
},
{
"id": 5,
"title": "Amarillo",
"publicationDate": "2013-11-01",
"number": 5,
"coverName": "blacksad-5.jpg",
"comicId": 1
}
]
}