-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
99 lines (99 loc) · 2.2 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
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
{"movies":[
{
"_id": "5b21ca3eeb7f6fbccd471815",
"title": "Terminator",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471818",
"name": "Action"
},
"numberInStock": 6,
"dailyRentalRate": 2.5,
"liked": true
},
{
"_id": "5b21ca3eeb7f6fbccd471816",
"title": "Die Hard",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471818",
"name": "Action"
},
"numberInStock": 5,
"dailyRentalRate": 2.5
},
{
"_id": "5b21ca3eeb7f6fbccd471817",
"title": "Get Out",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471820",
"name": "Thriller"
},
"numberInStock": 8,
"dailyRentalRate": 3.5
},
{
"_id": "5b21ca3eeb7f6fbccd471819",
"title": "Trip to Italy",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471814",
"name": "Comedy"
},
"numberInStock": 7,
"dailyRentalRate": 3.5
},
{
"_id": "5b21ca3eeb7f6fbccd47181a",
"title": "Airplane",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471814",
"name": "Comedy"
},
"numberInStock": 7,
"dailyRentalRate": 3.5
},
{
"_id": "5b21ca3eeb7f6fbccd47181b",
"title": "Wedding Crashers",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471814",
"name": "Comedy"
},
"numberInStock": 7,
"dailyRentalRate": 3.5
},
{
"_id": "5b21ca3eeb7f6fbccd47181e",
"title": "Gone Girl",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471820",
"name": "Thriller"
},
"numberInStock": 7,
"dailyRentalRate": 4.5
},
{
"_id": "5b21ca3eeb7f6fbccd47181f",
"title": "The Sixth Sense",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471820",
"name": "Thriller"
},
"numberInStock": 4,
"dailyRentalRate": 3.5
},
{
"_id": "5b21ca3eeb7f6fbccd471821",
"title": "The Avengers",
"genre": {
"_id": "5b21ca3eeb7f6fbccd471818",
"name": "Action"
},
"numberInStock": 7,
"dailyRentalRate": 3.5
}
],
"genres":[
{ "_id": "5b21ca3eeb7f6fbccd471818", "name": "Action" },
{ "_id": "5b21ca3eeb7f6fbccd471814", "name": "Comedy" },
{ "_id": "5b21ca3eeb7f6fbccd471820", "name": "Thriller" }
]
}