forked from typicode/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
54 lines (54 loc) · 1.42 KB
/
db.json
File metadata and controls
54 lines (54 loc) · 1.42 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
{
"posts": [
{ "id": 1, "title": "Post 1" },
{ "id": 2, "title": "Post 2" },
{ "id": 3, "title": "Post 3" },
{ "id": 4, "title": "Post 4" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 },
{ "id": 2, "body": "some comment", "postId": 2 },
{ "id": 3, "body": "some comment", "postId": 3 },
{ "id": 4, "body": "some comment", "postId": 2 }
],
"profile": [
{ "id": 1, "name": "typicode", "email" : "Lew@alysha.tv", "body": "non et atque", "postId": 1 },
{ "id": 2, "name": "typicode", "email" : "Lew@alysha.tv", "body": "non et atque", "postId": 2 },
{ "id": 3, "name": "typicode", "email" : "Lew@alysha.tv", "body": "non et atque", "postId": 3 }
],
"records": {
"total": 5,
"list": [
{ "id": 1, "name": "foo" },
{ "id": 2, "name": "bar" },
{ "id": 3, "name": "baz" },
{ "id": 4, "name": "toto" },
{ "id": 5, "name": "titi" }
]
},
"deep": {
"level": {
"total": 10
},
"pages": [
[
{ "id": 1, "name": "foo" },
{ "id": 2, "name": "bar" },
{ "id": 3, "name": "baz" }
],
[
{ "id": 4, "name": "toto" },
{ "id": 5, "name": "titi" },
{ "id": 6, "name": "John" }
],
[
{ "id": 7, "name": "Smith" },
{ "id": 8, "name": "Doe" },
{ "id": 9, "name": "Jane" }
],
[
{ "id": 10, "name": "Alf" }
]
]
}
}