-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.json
56 lines (56 loc) · 972 Bytes
/
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
{
"users": [
{
"id": 1,
"name": "Myra"
},
{
"name": "Regina Nitzsche DDS",
"id": 2
}
],
"albums": [
{
"id": 1,
"title": "Hiking Trip",
"userId": 1
},
{
"userId": 1,
"title": "Luxurious Soft Chicken",
"id": 2
},
{
"userId": 2,
"title": "Awesome Concrete Chicken",
"id": 3
},
{
"userId": 2,
"title": "Electronic Soft Hat",
"id": 5
},
{
"userId": 1,
"title": "Recycled Granite Computer",
"id": 6
}
],
"photos": [
{
"albumId": 1,
"url": "https://loremflickr.com/150/150/abstract?lock=8038151444496384",
"id": 3
},
{
"albumId": 1,
"url": "https://loremflickr.com/150/150/abstract?lock=3222815480217600",
"id": 5
},
{
"albumId": 1,
"url": "https://loremflickr.com/150/150/abstract?lock=1971264187006976",
"id": 6
}
]
}