-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdata.json
More file actions
64 lines (64 loc) · 1.01 KB
/
data.json
File metadata and controls
64 lines (64 loc) · 1.01 KB
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
{
"users": [
{
"id": 1,
"username": "g.lucas@gmail.com",
"password": "mt4bwu"
},
{
"id": 2,
"username": "s.spielberg@gmail.com",
"password": "t-rex"
}
],
"movies": [
{
"id": 1,
"title": "Inception",
"genre": "Science Fiction"
},
{
"id": 2,
"title": "The Dark Knight",
"genre": "Action"
},
{
"id": 3,
"title": "Harry Potter: The Prisoner of Azkaban",
"genre": "Fantasy"
},
{
"id": 4,
"title": "Jurassic Park",
"genre": "Science Fiction"
},
{
"id": 5,
"title": "The Lord of the Rings: The Return of the King",
"genre": "Fantasy"
},
{
"id": 6,
"title": "Black Panther",
"genre": "Action"
}
],
"watched": [
{
"UserId": 1,
"MovieId": 1
},
{
"UserId": 1,
"MovieId": 2
},
{
"UserId": 2,
"MovieId": 3
},
{
"UserId": 2,
"MovieId": 4
}
]
}