-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinitial_data.json
168 lines (168 loc) · 4.48 KB
/
initial_data.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
[
{
"model": "media.genre",
"pk": 1,
"fields": {
"name": "Action"
}
},
{
"model": "media.genre",
"pk": 2,
"fields": {
"name": "Comedy"
}
},
{
"model": "media.genre",
"pk": 3,
"fields": {
"name": "Drama"
}
},
{
"model": "media.genre",
"pk": 4,
"fields": {
"name": "Fantasy"
}
},
{
"model": "media.genre",
"pk": 5,
"fields": {
"name": "Horror"
}
},
{
"model": "media.genre",
"pk": 6,
"fields": {
"name": "Mystery"
}
},
{
"model": "media.genre",
"pk": 7,
"fields": {
"name": "Romance"
}
},
{
"model": "media.genre",
"pk": 8,
"fields": {
"name": "Sci-Fi"
}
},
{
"model": "media.genre",
"pk": 9,
"fields": {
"name": "Thriller"
}
},
{
"model": "media.genre",
"pk": 10,
"fields": {
"name": "Adventure"
}
},
{
"model": "media.movie",
"pk": 1,
"fields": {
"title": "Inception",
"year_released": 2010,
"seasons": null,
"episodes": null,
"description": "A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O.",
"genre": [1, 8]
}
},
{
"model": "media.movie",
"pk": 2,
"fields": {
"title": "The Dark Knight",
"year_released": 2008,
"seasons": null,
"episodes": null,
"description": "When the menace known as the Joker emerges from his mysterious past, he wreaks havoc and chaos on the people of Gotham.",
"genre": [1, 9]
}
},
{
"model": "media.anime",
"pk": 1,
"fields": {
"title": "Naruto",
"year_released": 2002,
"seasons": 5,
"episodes": 220,
"description": "Follows the story of Naruto Uzumaki, a young ninja who seeks recognition from his peers and dreams of becoming the Hokage, the village's leader and strongest ninja.",
"genre": [1, 4]
}
},
{
"model": "media.anime",
"pk": 2,
"fields": {
"title": "Attack on Titan",
"year_released": 2013,
"seasons": 4,
"episodes": 75,
"description": "After his hometown is destroyed and his mother is killed, young Eren Yeager vows to cleanse the earth of the giant humanoid Titans that have brought humanity to the brink of extinction.",
"genre": [1, 5]
}
},
{
"model": "media.series",
"pk": 1,
"fields": {
"title": "Breaking Bad",
"year_released": 2008,
"seasons": 5,
"episodes": 62,
"description": "A high school chemistry teacher turned methamphetamine producer partners with a former student to secure his family's future.",
"genre": [1, 3, 7]
}
},
{
"model": "media.series",
"pk": 2,
"fields": {
"title": "Game of Thrones",
"year_released": 2011,
"seasons": 8,
"episodes": 73,
"description": "Nine noble families fight for control over the lands of Westeros, while an ancient enemy returns after being dormant for millennia.",
"genre": [1, 3, 4]
}
},
{
"model": "media.cartoon",
"pk": 1,
"fields": {
"title": "SpongeBob SquarePants",
"year_released": 1999,
"seasons": 13,
"episodes": 268,
"description": "The misadventures of a talking sea sponge who works at a fast food restaurant, attends a boating school, and lives in an underwater pineapple.",
"genre": [2, 10]
}
},
{
"model": "media.cartoon",
"pk": 2,
"fields": {
"title": "Rick and Morty",
"year_released": 2013,
"seasons": 5,
"episodes": 51,
"description": "An animated series that follows the exploits of a super scientist and his not-so-bright grandson.",
"genre": [2, 8]
}
}
]