-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
98 lines (98 loc) · 2.06 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"posts": [
{
"id": 1,
"title": "json-server",
"author": "typicode"
}
],
"comments": [
{
"id": 1,
"body": "some comment",
"postId": 1
}
],
"profile": {
"name": "typicode"
},
"employees": [
{
"firstName": "Ada",
"lastName": "Lovelace",
"email": "[email protected]",
"dob": "2001-05-08T04:00:00.000Z",
"gender": "female",
"education": "Graduate",
"area": "IT",
"salary": 250000,
"id": 5
},
{
"firstName": "Juan ",
"lastName": "Bodoque",
"email": "[email protected]",
"dob": "1998-04-12T04:00:00.000Z",
"gender": "other",
"education": "Practicing",
"area": "Press",
"salary": 1000,
"id": 6
},
{
"firstName": "Darth",
"lastName": "Vader",
"email": "[email protected]",
"dob": "1988-06-18T04:00:00.000Z",
"gender": "male",
"education": "Practicing",
"area": "Dark Side",
"salary": 40000,
"id": 7
},
{
"firstName": "Leia ",
"lastName": "Organa",
"email": "[email protected]",
"dob": "2023-05-16T04:00:00.000Z",
"gender": "female",
"education": "Post-Graduate",
"area": "Star Wars",
"salary": 1500,
"id": 8
},
{
"firstName": "Conde",
"lastName": "Drácula",
"email": "[email protected]",
"dob": "2023-05-09T04:00:00.000Z",
"gender": "male",
"education": "Graduate",
"area": "Vampires",
"salary": 58000,
"id": 9
},
{
"firstName": "Arya",
"lastName": "Stark",
"email": "[email protected]",
"dob": "2024-02-06T03:00:00.000Z",
"gender": "female",
"education": "Graduate",
"area": "Revenge",
"salary": 5000,
"id": 10
},
{
"firstName": "Grace",
"lastName": "Hopper",
"email": "[email protected]",
"dob": "2023-05-16T04:00:00.000Z",
"gender": "female",
"education": "Graduate",
"area": "Tech",
"salary": 2000,
"id": 13
}
]
}