forked from shaunganley/nodejs-express-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusers.json
More file actions
40 lines (37 loc) · 637 Bytes
/
users.json
File metadata and controls
40 lines (37 loc) · 637 Bytes
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
[
{
"id": 1,
"name": "Shaun",
"email": "shaun@test.com",
"role": "Software Engineer",
"salary": "40,000"
},
{
"id": 2,
"name": "Mia",
"email": "mia@test.com",
"role": "Product Manager",
"salary": "50,000"
},
{
"id": 3,
"name": "Liam",
"email": "liam@test.com",
"role": "Data Scientist",
"salary": "45,000"
},
{
"id": 4,
"name": "Emma",
"email": "emma@test.com",
"role": "UX Designer",
"salary": "42,000"
},
{
"id": 5,
"name": "Noah",
"email": "noah@test.com",
"role": "DevOps Engineer",
"salary": "48,000"
}
]