Skip to content

Commit 9263f48

Browse files
Create db.json
A sample db JSON file to be used with https://my-json-server.typicode.com/
1 parent 73064ef commit 9263f48

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

db.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"users": [
3+
{
4+
"id": 1,
5+
"name": "Alice",
6+
"department": "Sales",
7+
"title": "Manager",
8+
"location": "Chicago"
9+
},
10+
{
11+
"id": 2,
12+
"name": "Bob",
13+
"department": "Sales",
14+
"title": "Employee",
15+
"location": "Chicago"
16+
},
17+
{
18+
"id": 3,
19+
"name": "Carol",
20+
"department": "Financo",
21+
"title": "CFO",
22+
"location": "New York"
23+
}
24+
],
25+
"documents": [
26+
{
27+
"id": 1,
28+
"name": "Document #1",
29+
"owner": "Alice",
30+
"department": "Sales",
31+
"status": "draft"
32+
},
33+
{
34+
"id": 2,
35+
"name": "Document #2",
36+
"owner": "Alice",
37+
"department": "Sales",
38+
"status": "final"
39+
},
40+
{
41+
"id": 3,
42+
"name": "Document #3",
43+
"owner": "Bob",
44+
"department": "Sales",
45+
"status": "published"
46+
},
47+
{
48+
"id": 4,
49+
"name": "Document #4",
50+
"owner": "Carol",
51+
"department": "Finance",
52+
"status": "draft"
53+
}
54+
]
55+
}

0 commit comments

Comments
 (0)