-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.json
140 lines (140 loc) · 3.57 KB
/
database.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"users": [
{
"id": 1,
"fullName": "Dion Stoade",
"email": "[email protected]",
"isStaff": false
},
{
"id": 2,
"fullName": "Windy Thorneloe",
"email": "[email protected]",
"isStaff": false
},
{
"id": 3,
"fullName": "Hillie Phillpotts",
"email": "[email protected]",
"isStaff": false
},
{
"id": 4,
"fullName": "Helenelizabeth Passfield",
"email": "[email protected]",
"isStaff": true
},
{
"id": 5,
"fullName": "Franchot Slator",
"email": "[email protected]",
"isStaff": true
},
{
"id": 6,
"fullName": "Renaud Erbe",
"email": "[email protected]",
"isStaff": true
},
{
"email": "[email protected]",
"fullName": "Jeremy Bakker",
"isStaff": true,
"id": 7
}
],
"customers": [
{
"id": 1,
"address": "2802 Zula Locks",
"phoneNumber": "852-837-9713",
"userId": 2
},
{
"id": 2,
"address": "56849 Fadel Gateway",
"phoneNumber": "202-244-7090",
"userId": 1
},
{
"id": 3,
"address": "7346 Ritchie Road",
"phoneNumber": "(507) 720-1157",
"userId": 3
}
],
"employees": [
{
"id": 1,
"specialty": "PC Repair",
"rate": 72.47,
"userId": 4
},
{
"id": 2,
"specialty": "Apple Repair",
"rate": 97.39,
"userId": 5
},
{
"id": 3,
"specialty": "Printer Repair",
"rate": 29.45,
"userId": 6
}
],
"serviceTickets": [
{
"id": 1,
"userId": 3,
"description": "Saepe ex sapiente deserunt et voluptas fugiat vero quasi. Ipsam est non ipsa. Occaecati rerum ipsa consequuntur. Ratione commodi unde sint non rerum. Sit quia et aut sunt.",
"emergency": false,
"dateCompleted": "Fri Apr 29 2022 14:02:20 GMT-0500 (Central Daylight Time)"
},
{
"id": 2,
"userId": 3,
"description": "Vero est adipisci sed natus quasi consectetur occaecati. Modi maxime sunt officia cumque. Vel at culpa. Sint accusamus deserunt dolorem qui.",
"emergency": true,
"dateCompleted": ""
},
{
"id": 3,
"userId": 1,
"description": "Sunt pariatur et quidem hic voluptatem. Neque aliquam voluptas eos incidunt repellendus. Vero expedita non sit quaerat sit et eum. Quasi dolor voluptatem illum eum qui est expedita sequi accusamus.",
"emergency": false,
"dateCompleted": ""
},
{
"id": 4,
"userId": 2,
"description": "A deleniti est sed vel. Dolores aliquid enim vero. Quia eligendi vel voluptas. Nihil nihil quasi ullam officia doloremque amet non. Officia atque quae.",
"emergency": false,
"dateCompleted": ""
},
{
"id": 5,
"userId": 1,
"description": "Pariatur nihil animi eos doloremque laborum fugiat consequuntur iusto. Et tempore a enim.",
"emergency": true,
"dateCompleted": "Fri Apr 29 2022 21:24:29 GMT-0500 (Central Daylight Time)"
}
],
"employeeTickets": [
{
"id": 1,
"employeeId": 3,
"serviceTicketId": 1
},
{
"id": 2,
"employeeId": 2,
"serviceTicketId": 5
},
{
"id": 3,
"employeeId": 1,
"serviceTicketId": 4
}
]
}