-
Notifications
You must be signed in to change notification settings - Fork 0
/
dados.json
133 lines (132 loc) · 2.88 KB
/
dados.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"users": [
{
"id": 1,
"name": "JohnDoe",
"nickname": "Johnny",
"password": "password123",
"background": "background/johndoe_bg.jpg",
"image": "user/johndoe.jpg",
"email": "[email protected]",
"anime": [1, 2],
"manga": [1],
"description": "Anime and manga enthusiast.",
"description_image": "description/johndoe_description.jpg"
}
],
"studios": [
{
"id": 1,
"name": "Studio Ghibli"
},
{
"id": 2,
"name": "Bones"
}
],
"tags": [
{
"id": 1,
"name": "Action"
},
{
"id": 2,
"name": "Adventure"
}
],
"anime": [
{
"id": 1,
"title": "My Hero Academia",
"title_japanese": "僕のヒーローアカデミア",
"episodes": 88,
"release_date": "2016-04-03",
"end_date": "2020-04-04",
"duration": 24,
"studios": [2],
"source": "manga",
"tag": [1, 2],
"image": "anime/my_hero_academia.jpg"
},
{
"id": 2,
"title": "Spirited Away",
"title_japanese": "千と千尋の神隠し",
"episodes": 1,
"release_date": "2001-07-20",
"end_date": "2001-07-20",
"duration": 125,
"studios": [1],
"source": "original",
"tag": [2],
"image": "anime/spirited_away.jpg"
}
],
"manga": [
{
"id": 1,
"title": "Attack on Titan",
"description": "Humanity fights for survival against the Titans.",
"chapters": 139,
"volume": 34,
"tag": [1],
"release_date": "2009-09-09",
"end_date": "2021-04-09",
"image": "manga/attack_on_titan.jpg",
"status_type": "COMPLETED"
}
],
"staff": [
{
"id": 1,
"author": "Hayao Miyazaki",
"role": "Director"
},
{
"id": 2,
"author": "Kohei Horikoshi",
"role": "Author"
}
],
"manga_states": [
{
"id": 1,
"user": 1,
"manga": 1,
"state": "READING",
"times_read": 2
}
],
"anime_states": [
{
"id": 1,
"user": 1,
"anime": 1,
"state": "WATCHING",
"Progress": 5,
"times_watched": 1
}
],
"review_manga": [
{
"id": 1,
"user": 1,
"manga": 1,
"rating": 9,
"title": "Incredible Story",
"content": "The plot twists are mind-blowing!",
"date_posted": "2024-07-18T12:34:56"
}
],
"review_anime": [
{
"id": 1,
"user": 1,
"anime": 1,
"rating": 8,
"title": "Great Animation",
"content": "The animation quality is outstanding.",
"date_posted": "2024-07-18T14:23:45"
}
]
}