-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathdata.json
86 lines (85 loc) · 1.89 KB
/
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
{
"users": [
{
"id": 0,
"name": "김기완",
"email": "[email protected]",
"password": "1234",
"logged_in": false
},
{
"id": 1,
"name": "변다빈",
"email": "[email protected]",
"password": "1234",
"logged_in": false
},
{
"id": 2,
"name": "김상민",
"email": "[email protected]",
"password": "1234",
"logged_in": false
}
],
"items": [
{
"id":0,
"year":2020,
"title":"Tenet",
"producer":"Christopher Nolan",
"src":"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRwQZ2s5TKxJm8pAGaRDt0VehyvikwU3zgd1I1iR-KD7QsNHmcN",
"user_id": 0
},
{
"id":1,
"year":2013,
"title":"About Time",
"producer":"Richard Curtis",
"src":"https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT9iKMpedwgBIdUBaW-9GppzoQsFmQhLlsnW-34AM1tCl8PPqqa",
"user_id": 2
},
{
"id":2,
"year":1990,
"title":"Home Alone",
"producer":"Chris Columbus",
"src":"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQIgzfRNCJH4LHXl82vI1d7dBCxhlFw4bXWEWiNLtUZzl3YqmHd",
"user_id": 1
},
{
"id":3,
"year":2019,
"title":"Avengers: Endgame",
"producer":"Joe Russo, Anthony Russo",
"src":"https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQA_-tL18_rj9zEcjN6n41NEaJm-kRNF9UeOtvksZ4z_OW6jRA9",
"user_id": 0
}
],
"comments": [
{
"id": 0,
"user_id": 0,
"item_id": 0,
"content": "재밋네요"
},
{
"id": 1,
"user_id": 1,
"item_id": 0,
"content": "재밋없어에ㅛ"
},
{
"id": 2,
"user_id": 2,
"item_id": 2,
"content": "이건 뭐지요"
},
{
"id": 3,
"user_id": 1,
"item_id": 2,
"content": "댓글댓글댓글댓댓글"
}
]
}