-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapi.json
58 lines (58 loc) · 1.01 KB
/
api.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
{
"users": [
{
"id": 1,
"name": "user 1"
},
{
"id": 2,
"name": "user 2"
},
{
"id": 3,
"name": "user 3"
}
],
"videos": [
{
"id": 1,
"name": "Video 1",
"userId": 1
},
{
"id": 2,
"name": "Video 2",
"userId": 1
},
{
"id": 3,
"name": "Video 3",
"userId": 2
},
{
"id": 4,
"name": "Video 4",
"userId": 3
},
{
"id": 5,
"name": "Video 5",
"userId": 1
},
{
"id": 6,
"name": "Video 6",
"userId": 3
},
{
"id": 7,
"name": "Video 7",
"userId": 2
},
{
"id": 8,
"name": "Video 8",
"userId": 2
}
]
}