@opslane/claude-code-game 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (201) hide show
  1. package/dist/cli.d.ts +2 -0
  2. package/dist/cli.js +59 -0
  3. package/dist/cli.js.map +1 -0
  4. package/dist/routes/auth.d.ts +1 -0
  5. package/dist/routes/auth.js +123 -0
  6. package/dist/routes/auth.js.map +1 -0
  7. package/dist/routes/levels.d.ts +44 -0
  8. package/dist/routes/levels.js +78 -0
  9. package/dist/routes/levels.js.map +1 -0
  10. package/dist/routes/sessions.d.ts +17 -0
  11. package/dist/routes/sessions.js +303 -0
  12. package/dist/routes/sessions.js.map +1 -0
  13. package/dist/server.d.ts +2 -0
  14. package/dist/server.js +58 -0
  15. package/dist/server.js.map +1 -0
  16. package/dist/terminal.d.ts +6 -0
  17. package/dist/terminal.js +23 -0
  18. package/dist/terminal.js.map +1 -0
  19. package/dist/verification.d.ts +31 -0
  20. package/dist/verification.js +239 -0
  21. package/dist/verification.js.map +1 -0
  22. package/frontend/assets/index-CNVEnbfs.css +1 -0
  23. package/frontend/assets/index-D70xl9zu.js +27 -0
  24. package/frontend/index.html +14 -0
  25. package/frontend/vite.svg +1 -0
  26. package/keys/v1.pem +9 -0
  27. package/levels/01-context-is-everything/exercise/README.md +152 -0
  28. package/levels/01-context-is-everything/exercise/data/expenses.db +0 -0
  29. package/levels/01-context-is-everything/exercise/database.py +171 -0
  30. package/levels/01-context-is-everything/exercise/docs/FIRECRAWL_QUICKSTART.md +212 -0
  31. package/levels/01-context-is-everything/exercise/historical_data/expenses_2024_01.json +2306 -0
  32. package/levels/01-context-is-everything/exercise/historical_data/expenses_2024_02.json +2394 -0
  33. package/levels/01-context-is-everything/exercise/historical_data/expenses_2024_03.json +2251 -0
  34. package/levels/01-context-is-everything/exercise/historical_data/expenses_2024_04.json +1987 -0
  35. package/levels/01-context-is-everything/exercise/historical_data/expenses_2024_05.json +2229 -0
  36. package/levels/01-context-is-everything/exercise/main.py +97 -0
  37. package/levels/01-context-is-everything/exercise/models.py +141 -0
  38. package/levels/01-context-is-everything/exercise/pyproject.toml +52 -0
  39. package/levels/01-context-is-everything/exercise/reports.py +138 -0
  40. package/levels/01-context-is-everything/exercise/seed_data.py +91 -0
  41. package/levels/01-context-is-everything/exercise/tests/__init__.py +1 -0
  42. package/levels/01-context-is-everything/exercise/tests/conftest.py +69 -0
  43. package/levels/01-context-is-everything/exercise/tests/test_database.py +244 -0
  44. package/levels/01-context-is-everything/exercise/tests/test_models.py +240 -0
  45. package/levels/01-context-is-everything/exercise/tests/test_reports.py +190 -0
  46. package/levels/01-context-is-everything/exercise/utils.py +163 -0
  47. package/levels/01-context-is-everything/lesson.yaml +82 -0
  48. package/levels/02-claude-md/exercise/README.md +152 -0
  49. package/levels/02-claude-md/exercise/data/expenses.db +0 -0
  50. package/levels/02-claude-md/exercise/database.py +171 -0
  51. package/levels/02-claude-md/exercise/main.py +97 -0
  52. package/levels/02-claude-md/exercise/models.py +141 -0
  53. package/levels/02-claude-md/exercise/pyproject.toml +52 -0
  54. package/levels/02-claude-md/exercise/reports.py +138 -0
  55. package/levels/02-claude-md/exercise/seed_data.py +91 -0
  56. package/levels/02-claude-md/exercise/tests/__init__.py +1 -0
  57. package/levels/02-claude-md/exercise/tests/conftest.py +69 -0
  58. package/levels/02-claude-md/exercise/tests/test_database.py +244 -0
  59. package/levels/02-claude-md/exercise/tests/test_models.py +240 -0
  60. package/levels/02-claude-md/exercise/tests/test_reports.py +190 -0
  61. package/levels/02-claude-md/exercise/utils.py +163 -0
  62. package/levels/02-claude-md/lesson.yaml +60 -0
  63. package/levels/03-read-edit-verify/exercise/CLAUDE.md +15 -0
  64. package/levels/03-read-edit-verify/exercise/README.md +152 -0
  65. package/levels/03-read-edit-verify/exercise/data/expenses.db +0 -0
  66. package/levels/03-read-edit-verify/exercise/database.py +171 -0
  67. package/levels/03-read-edit-verify/exercise/main.py +97 -0
  68. package/levels/03-read-edit-verify/exercise/models.py +141 -0
  69. package/levels/03-read-edit-verify/exercise/pyproject.toml +52 -0
  70. package/levels/03-read-edit-verify/exercise/reports.py +138 -0
  71. package/levels/03-read-edit-verify/exercise/seed_data.py +91 -0
  72. package/levels/03-read-edit-verify/exercise/tests/__init__.py +1 -0
  73. package/levels/03-read-edit-verify/exercise/tests/conftest.py +69 -0
  74. package/levels/03-read-edit-verify/exercise/tests/test_database.py +244 -0
  75. package/levels/03-read-edit-verify/exercise/tests/test_models.py +240 -0
  76. package/levels/03-read-edit-verify/exercise/tests/test_reports.py +190 -0
  77. package/levels/03-read-edit-verify/exercise/utils.py +163 -0
  78. package/levels/03-read-edit-verify/lesson.yaml +60 -0
  79. package/levels/04-planning-mode/exercise/README.md +152 -0
  80. package/levels/04-planning-mode/exercise/data/expenses.db +0 -0
  81. package/levels/04-planning-mode/exercise/database.py +171 -0
  82. package/levels/04-planning-mode/exercise/main.py +97 -0
  83. package/levels/04-planning-mode/exercise/models.py +116 -0
  84. package/levels/04-planning-mode/exercise/pyproject.toml +52 -0
  85. package/levels/04-planning-mode/exercise/reports.py +138 -0
  86. package/levels/04-planning-mode/exercise/seed_data.py +91 -0
  87. package/levels/04-planning-mode/exercise/tests/__init__.py +1 -0
  88. package/levels/04-planning-mode/exercise/tests/conftest.py +69 -0
  89. package/levels/04-planning-mode/exercise/tests/test_database.py +244 -0
  90. package/levels/04-planning-mode/exercise/tests/test_expenses.db +0 -0
  91. package/levels/04-planning-mode/exercise/tests/test_models.py +240 -0
  92. package/levels/04-planning-mode/exercise/tests/test_reports.py +190 -0
  93. package/levels/04-planning-mode/exercise/utils.py +163 -0
  94. package/levels/04-planning-mode/lesson.yaml +53 -0
  95. package/levels/05-spec-driven/exercise/README.md +152 -0
  96. package/levels/05-spec-driven/exercise/data/expenses.db +0 -0
  97. package/levels/05-spec-driven/exercise/database.py +171 -0
  98. package/levels/05-spec-driven/exercise/main.py +97 -0
  99. package/levels/05-spec-driven/exercise/models.py +116 -0
  100. package/levels/05-spec-driven/exercise/pyproject.toml +52 -0
  101. package/levels/05-spec-driven/exercise/reports.py +138 -0
  102. package/levels/05-spec-driven/exercise/seed_data.py +91 -0
  103. package/levels/05-spec-driven/exercise/tests/__init__.py +1 -0
  104. package/levels/05-spec-driven/exercise/tests/conftest.py +69 -0
  105. package/levels/05-spec-driven/exercise/tests/test_database.py +244 -0
  106. package/levels/05-spec-driven/exercise/tests/test_expenses.db +0 -0
  107. package/levels/05-spec-driven/exercise/tests/test_models.py +240 -0
  108. package/levels/05-spec-driven/exercise/tests/test_reports.py +190 -0
  109. package/levels/05-spec-driven/exercise/utils.py +163 -0
  110. package/levels/05-spec-driven/lesson.yaml +53 -0
  111. package/levels/06-sub-agents/exercise/README.md +152 -0
  112. package/levels/06-sub-agents/exercise/data/expenses.db +0 -0
  113. package/levels/06-sub-agents/exercise/database.py +171 -0
  114. package/levels/06-sub-agents/exercise/main.py +97 -0
  115. package/levels/06-sub-agents/exercise/models.py +116 -0
  116. package/levels/06-sub-agents/exercise/pyproject.toml +52 -0
  117. package/levels/06-sub-agents/exercise/reports.py +63 -0
  118. package/levels/06-sub-agents/exercise/seed_data.py +91 -0
  119. package/levels/06-sub-agents/exercise/tests/__init__.py +1 -0
  120. package/levels/06-sub-agents/exercise/tests/conftest.py +69 -0
  121. package/levels/06-sub-agents/exercise/tests/test_database.py +244 -0
  122. package/levels/06-sub-agents/exercise/tests/test_models.py +240 -0
  123. package/levels/06-sub-agents/exercise/tests/test_reports.py +190 -0
  124. package/levels/06-sub-agents/exercise/utils.py +163 -0
  125. package/levels/06-sub-agents/lesson.yaml +49 -0
  126. package/levels/07-skills/exercise/README.md +152 -0
  127. package/levels/07-skills/exercise/data/expenses.db +0 -0
  128. package/levels/07-skills/exercise/database.py +171 -0
  129. package/levels/07-skills/exercise/main.py +97 -0
  130. package/levels/07-skills/exercise/models.py +116 -0
  131. package/levels/07-skills/exercise/pyproject.toml +52 -0
  132. package/levels/07-skills/exercise/reports.py +63 -0
  133. package/levels/07-skills/exercise/seed_data.py +91 -0
  134. package/levels/07-skills/exercise/tests/__init__.py +1 -0
  135. package/levels/07-skills/exercise/tests/conftest.py +69 -0
  136. package/levels/07-skills/exercise/tests/test_database.py +244 -0
  137. package/levels/07-skills/exercise/tests/test_models.py +240 -0
  138. package/levels/07-skills/exercise/tests/test_reports.py +190 -0
  139. package/levels/07-skills/exercise/utils.py +163 -0
  140. package/levels/07-skills/lesson.yaml +49 -0
  141. package/levels/08-mcp-servers/exercise/README.md +152 -0
  142. package/levels/08-mcp-servers/exercise/data/expenses.db +0 -0
  143. package/levels/08-mcp-servers/exercise/database.py +171 -0
  144. package/levels/08-mcp-servers/exercise/main.py +97 -0
  145. package/levels/08-mcp-servers/exercise/models.py +116 -0
  146. package/levels/08-mcp-servers/exercise/pyproject.toml +52 -0
  147. package/levels/08-mcp-servers/exercise/reports.py +63 -0
  148. package/levels/08-mcp-servers/exercise/seed_data.py +91 -0
  149. package/levels/08-mcp-servers/exercise/tests/__init__.py +1 -0
  150. package/levels/08-mcp-servers/exercise/tests/conftest.py +69 -0
  151. package/levels/08-mcp-servers/exercise/tests/test_database.py +244 -0
  152. package/levels/08-mcp-servers/exercise/tests/test_models.py +240 -0
  153. package/levels/08-mcp-servers/exercise/tests/test_reports.py +190 -0
  154. package/levels/08-mcp-servers/exercise/utils.py +163 -0
  155. package/levels/08-mcp-servers/lesson.yaml +59 -0
  156. package/levels/09-plugins/exercise/README.md +152 -0
  157. package/levels/09-plugins/exercise/data/expenses.db +0 -0
  158. package/levels/09-plugins/exercise/database.py +171 -0
  159. package/levels/09-plugins/exercise/main.py +97 -0
  160. package/levels/09-plugins/exercise/models.py +116 -0
  161. package/levels/09-plugins/exercise/pyproject.toml +52 -0
  162. package/levels/09-plugins/exercise/reports.py +63 -0
  163. package/levels/09-plugins/exercise/seed_data.py +91 -0
  164. package/levels/09-plugins/exercise/tests/__init__.py +1 -0
  165. package/levels/09-plugins/exercise/tests/conftest.py +69 -0
  166. package/levels/09-plugins/exercise/tests/test_database.py +244 -0
  167. package/levels/09-plugins/exercise/tests/test_models.py +240 -0
  168. package/levels/09-plugins/exercise/tests/test_reports.py +190 -0
  169. package/levels/09-plugins/exercise/utils.py +163 -0
  170. package/levels/09-plugins/lesson.yaml +51 -0
  171. package/levels/10-hooks/exercise/README.md +152 -0
  172. package/levels/10-hooks/exercise/data/expenses.db +0 -0
  173. package/levels/10-hooks/exercise/database.py +171 -0
  174. package/levels/10-hooks/exercise/main.py +97 -0
  175. package/levels/10-hooks/exercise/models.py +116 -0
  176. package/levels/10-hooks/exercise/pyproject.toml +52 -0
  177. package/levels/10-hooks/exercise/reports.py +63 -0
  178. package/levels/10-hooks/exercise/seed_data.py +91 -0
  179. package/levels/10-hooks/exercise/tests/__init__.py +1 -0
  180. package/levels/10-hooks/exercise/tests/conftest.py +69 -0
  181. package/levels/10-hooks/exercise/tests/test_database.py +244 -0
  182. package/levels/10-hooks/exercise/tests/test_models.py +240 -0
  183. package/levels/10-hooks/exercise/tests/test_reports.py +190 -0
  184. package/levels/10-hooks/exercise/utils.py +163 -0
  185. package/levels/10-hooks/lesson.yaml +58 -0
  186. package/levels/11-worktrees/exercise/README.md +152 -0
  187. package/levels/11-worktrees/exercise/data/expenses.db +0 -0
  188. package/levels/11-worktrees/exercise/database.py +171 -0
  189. package/levels/11-worktrees/exercise/main.py +97 -0
  190. package/levels/11-worktrees/exercise/models.py +116 -0
  191. package/levels/11-worktrees/exercise/pyproject.toml +52 -0
  192. package/levels/11-worktrees/exercise/reports.py +63 -0
  193. package/levels/11-worktrees/exercise/seed_data.py +91 -0
  194. package/levels/11-worktrees/exercise/tests/__init__.py +1 -0
  195. package/levels/11-worktrees/exercise/tests/conftest.py +69 -0
  196. package/levels/11-worktrees/exercise/tests/test_database.py +244 -0
  197. package/levels/11-worktrees/exercise/tests/test_models.py +240 -0
  198. package/levels/11-worktrees/exercise/tests/test_reports.py +190 -0
  199. package/levels/11-worktrees/exercise/utils.py +163 -0
  200. package/levels/11-worktrees/lesson.yaml +68 -0
  201. package/package.json +38 -0
@@ -0,0 +1,2251 @@
1
+ {
2
+ "period": "2024-03",
3
+ "total_expenses": 204,
4
+ "total_amount": 141086.61,
5
+ "expenses": [
6
+ {
7
+ "id": "EXP-202403-0033",
8
+ "date": "2024-03-01",
9
+ "amount": 2997.41,
10
+ "category": "Equipment",
11
+ "description": "Keyboard and mouse replacement",
12
+ "vendor": "AWS",
13
+ "employee": "Bob Smith",
14
+ "department": "Sales",
15
+ "approved": true
16
+ },
17
+ {
18
+ "id": "EXP-202403-0036",
19
+ "date": "2024-03-01",
20
+ "amount": 115.6,
21
+ "category": "Transportation",
22
+ "description": "Uber to client meeting downtown",
23
+ "vendor": "AWS",
24
+ "employee": "Henry Moore",
25
+ "department": "Engineering",
26
+ "approved": true
27
+ },
28
+ {
29
+ "id": "EXP-202403-0058",
30
+ "date": "2024-03-01",
31
+ "amount": 95.64,
32
+ "category": "Transportation",
33
+ "description": "Gas for company vehicle",
34
+ "vendor": "Google Cloud",
35
+ "employee": "Emma Davis",
36
+ "department": "Marketing",
37
+ "approved": true
38
+ },
39
+ {
40
+ "id": "EXP-202403-0161",
41
+ "date": "2024-03-01",
42
+ "amount": 1168.94,
43
+ "category": "Equipment",
44
+ "description": "New laptop for developer",
45
+ "vendor": "Staples",
46
+ "employee": "Kate Thomas",
47
+ "department": "Sales",
48
+ "approved": true
49
+ },
50
+ {
51
+ "id": "EXP-202403-0178",
52
+ "date": "2024-03-01",
53
+ "amount": 2221.37,
54
+ "category": "Equipment",
55
+ "description": "New laptop for developer",
56
+ "vendor": "Microsoft",
57
+ "employee": "Carol Williams",
58
+ "department": "Engineering",
59
+ "approved": false
60
+ },
61
+ {
62
+ "id": "EXP-202403-0010",
63
+ "date": "2024-03-02",
64
+ "amount": 135.91,
65
+ "category": "Food & Dining",
66
+ "description": "Catering for quarterly review meeting",
67
+ "vendor": "Office Depot",
68
+ "employee": "Henry Moore",
69
+ "department": "HR",
70
+ "approved": true
71
+ },
72
+ {
73
+ "id": "EXP-202403-0015",
74
+ "date": "2024-03-02",
75
+ "amount": 86.8,
76
+ "category": "Office Supplies",
77
+ "description": "Whiteboard markers and erasers",
78
+ "vendor": "Chipotle",
79
+ "employee": "Jack Anderson",
80
+ "department": "Sales",
81
+ "approved": true
82
+ },
83
+ {
84
+ "id": "EXP-202403-0043",
85
+ "date": "2024-03-02",
86
+ "amount": 113.43,
87
+ "category": "Food & Dining",
88
+ "description": "Catering for quarterly review meeting",
89
+ "vendor": "Marriott",
90
+ "employee": "Carol Williams",
91
+ "department": "Finance",
92
+ "approved": false
93
+ },
94
+ {
95
+ "id": "EXP-202403-0046",
96
+ "date": "2024-03-02",
97
+ "amount": 351.72,
98
+ "category": "Transportation",
99
+ "description": "Toll fees for highway travel",
100
+ "vendor": "Chipotle",
101
+ "employee": "Grace Wilson",
102
+ "department": "Engineering",
103
+ "approved": true
104
+ },
105
+ {
106
+ "id": "EXP-202403-0057",
107
+ "date": "2024-03-02",
108
+ "amount": 520.6,
109
+ "category": "Software",
110
+ "description": "Annual software license renewal",
111
+ "vendor": "Staples",
112
+ "employee": "Liam Jackson",
113
+ "department": "HR",
114
+ "approved": true
115
+ },
116
+ {
117
+ "id": "EXP-202403-0071",
118
+ "date": "2024-03-02",
119
+ "amount": 29.78,
120
+ "category": "Office Supplies",
121
+ "description": "Desk organizers and trays",
122
+ "vendor": "Zoom",
123
+ "employee": "Alice Johnson",
124
+ "department": "HR",
125
+ "approved": true
126
+ },
127
+ {
128
+ "id": "EXP-202403-0109",
129
+ "date": "2024-03-02",
130
+ "amount": 87.94,
131
+ "category": "Office Supplies",
132
+ "description": "Whiteboard markers and erasers",
133
+ "vendor": "United Airlines",
134
+ "employee": "Emma Davis",
135
+ "department": "HR",
136
+ "approved": true
137
+ },
138
+ {
139
+ "id": "EXP-202403-0110",
140
+ "date": "2024-03-02",
141
+ "amount": 2371.41,
142
+ "category": "Travel",
143
+ "description": "Conference accommodation",
144
+ "vendor": "Office Depot",
145
+ "employee": "Emma Davis",
146
+ "department": "Engineering",
147
+ "approved": true
148
+ },
149
+ {
150
+ "id": "EXP-202403-0163",
151
+ "date": "2024-03-02",
152
+ "amount": 998.41,
153
+ "category": "Equipment",
154
+ "description": "New laptop for developer",
155
+ "vendor": "Dell",
156
+ "employee": "Jack Anderson",
157
+ "department": "Finance",
158
+ "approved": true
159
+ },
160
+ {
161
+ "id": "EXP-202403-0190",
162
+ "date": "2024-03-02",
163
+ "amount": 323.9,
164
+ "category": "Transportation",
165
+ "description": "Lyft from airport to hotel",
166
+ "vendor": "Staples",
167
+ "employee": "Jack Anderson",
168
+ "department": "Finance",
169
+ "approved": false
170
+ },
171
+ {
172
+ "id": "EXP-202403-0041",
173
+ "date": "2024-03-03",
174
+ "amount": 67.75,
175
+ "category": "Transportation",
176
+ "description": "Parking at client office building",
177
+ "vendor": "Staples",
178
+ "employee": "Jack Anderson",
179
+ "department": "Marketing",
180
+ "approved": true
181
+ },
182
+ {
183
+ "id": "EXP-202403-0078",
184
+ "date": "2024-03-03",
185
+ "amount": 300.47,
186
+ "category": "Software",
187
+ "description": "Monthly cloud hosting fees",
188
+ "vendor": "Microsoft",
189
+ "employee": "Kate Thomas",
190
+ "department": "HR",
191
+ "approved": true
192
+ },
193
+ {
194
+ "id": "EXP-202403-0086",
195
+ "date": "2024-03-03",
196
+ "amount": 2399.47,
197
+ "category": "Equipment",
198
+ "description": "New laptop for developer",
199
+ "vendor": "Dell",
200
+ "employee": "Alice Johnson",
201
+ "department": "Finance",
202
+ "approved": true
203
+ },
204
+ {
205
+ "id": "EXP-202403-0013",
206
+ "date": "2024-03-04",
207
+ "amount": 157.64,
208
+ "category": "Food & Dining",
209
+ "description": "Takeout for late night work session",
210
+ "vendor": "Google Cloud",
211
+ "employee": "Grace Wilson",
212
+ "department": "Marketing",
213
+ "approved": true
214
+ },
215
+ {
216
+ "id": "EXP-202403-0021",
217
+ "date": "2024-03-04",
218
+ "amount": 163.15,
219
+ "category": "Food & Dining",
220
+ "description": "Takeout for late night work session",
221
+ "vendor": "Uber Business",
222
+ "employee": "Iris Taylor",
223
+ "department": "Sales",
224
+ "approved": true
225
+ },
226
+ {
227
+ "id": "EXP-202403-0054",
228
+ "date": "2024-03-04",
229
+ "amount": 267.16,
230
+ "category": "Transportation",
231
+ "description": "Gas for company vehicle",
232
+ "vendor": "Amazon Business",
233
+ "employee": "David Brown",
234
+ "department": "HR",
235
+ "approved": true
236
+ },
237
+ {
238
+ "id": "EXP-202403-0070",
239
+ "date": "2024-03-04",
240
+ "amount": 132.85,
241
+ "category": "Food & Dining",
242
+ "description": "Lunch at downtown cafe",
243
+ "vendor": "Whole Foods",
244
+ "employee": "Kate Thomas",
245
+ "department": "Finance",
246
+ "approved": true
247
+ },
248
+ {
249
+ "id": "EXP-202403-0111",
250
+ "date": "2024-03-04",
251
+ "amount": 128.41,
252
+ "category": "Food & Dining",
253
+ "description": "Dinner with clients at Italian restaurant",
254
+ "vendor": "AWS",
255
+ "employee": "David Brown",
256
+ "department": "HR",
257
+ "approved": true
258
+ },
259
+ {
260
+ "id": "EXP-202403-0130",
261
+ "date": "2024-03-04",
262
+ "amount": 170.63,
263
+ "category": "Office Supplies",
264
+ "description": "Filing folders and labels",
265
+ "vendor": "Slack",
266
+ "employee": "Jack Anderson",
267
+ "department": "Sales",
268
+ "approved": false
269
+ },
270
+ {
271
+ "id": "EXP-202403-0132",
272
+ "date": "2024-03-04",
273
+ "amount": 98.18,
274
+ "category": "Food & Dining",
275
+ "description": "Lunch at downtown cafe",
276
+ "vendor": "Amazon Business",
277
+ "employee": "Alice Johnson",
278
+ "department": "HR",
279
+ "approved": false
280
+ },
281
+ {
282
+ "id": "EXP-202403-0166",
283
+ "date": "2024-03-04",
284
+ "amount": 370.38,
285
+ "category": "Transportation",
286
+ "description": "Gas for company vehicle",
287
+ "vendor": "Marriott",
288
+ "employee": "Frank Miller",
289
+ "department": "Sales",
290
+ "approved": true
291
+ },
292
+ {
293
+ "id": "EXP-202403-0182",
294
+ "date": "2024-03-04",
295
+ "amount": 542.5,
296
+ "category": "Software",
297
+ "description": "Video conferencing monthly",
298
+ "vendor": "Office Depot",
299
+ "employee": "Emma Davis",
300
+ "department": "Sales",
301
+ "approved": false
302
+ },
303
+ {
304
+ "id": "EXP-202403-0196",
305
+ "date": "2024-03-04",
306
+ "amount": 135.26,
307
+ "category": "Travel",
308
+ "description": "Conference accommodation",
309
+ "vendor": "Chipotle",
310
+ "employee": "Iris Taylor",
311
+ "department": "Operations",
312
+ "approved": true
313
+ },
314
+ {
315
+ "id": "EXP-202403-0014",
316
+ "date": "2024-03-05",
317
+ "amount": 2786.91,
318
+ "category": "Equipment",
319
+ "description": "Webcam for video meetings",
320
+ "vendor": "United Airlines",
321
+ "employee": "Carol Williams",
322
+ "department": "Engineering",
323
+ "approved": true
324
+ },
325
+ {
326
+ "id": "EXP-202403-0035",
327
+ "date": "2024-03-05",
328
+ "amount": 2415.82,
329
+ "category": "Travel",
330
+ "description": "Conference accommodation",
331
+ "vendor": "TechSupply",
332
+ "employee": "Grace Wilson",
333
+ "department": "HR",
334
+ "approved": true
335
+ },
336
+ {
337
+ "id": "EXP-202403-0055",
338
+ "date": "2024-03-05",
339
+ "amount": 92.8,
340
+ "category": "Transportation",
341
+ "description": "Gas for company vehicle",
342
+ "vendor": "Adobe",
343
+ "employee": "Grace Wilson",
344
+ "department": "Marketing",
345
+ "approved": true
346
+ },
347
+ {
348
+ "id": "EXP-202403-0118",
349
+ "date": "2024-03-05",
350
+ "amount": 460.32,
351
+ "category": "Travel",
352
+ "description": "Flight to regional office",
353
+ "vendor": "Amazon Business",
354
+ "employee": "Bob Smith",
355
+ "department": "Operations",
356
+ "approved": true
357
+ },
358
+ {
359
+ "id": "EXP-202403-0090",
360
+ "date": "2024-03-06",
361
+ "amount": 381.3,
362
+ "category": "Transportation",
363
+ "description": "Uber to client meeting downtown",
364
+ "vendor": "Best Buy",
365
+ "employee": "Grace Wilson",
366
+ "department": "Operations",
367
+ "approved": false
368
+ },
369
+ {
370
+ "id": "EXP-202403-0099",
371
+ "date": "2024-03-06",
372
+ "amount": 34.08,
373
+ "category": "Office Supplies",
374
+ "description": "Whiteboard markers and erasers",
375
+ "vendor": "AWS",
376
+ "employee": "Alice Johnson",
377
+ "department": "HR",
378
+ "approved": true
379
+ },
380
+ {
381
+ "id": "EXP-202403-0107",
382
+ "date": "2024-03-06",
383
+ "amount": 1114.74,
384
+ "category": "Travel",
385
+ "description": "Hotel for client conference",
386
+ "vendor": "Marriott",
387
+ "employee": "David Brown",
388
+ "department": "HR",
389
+ "approved": true
390
+ },
391
+ {
392
+ "id": "EXP-202403-0113",
393
+ "date": "2024-03-06",
394
+ "amount": 35.77,
395
+ "category": "Office Supplies",
396
+ "description": "Printer paper and ink cartridges",
397
+ "vendor": "Best Buy",
398
+ "employee": "David Brown",
399
+ "department": "Marketing",
400
+ "approved": true
401
+ },
402
+ {
403
+ "id": "EXP-202403-0140",
404
+ "date": "2024-03-06",
405
+ "amount": 83.72,
406
+ "category": "Food & Dining",
407
+ "description": "Dinner with clients at Italian restaurant",
408
+ "vendor": "Amazon Business",
409
+ "employee": "Henry Moore",
410
+ "department": "Operations",
411
+ "approved": true
412
+ },
413
+ {
414
+ "id": "EXP-202403-0167",
415
+ "date": "2024-03-06",
416
+ "amount": 1899.14,
417
+ "category": "Travel",
418
+ "description": "Flight to regional office",
419
+ "vendor": "Staples",
420
+ "employee": "Grace Wilson",
421
+ "department": "HR",
422
+ "approved": true
423
+ },
424
+ {
425
+ "id": "EXP-202403-0197",
426
+ "date": "2024-03-06",
427
+ "amount": 170.51,
428
+ "category": "Office Supplies",
429
+ "description": "Desk organizers and trays",
430
+ "vendor": "Chipotle",
431
+ "employee": "David Brown",
432
+ "department": "Sales",
433
+ "approved": true
434
+ },
435
+ {
436
+ "id": "EXP-202403-0025",
437
+ "date": "2024-03-07",
438
+ "amount": 147.55,
439
+ "category": "Equipment",
440
+ "description": "Keyboard and mouse replacement",
441
+ "vendor": "Zoom",
442
+ "employee": "Jack Anderson",
443
+ "department": "Sales",
444
+ "approved": true
445
+ },
446
+ {
447
+ "id": "EXP-202403-0038",
448
+ "date": "2024-03-07",
449
+ "amount": 470.12,
450
+ "category": "Travel",
451
+ "description": "Conference accommodation",
452
+ "vendor": "Staples",
453
+ "employee": "Emma Davis",
454
+ "department": "Sales",
455
+ "approved": true
456
+ },
457
+ {
458
+ "id": "EXP-202403-0092",
459
+ "date": "2024-03-07",
460
+ "amount": 204.79,
461
+ "category": "Transportation",
462
+ "description": "Toll fees for highway travel",
463
+ "vendor": "Acme Corp",
464
+ "employee": "Bob Smith",
465
+ "department": "Sales",
466
+ "approved": true
467
+ },
468
+ {
469
+ "id": "EXP-202403-0116",
470
+ "date": "2024-03-07",
471
+ "amount": 82.35,
472
+ "category": "Office Supplies",
473
+ "description": "Printer paper and ink cartridges",
474
+ "vendor": "Zoom",
475
+ "employee": "Alice Johnson",
476
+ "department": "Operations",
477
+ "approved": false
478
+ },
479
+ {
480
+ "id": "EXP-202403-0177",
481
+ "date": "2024-03-07",
482
+ "amount": 545.36,
483
+ "category": "Travel",
484
+ "description": "Conference accommodation",
485
+ "vendor": "Google Cloud",
486
+ "employee": "Alice Johnson",
487
+ "department": "Operations",
488
+ "approved": true
489
+ },
490
+ {
491
+ "id": "EXP-202403-0193",
492
+ "date": "2024-03-07",
493
+ "amount": 1491.55,
494
+ "category": "Software",
495
+ "description": "Annual software license renewal",
496
+ "vendor": "Starbucks",
497
+ "employee": "Carol Williams",
498
+ "department": "Sales",
499
+ "approved": true
500
+ },
501
+ {
502
+ "id": "EXP-202403-0198",
503
+ "date": "2024-03-07",
504
+ "amount": 29.96,
505
+ "category": "Office Supplies",
506
+ "description": "Whiteboard markers and erasers",
507
+ "vendor": "Hilton",
508
+ "employee": "Alice Johnson",
509
+ "department": "Operations",
510
+ "approved": true
511
+ },
512
+ {
513
+ "id": "EXP-202403-0016",
514
+ "date": "2024-03-08",
515
+ "amount": 2447.28,
516
+ "category": "Travel",
517
+ "description": "Extended stay for project",
518
+ "vendor": "AWS",
519
+ "employee": "Alice Johnson",
520
+ "department": "Sales",
521
+ "approved": true
522
+ },
523
+ {
524
+ "id": "EXP-202403-0029",
525
+ "date": "2024-03-08",
526
+ "amount": 768.17,
527
+ "category": "Software",
528
+ "description": "Annual software license renewal",
529
+ "vendor": "Best Buy",
530
+ "employee": "Liam Jackson",
531
+ "department": "Marketing",
532
+ "approved": true
533
+ },
534
+ {
535
+ "id": "EXP-202403-0056",
536
+ "date": "2024-03-08",
537
+ "amount": 828.63,
538
+ "category": "Equipment",
539
+ "description": "Keyboard and mouse replacement",
540
+ "vendor": "Starbucks",
541
+ "employee": "Liam Jackson",
542
+ "department": "Sales",
543
+ "approved": true
544
+ },
545
+ {
546
+ "id": "EXP-202403-0088",
547
+ "date": "2024-03-08",
548
+ "amount": 2195.13,
549
+ "category": "Equipment",
550
+ "description": "Webcam for video meetings",
551
+ "vendor": "Office Depot",
552
+ "employee": "Henry Moore",
553
+ "department": "Operations",
554
+ "approved": true
555
+ },
556
+ {
557
+ "id": "EXP-202403-0123",
558
+ "date": "2024-03-08",
559
+ "amount": 2443.34,
560
+ "category": "Equipment",
561
+ "description": "New laptop for developer",
562
+ "vendor": "Chipotle",
563
+ "employee": "Kate Thomas",
564
+ "department": "Finance",
565
+ "approved": true
566
+ },
567
+ {
568
+ "id": "EXP-202403-0191",
569
+ "date": "2024-03-08",
570
+ "amount": 2185.25,
571
+ "category": "Travel",
572
+ "description": "Flight to regional office",
573
+ "vendor": "Acme Corp",
574
+ "employee": "Jack Anderson",
575
+ "department": "HR",
576
+ "approved": true
577
+ },
578
+ {
579
+ "id": "EXP-202403-0047",
580
+ "date": "2024-03-09",
581
+ "amount": 314.21,
582
+ "category": "Transportation",
583
+ "description": "Uber to client meeting downtown",
584
+ "vendor": "Chipotle",
585
+ "employee": "Carol Williams",
586
+ "department": "HR",
587
+ "approved": true
588
+ },
589
+ {
590
+ "id": "EXP-202403-0052",
591
+ "date": "2024-03-09",
592
+ "amount": 1272.94,
593
+ "category": "Software",
594
+ "description": "Video conferencing monthly",
595
+ "vendor": "Staples",
596
+ "employee": "Bob Smith",
597
+ "department": "Operations",
598
+ "approved": false
599
+ },
600
+ {
601
+ "id": "EXP-202403-0089",
602
+ "date": "2024-03-09",
603
+ "amount": 659.33,
604
+ "category": "Travel",
605
+ "description": "Conference accommodation",
606
+ "vendor": "Hilton",
607
+ "employee": "Grace Wilson",
608
+ "department": "HR",
609
+ "approved": false
610
+ },
611
+ {
612
+ "id": "EXP-202403-0105",
613
+ "date": "2024-03-09",
614
+ "amount": 567.3,
615
+ "category": "Software",
616
+ "description": "Analytics platform fee",
617
+ "vendor": "Acme Corp",
618
+ "employee": "David Brown",
619
+ "department": "Marketing",
620
+ "approved": false
621
+ },
622
+ {
623
+ "id": "EXP-202403-0007",
624
+ "date": "2024-03-10",
625
+ "amount": 1371.68,
626
+ "category": "Equipment",
627
+ "description": "Webcam for video meetings",
628
+ "vendor": "Microsoft",
629
+ "employee": "Jack Anderson",
630
+ "department": "Operations",
631
+ "approved": true
632
+ },
633
+ {
634
+ "id": "EXP-202403-0018",
635
+ "date": "2024-03-10",
636
+ "amount": 193.92,
637
+ "category": "Food & Dining",
638
+ "description": "Catering for quarterly review meeting",
639
+ "vendor": "Amazon Business",
640
+ "employee": "Iris Taylor",
641
+ "department": "Sales",
642
+ "approved": false
643
+ },
644
+ {
645
+ "id": "EXP-202403-0053",
646
+ "date": "2024-03-10",
647
+ "amount": 1225.21,
648
+ "category": "Travel",
649
+ "description": "Extended stay for project",
650
+ "vendor": "Starbucks",
651
+ "employee": "Emma Davis",
652
+ "department": "Engineering",
653
+ "approved": false
654
+ },
655
+ {
656
+ "id": "EXP-202403-0095",
657
+ "date": "2024-03-10",
658
+ "amount": 220.39,
659
+ "category": "Transportation",
660
+ "description": "Lyft from airport to hotel",
661
+ "vendor": "Microsoft",
662
+ "employee": "Iris Taylor",
663
+ "department": "Finance",
664
+ "approved": false
665
+ },
666
+ {
667
+ "id": "EXP-202403-0117",
668
+ "date": "2024-03-10",
669
+ "amount": 28.67,
670
+ "category": "Food & Dining",
671
+ "description": "Coffee and pastries at morning meeting",
672
+ "vendor": "Acme Corp",
673
+ "employee": "Kate Thomas",
674
+ "department": "Sales",
675
+ "approved": true
676
+ },
677
+ {
678
+ "id": "EXP-202403-0154",
679
+ "date": "2024-03-10",
680
+ "amount": 151.81,
681
+ "category": "Food & Dining",
682
+ "description": "Lunch at downtown cafe",
683
+ "vendor": "United Airlines",
684
+ "employee": "Grace Wilson",
685
+ "department": "Operations",
686
+ "approved": true
687
+ },
688
+ {
689
+ "id": "EXP-202403-0189",
690
+ "date": "2024-03-10",
691
+ "amount": 1333.35,
692
+ "category": "Equipment",
693
+ "description": "New laptop for developer",
694
+ "vendor": "United Airlines",
695
+ "employee": "Henry Moore",
696
+ "department": "Marketing",
697
+ "approved": true
698
+ },
699
+ {
700
+ "id": "EXP-202403-0037",
701
+ "date": "2024-03-11",
702
+ "amount": 1240.88,
703
+ "category": "Software",
704
+ "description": "Project management subscription",
705
+ "vendor": "TechSupply",
706
+ "employee": "Bob Smith",
707
+ "department": "Operations",
708
+ "approved": true
709
+ },
710
+ {
711
+ "id": "EXP-202403-0042",
712
+ "date": "2024-03-11",
713
+ "amount": 1786.11,
714
+ "category": "Travel",
715
+ "description": "Hotel for client conference",
716
+ "vendor": "Uber Business",
717
+ "employee": "Henry Moore",
718
+ "department": "HR",
719
+ "approved": true
720
+ },
721
+ {
722
+ "id": "EXP-202403-0085",
723
+ "date": "2024-03-11",
724
+ "amount": 297.33,
725
+ "category": "Transportation",
726
+ "description": "Gas for company vehicle",
727
+ "vendor": "Adobe",
728
+ "employee": "Frank Miller",
729
+ "department": "Operations",
730
+ "approved": false
731
+ },
732
+ {
733
+ "id": "EXP-202403-0094",
734
+ "date": "2024-03-11",
735
+ "amount": 619.83,
736
+ "category": "Software",
737
+ "description": "Project management subscription",
738
+ "vendor": "Amazon Business",
739
+ "employee": "Kate Thomas",
740
+ "department": "Sales",
741
+ "approved": true
742
+ },
743
+ {
744
+ "id": "EXP-202403-0112",
745
+ "date": "2024-03-11",
746
+ "amount": 240.63,
747
+ "category": "Travel",
748
+ "description": "Extended stay for project",
749
+ "vendor": "Starbucks",
750
+ "employee": "Kate Thomas",
751
+ "department": "Marketing",
752
+ "approved": true
753
+ },
754
+ {
755
+ "id": "EXP-202403-0119",
756
+ "date": "2024-03-11",
757
+ "amount": 2009.49,
758
+ "category": "Equipment",
759
+ "description": "Keyboard and mouse replacement",
760
+ "vendor": "AWS",
761
+ "employee": "Iris Taylor",
762
+ "department": "Sales",
763
+ "approved": true
764
+ },
765
+ {
766
+ "id": "EXP-202403-0164",
767
+ "date": "2024-03-11",
768
+ "amount": 195.49,
769
+ "category": "Food & Dining",
770
+ "description": "Lunch at downtown cafe",
771
+ "vendor": "Uber Business",
772
+ "employee": "Jack Anderson",
773
+ "department": "Operations",
774
+ "approved": false
775
+ },
776
+ {
777
+ "id": "EXP-202403-0185",
778
+ "date": "2024-03-11",
779
+ "amount": 1805.64,
780
+ "category": "Travel",
781
+ "description": "Flight to regional office",
782
+ "vendor": "Dell",
783
+ "employee": "David Brown",
784
+ "department": "Finance",
785
+ "approved": false
786
+ },
787
+ {
788
+ "id": "EXP-202403-0027",
789
+ "date": "2024-03-12",
790
+ "amount": 193.43,
791
+ "category": "Office Supplies",
792
+ "description": "Desk organizers and trays",
793
+ "vendor": "United Airlines",
794
+ "employee": "Bob Smith",
795
+ "department": "Operations",
796
+ "approved": false
797
+ },
798
+ {
799
+ "id": "EXP-202403-0031",
800
+ "date": "2024-03-12",
801
+ "amount": 799.54,
802
+ "category": "Travel",
803
+ "description": "Conference accommodation",
804
+ "vendor": "Marriott",
805
+ "employee": "Carol Williams",
806
+ "department": "HR",
807
+ "approved": true
808
+ },
809
+ {
810
+ "id": "EXP-202403-0077",
811
+ "date": "2024-03-12",
812
+ "amount": 279.93,
813
+ "category": "Transportation",
814
+ "description": "Gas for company vehicle",
815
+ "vendor": "United Airlines",
816
+ "employee": "Jack Anderson",
817
+ "department": "Operations",
818
+ "approved": true
819
+ },
820
+ {
821
+ "id": "EXP-202403-0100",
822
+ "date": "2024-03-12",
823
+ "amount": 48.55,
824
+ "category": "Transportation",
825
+ "description": "Toll fees for highway travel",
826
+ "vendor": "Staples",
827
+ "employee": "Henry Moore",
828
+ "department": "Operations",
829
+ "approved": true
830
+ },
831
+ {
832
+ "id": "EXP-202403-0125",
833
+ "date": "2024-03-12",
834
+ "amount": 167.54,
835
+ "category": "Transportation",
836
+ "description": "Lyft from airport to hotel",
837
+ "vendor": "Slack",
838
+ "employee": "Kate Thomas",
839
+ "department": "Marketing",
840
+ "approved": false
841
+ },
842
+ {
843
+ "id": "EXP-202403-0129",
844
+ "date": "2024-03-12",
845
+ "amount": 62.98,
846
+ "category": "Food & Dining",
847
+ "description": "Dinner with clients at Italian restaurant",
848
+ "vendor": "Starbucks",
849
+ "employee": "Kate Thomas",
850
+ "department": "Finance",
851
+ "approved": true
852
+ },
853
+ {
854
+ "id": "EXP-202403-0160",
855
+ "date": "2024-03-12",
856
+ "amount": 40.16,
857
+ "category": "Food & Dining",
858
+ "description": "Dinner with clients at Italian restaurant",
859
+ "vendor": "Hilton",
860
+ "employee": "Frank Miller",
861
+ "department": "Sales",
862
+ "approved": true
863
+ },
864
+ {
865
+ "id": "EXP-202403-0141",
866
+ "date": "2024-03-13",
867
+ "amount": 671.76,
868
+ "category": "Equipment",
869
+ "description": "New laptop for developer",
870
+ "vendor": "Uber Business",
871
+ "employee": "Henry Moore",
872
+ "department": "Sales",
873
+ "approved": true
874
+ },
875
+ {
876
+ "id": "EXP-202403-0146",
877
+ "date": "2024-03-13",
878
+ "amount": 750.3,
879
+ "category": "Travel",
880
+ "description": "Hotel for client conference",
881
+ "vendor": "Uber Business",
882
+ "employee": "Jack Anderson",
883
+ "department": "HR",
884
+ "approved": true
885
+ },
886
+ {
887
+ "id": "EXP-202403-0150",
888
+ "date": "2024-03-13",
889
+ "amount": 559.09,
890
+ "category": "Travel",
891
+ "description": "Extended stay for project",
892
+ "vendor": "Microsoft",
893
+ "employee": "Emma Davis",
894
+ "department": "Operations",
895
+ "approved": false
896
+ },
897
+ {
898
+ "id": "EXP-202403-0011",
899
+ "date": "2024-03-14",
900
+ "amount": 173.65,
901
+ "category": "Food & Dining",
902
+ "description": "Lunch at downtown cafe",
903
+ "vendor": "Zoom",
904
+ "employee": "Liam Jackson",
905
+ "department": "Operations",
906
+ "approved": true
907
+ },
908
+ {
909
+ "id": "EXP-202403-0062",
910
+ "date": "2024-03-14",
911
+ "amount": 2094.96,
912
+ "category": "Equipment",
913
+ "description": "Webcam for video meetings",
914
+ "vendor": "Best Buy",
915
+ "employee": "Frank Miller",
916
+ "department": "Operations",
917
+ "approved": true
918
+ },
919
+ {
920
+ "id": "EXP-202403-0114",
921
+ "date": "2024-03-14",
922
+ "amount": 1758.52,
923
+ "category": "Travel",
924
+ "description": "Extended stay for project",
925
+ "vendor": "Hilton",
926
+ "employee": "Henry Moore",
927
+ "department": "Finance",
928
+ "approved": true
929
+ },
930
+ {
931
+ "id": "EXP-202403-0121",
932
+ "date": "2024-03-14",
933
+ "amount": 455.1,
934
+ "category": "Equipment",
935
+ "description": "Monitor for home office",
936
+ "vendor": "United Airlines",
937
+ "employee": "Bob Smith",
938
+ "department": "Finance",
939
+ "approved": true
940
+ },
941
+ {
942
+ "id": "EXP-202403-0173",
943
+ "date": "2024-03-14",
944
+ "amount": 365.95,
945
+ "category": "Transportation",
946
+ "description": "Toll fees for highway travel",
947
+ "vendor": "Hilton",
948
+ "employee": "Carol Williams",
949
+ "department": "Operations",
950
+ "approved": true
951
+ },
952
+ {
953
+ "id": "EXP-202403-0184",
954
+ "date": "2024-03-14",
955
+ "amount": 1282.39,
956
+ "category": "Software",
957
+ "description": "Analytics platform fee",
958
+ "vendor": "Hilton",
959
+ "employee": "Henry Moore",
960
+ "department": "Sales",
961
+ "approved": false
962
+ },
963
+ {
964
+ "id": "EXP-202403-0009",
965
+ "date": "2024-03-15",
966
+ "amount": 1038.75,
967
+ "category": "Software",
968
+ "description": "Video conferencing monthly",
969
+ "vendor": "Google Cloud",
970
+ "employee": "Grace Wilson",
971
+ "department": "Finance",
972
+ "approved": true
973
+ },
974
+ {
975
+ "id": "EXP-202403-0064",
976
+ "date": "2024-03-16",
977
+ "amount": 127.24,
978
+ "category": "Office Supplies",
979
+ "description": "Notebooks and pens for team",
980
+ "vendor": "TechSupply",
981
+ "employee": "Kate Thomas",
982
+ "department": "Finance",
983
+ "approved": false
984
+ },
985
+ {
986
+ "id": "EXP-202403-0066",
987
+ "date": "2024-03-16",
988
+ "amount": 80.13,
989
+ "category": "Food & Dining",
990
+ "description": "Coffee and pastries at morning meeting",
991
+ "vendor": "Starbucks",
992
+ "employee": "Iris Taylor",
993
+ "department": "Operations",
994
+ "approved": true
995
+ },
996
+ {
997
+ "id": "EXP-202403-0103",
998
+ "date": "2024-03-16",
999
+ "amount": 100.16,
1000
+ "category": "Food & Dining",
1001
+ "description": "Team lunch celebration",
1002
+ "vendor": "Starbucks",
1003
+ "employee": "Iris Taylor",
1004
+ "department": "Sales",
1005
+ "approved": false
1006
+ },
1007
+ {
1008
+ "id": "EXP-202403-0139",
1009
+ "date": "2024-03-16",
1010
+ "amount": 83.22,
1011
+ "category": "Office Supplies",
1012
+ "description": "Printer paper and ink cartridges",
1013
+ "vendor": "United Airlines",
1014
+ "employee": "Henry Moore",
1015
+ "department": "Marketing",
1016
+ "approved": false
1017
+ },
1018
+ {
1019
+ "id": "EXP-202403-0148",
1020
+ "date": "2024-03-16",
1021
+ "amount": 472.51,
1022
+ "category": "Software",
1023
+ "description": "Annual software license renewal",
1024
+ "vendor": "Marriott",
1025
+ "employee": "Alice Johnson",
1026
+ "department": "Engineering",
1027
+ "approved": false
1028
+ },
1029
+ {
1030
+ "id": "EXP-202403-0169",
1031
+ "date": "2024-03-16",
1032
+ "amount": 1997.42,
1033
+ "category": "Travel",
1034
+ "description": "Hotel for client conference",
1035
+ "vendor": "Whole Foods",
1036
+ "employee": "Frank Miller",
1037
+ "department": "Marketing",
1038
+ "approved": true
1039
+ },
1040
+ {
1041
+ "id": "EXP-202403-0172",
1042
+ "date": "2024-03-16",
1043
+ "amount": 1342.68,
1044
+ "category": "Software",
1045
+ "description": "Annual software license renewal",
1046
+ "vendor": "Staples",
1047
+ "employee": "Grace Wilson",
1048
+ "department": "HR",
1049
+ "approved": true
1050
+ },
1051
+ {
1052
+ "id": "EXP-202403-0183",
1053
+ "date": "2024-03-16",
1054
+ "amount": 989.7,
1055
+ "category": "Travel",
1056
+ "description": "Conference accommodation",
1057
+ "vendor": "Slack",
1058
+ "employee": "Bob Smith",
1059
+ "department": "Sales",
1060
+ "approved": true
1061
+ },
1062
+ {
1063
+ "id": "EXP-202403-0017",
1064
+ "date": "2024-03-17",
1065
+ "amount": 154.54,
1066
+ "category": "Office Supplies",
1067
+ "description": "Desk organizers and trays",
1068
+ "vendor": "Starbucks",
1069
+ "employee": "Emma Davis",
1070
+ "department": "Marketing",
1071
+ "approved": true
1072
+ },
1073
+ {
1074
+ "id": "EXP-202403-0051",
1075
+ "date": "2024-03-17",
1076
+ "amount": 800.45,
1077
+ "category": "Travel",
1078
+ "description": "Flight to regional office",
1079
+ "vendor": "Office Depot",
1080
+ "employee": "Emma Davis",
1081
+ "department": "Sales",
1082
+ "approved": false
1083
+ },
1084
+ {
1085
+ "id": "EXP-202403-0067",
1086
+ "date": "2024-03-17",
1087
+ "amount": 1394.89,
1088
+ "category": "Software",
1089
+ "description": "Monthly cloud hosting fees",
1090
+ "vendor": "Zoom",
1091
+ "employee": "Liam Jackson",
1092
+ "department": "HR",
1093
+ "approved": true
1094
+ },
1095
+ {
1096
+ "id": "EXP-202403-0091",
1097
+ "date": "2024-03-17",
1098
+ "amount": 856.99,
1099
+ "category": "Software",
1100
+ "description": "Annual software license renewal",
1101
+ "vendor": "Marriott",
1102
+ "employee": "Emma Davis",
1103
+ "department": "Operations",
1104
+ "approved": true
1105
+ },
1106
+ {
1107
+ "id": "EXP-202403-0106",
1108
+ "date": "2024-03-17",
1109
+ "amount": 1121.11,
1110
+ "category": "Equipment",
1111
+ "description": "Monitor for home office",
1112
+ "vendor": "Best Buy",
1113
+ "employee": "Alice Johnson",
1114
+ "department": "HR",
1115
+ "approved": true
1116
+ },
1117
+ {
1118
+ "id": "EXP-202403-0153",
1119
+ "date": "2024-03-17",
1120
+ "amount": 320.58,
1121
+ "category": "Travel",
1122
+ "description": "Hotel for client conference",
1123
+ "vendor": "Acme Corp",
1124
+ "employee": "Emma Davis",
1125
+ "department": "Operations",
1126
+ "approved": true
1127
+ },
1128
+ {
1129
+ "id": "EXP-202403-0162",
1130
+ "date": "2024-03-17",
1131
+ "amount": 307.4,
1132
+ "category": "Software",
1133
+ "description": "Annual software license renewal",
1134
+ "vendor": "Amazon Business",
1135
+ "employee": "Frank Miller",
1136
+ "department": "Marketing",
1137
+ "approved": true
1138
+ },
1139
+ {
1140
+ "id": "EXP-202403-0175",
1141
+ "date": "2024-03-17",
1142
+ "amount": 181.87,
1143
+ "category": "Food & Dining",
1144
+ "description": "Business breakfast at hotel",
1145
+ "vendor": "Hilton",
1146
+ "employee": "Emma Davis",
1147
+ "department": "Engineering",
1148
+ "approved": true
1149
+ },
1150
+ {
1151
+ "id": "EXP-202403-0192",
1152
+ "date": "2024-03-17",
1153
+ "amount": 2871.89,
1154
+ "category": "Equipment",
1155
+ "description": "Monitor for home office",
1156
+ "vendor": "Google Cloud",
1157
+ "employee": "Liam Jackson",
1158
+ "department": "Finance",
1159
+ "approved": true
1160
+ },
1161
+ {
1162
+ "id": "EXP-202403-0039",
1163
+ "date": "2024-03-18",
1164
+ "amount": 289.15,
1165
+ "category": "Travel",
1166
+ "description": "Extended stay for project",
1167
+ "vendor": "Amazon Business",
1168
+ "employee": "Grace Wilson",
1169
+ "department": "Engineering",
1170
+ "approved": true
1171
+ },
1172
+ {
1173
+ "id": "EXP-202403-0073",
1174
+ "date": "2024-03-18",
1175
+ "amount": 1517.62,
1176
+ "category": "Travel",
1177
+ "description": "Conference accommodation",
1178
+ "vendor": "TechSupply",
1179
+ "employee": "Alice Johnson",
1180
+ "department": "Finance",
1181
+ "approved": true
1182
+ },
1183
+ {
1184
+ "id": "EXP-202403-0080",
1185
+ "date": "2024-03-18",
1186
+ "amount": 185.49,
1187
+ "category": "Office Supplies",
1188
+ "description": "Notebooks and pens for team",
1189
+ "vendor": "TechSupply",
1190
+ "employee": "David Brown",
1191
+ "department": "Sales",
1192
+ "approved": true
1193
+ },
1194
+ {
1195
+ "id": "EXP-202403-0152",
1196
+ "date": "2024-03-18",
1197
+ "amount": 2828.89,
1198
+ "category": "Equipment",
1199
+ "description": "Webcam for video meetings",
1200
+ "vendor": "TechSupply",
1201
+ "employee": "Carol Williams",
1202
+ "department": "HR",
1203
+ "approved": false
1204
+ },
1205
+ {
1206
+ "id": "EXP-202403-0200",
1207
+ "date": "2024-03-18",
1208
+ "amount": 1418.33,
1209
+ "category": "Software",
1210
+ "description": "Monthly cloud hosting fees",
1211
+ "vendor": "Zoom",
1212
+ "employee": "Carol Williams",
1213
+ "department": "Marketing",
1214
+ "approved": true
1215
+ },
1216
+ {
1217
+ "id": "EXP-202403-0203",
1218
+ "date": "2024-03-18",
1219
+ "amount": 207.15,
1220
+ "category": "Transportation",
1221
+ "description": "Rental car for out of town meeting",
1222
+ "vendor": "Slack",
1223
+ "employee": "Alice Johnson",
1224
+ "department": "HR",
1225
+ "approved": true
1226
+ },
1227
+ {
1228
+ "id": "EXP-202403-0034",
1229
+ "date": "2024-03-19",
1230
+ "amount": 2672.14,
1231
+ "category": "Equipment",
1232
+ "description": "New laptop for developer",
1233
+ "vendor": "Amazon Business",
1234
+ "employee": "Jack Anderson",
1235
+ "department": "Sales",
1236
+ "approved": true
1237
+ },
1238
+ {
1239
+ "id": "EXP-202403-0048",
1240
+ "date": "2024-03-19",
1241
+ "amount": 2386.0,
1242
+ "category": "Equipment",
1243
+ "description": "New laptop for developer",
1244
+ "vendor": "Adobe",
1245
+ "employee": "Henry Moore",
1246
+ "department": "Operations",
1247
+ "approved": true
1248
+ },
1249
+ {
1250
+ "id": "EXP-202403-0061",
1251
+ "date": "2024-03-19",
1252
+ "amount": 309.35,
1253
+ "category": "Transportation",
1254
+ "description": "Rental car for out of town meeting",
1255
+ "vendor": "Microsoft",
1256
+ "employee": "David Brown",
1257
+ "department": "Engineering",
1258
+ "approved": false
1259
+ },
1260
+ {
1261
+ "id": "EXP-202403-0081",
1262
+ "date": "2024-03-19",
1263
+ "amount": 170.66,
1264
+ "category": "Office Supplies",
1265
+ "description": "Filing folders and labels",
1266
+ "vendor": "Acme Corp",
1267
+ "employee": "Emma Davis",
1268
+ "department": "Marketing",
1269
+ "approved": true
1270
+ },
1271
+ {
1272
+ "id": "EXP-202403-0097",
1273
+ "date": "2024-03-19",
1274
+ "amount": 79.38,
1275
+ "category": "Office Supplies",
1276
+ "description": "Printer paper and ink cartridges",
1277
+ "vendor": "Marriott",
1278
+ "employee": "Jack Anderson",
1279
+ "department": "Sales",
1280
+ "approved": true
1281
+ },
1282
+ {
1283
+ "id": "EXP-202403-0136",
1284
+ "date": "2024-03-19",
1285
+ "amount": 430.12,
1286
+ "category": "Software",
1287
+ "description": "Video conferencing monthly",
1288
+ "vendor": "Microsoft",
1289
+ "employee": "Henry Moore",
1290
+ "department": "Sales",
1291
+ "approved": true
1292
+ },
1293
+ {
1294
+ "id": "EXP-202403-0137",
1295
+ "date": "2024-03-19",
1296
+ "amount": 72.24,
1297
+ "category": "Transportation",
1298
+ "description": "Toll fees for highway travel",
1299
+ "vendor": "Whole Foods",
1300
+ "employee": "Bob Smith",
1301
+ "department": "Marketing",
1302
+ "approved": true
1303
+ },
1304
+ {
1305
+ "id": "EXP-202403-0008",
1306
+ "date": "2024-03-20",
1307
+ "amount": 959.61,
1308
+ "category": "Travel",
1309
+ "description": "Flight to regional office",
1310
+ "vendor": "Amazon Business",
1311
+ "employee": "Jack Anderson",
1312
+ "department": "Operations",
1313
+ "approved": true
1314
+ },
1315
+ {
1316
+ "id": "EXP-202403-0049",
1317
+ "date": "2024-03-20",
1318
+ "amount": 649.09,
1319
+ "category": "Software",
1320
+ "description": "Annual software license renewal",
1321
+ "vendor": "United Airlines",
1322
+ "employee": "Bob Smith",
1323
+ "department": "Engineering",
1324
+ "approved": true
1325
+ },
1326
+ {
1327
+ "id": "EXP-202403-0083",
1328
+ "date": "2024-03-20",
1329
+ "amount": 2317.01,
1330
+ "category": "Travel",
1331
+ "description": "Hotel for client conference",
1332
+ "vendor": "Best Buy",
1333
+ "employee": "Grace Wilson",
1334
+ "department": "HR",
1335
+ "approved": true
1336
+ },
1337
+ {
1338
+ "id": "EXP-202403-0096",
1339
+ "date": "2024-03-20",
1340
+ "amount": 1589.88,
1341
+ "category": "Travel",
1342
+ "description": "Extended stay for project",
1343
+ "vendor": "Office Depot",
1344
+ "employee": "Grace Wilson",
1345
+ "department": "Marketing",
1346
+ "approved": true
1347
+ },
1348
+ {
1349
+ "id": "EXP-202403-0098",
1350
+ "date": "2024-03-20",
1351
+ "amount": 174.99,
1352
+ "category": "Food & Dining",
1353
+ "description": "Catering for quarterly review meeting",
1354
+ "vendor": "Zoom",
1355
+ "employee": "Iris Taylor",
1356
+ "department": "HR",
1357
+ "approved": false
1358
+ },
1359
+ {
1360
+ "id": "EXP-202403-0101",
1361
+ "date": "2024-03-20",
1362
+ "amount": 199.49,
1363
+ "category": "Office Supplies",
1364
+ "description": "Printer paper and ink cartridges",
1365
+ "vendor": "Hilton",
1366
+ "employee": "Bob Smith",
1367
+ "department": "Operations",
1368
+ "approved": true
1369
+ },
1370
+ {
1371
+ "id": "EXP-202403-0108",
1372
+ "date": "2024-03-20",
1373
+ "amount": 188.94,
1374
+ "category": "Office Supplies",
1375
+ "description": "Whiteboard markers and erasers",
1376
+ "vendor": "United Airlines",
1377
+ "employee": "Bob Smith",
1378
+ "department": "Engineering",
1379
+ "approved": false
1380
+ },
1381
+ {
1382
+ "id": "EXP-202403-0127",
1383
+ "date": "2024-03-20",
1384
+ "amount": 97.09,
1385
+ "category": "Office Supplies",
1386
+ "description": "Whiteboard markers and erasers",
1387
+ "vendor": "Office Depot",
1388
+ "employee": "Iris Taylor",
1389
+ "department": "Engineering",
1390
+ "approved": false
1391
+ },
1392
+ {
1393
+ "id": "EXP-202403-0155",
1394
+ "date": "2024-03-20",
1395
+ "amount": 1138.25,
1396
+ "category": "Software",
1397
+ "description": "Analytics platform fee",
1398
+ "vendor": "Slack",
1399
+ "employee": "Iris Taylor",
1400
+ "department": "Engineering",
1401
+ "approved": true
1402
+ },
1403
+ {
1404
+ "id": "EXP-202403-0156",
1405
+ "date": "2024-03-20",
1406
+ "amount": 2903.28,
1407
+ "category": "Equipment",
1408
+ "description": "Monitor for home office",
1409
+ "vendor": "Dell",
1410
+ "employee": "Alice Johnson",
1411
+ "department": "Marketing",
1412
+ "approved": false
1413
+ },
1414
+ {
1415
+ "id": "EXP-202403-0176",
1416
+ "date": "2024-03-20",
1417
+ "amount": 1345.55,
1418
+ "category": "Software",
1419
+ "description": "Analytics platform fee",
1420
+ "vendor": "United Airlines",
1421
+ "employee": "Carol Williams",
1422
+ "department": "Operations",
1423
+ "approved": false
1424
+ },
1425
+ {
1426
+ "id": "EXP-202403-0002",
1427
+ "date": "2024-03-21",
1428
+ "amount": 151.8,
1429
+ "category": "Food & Dining",
1430
+ "description": "Takeout for late night work session",
1431
+ "vendor": "Slack",
1432
+ "employee": "Carol Williams",
1433
+ "department": "Finance",
1434
+ "approved": true
1435
+ },
1436
+ {
1437
+ "id": "EXP-202403-0019",
1438
+ "date": "2024-03-21",
1439
+ "amount": 181.58,
1440
+ "category": "Food & Dining",
1441
+ "description": "Lunch at downtown cafe",
1442
+ "vendor": "Uber Business",
1443
+ "employee": "Grace Wilson",
1444
+ "department": "Engineering",
1445
+ "approved": true
1446
+ },
1447
+ {
1448
+ "id": "EXP-202403-0023",
1449
+ "date": "2024-03-21",
1450
+ "amount": 389.28,
1451
+ "category": "Software",
1452
+ "description": "Project management subscription",
1453
+ "vendor": "Whole Foods",
1454
+ "employee": "Jack Anderson",
1455
+ "department": "Sales",
1456
+ "approved": true
1457
+ },
1458
+ {
1459
+ "id": "EXP-202403-0060",
1460
+ "date": "2024-03-21",
1461
+ "amount": 209.08,
1462
+ "category": "Software",
1463
+ "description": "Video conferencing monthly",
1464
+ "vendor": "Zoom",
1465
+ "employee": "Iris Taylor",
1466
+ "department": "HR",
1467
+ "approved": true
1468
+ },
1469
+ {
1470
+ "id": "EXP-202403-0120",
1471
+ "date": "2024-03-21",
1472
+ "amount": 1079.92,
1473
+ "category": "Travel",
1474
+ "description": "Extended stay for project",
1475
+ "vendor": "Slack",
1476
+ "employee": "Grace Wilson",
1477
+ "department": "Operations",
1478
+ "approved": true
1479
+ },
1480
+ {
1481
+ "id": "EXP-202403-0134",
1482
+ "date": "2024-03-21",
1483
+ "amount": 943.98,
1484
+ "category": "Travel",
1485
+ "description": "Flight to regional office",
1486
+ "vendor": "Hilton",
1487
+ "employee": "Alice Johnson",
1488
+ "department": "Finance",
1489
+ "approved": true
1490
+ },
1491
+ {
1492
+ "id": "EXP-202403-0135",
1493
+ "date": "2024-03-21",
1494
+ "amount": 89.19,
1495
+ "category": "Food & Dining",
1496
+ "description": "Business breakfast at hotel",
1497
+ "vendor": "Staples",
1498
+ "employee": "Henry Moore",
1499
+ "department": "Finance",
1500
+ "approved": true
1501
+ },
1502
+ {
1503
+ "id": "EXP-202403-0030",
1504
+ "date": "2024-03-22",
1505
+ "amount": 59.25,
1506
+ "category": "Office Supplies",
1507
+ "description": "Whiteboard markers and erasers",
1508
+ "vendor": "Uber Business",
1509
+ "employee": "Henry Moore",
1510
+ "department": "Marketing",
1511
+ "approved": true
1512
+ },
1513
+ {
1514
+ "id": "EXP-202403-0040",
1515
+ "date": "2024-03-22",
1516
+ "amount": 107.33,
1517
+ "category": "Office Supplies",
1518
+ "description": "Printer paper and ink cartridges",
1519
+ "vendor": "Hilton",
1520
+ "employee": "David Brown",
1521
+ "department": "Finance",
1522
+ "approved": true
1523
+ },
1524
+ {
1525
+ "id": "EXP-202403-0142",
1526
+ "date": "2024-03-22",
1527
+ "amount": 180.51,
1528
+ "category": "Food & Dining",
1529
+ "description": "Dinner with clients at Italian restaurant",
1530
+ "vendor": "United Airlines",
1531
+ "employee": "Henry Moore",
1532
+ "department": "Engineering",
1533
+ "approved": false
1534
+ },
1535
+ {
1536
+ "id": "EXP-202403-0157",
1537
+ "date": "2024-03-22",
1538
+ "amount": 28.04,
1539
+ "category": "Transportation",
1540
+ "description": "Parking at client office building",
1541
+ "vendor": "Dell",
1542
+ "employee": "Alice Johnson",
1543
+ "department": "HR",
1544
+ "approved": false
1545
+ },
1546
+ {
1547
+ "id": "EXP-202403-0159",
1548
+ "date": "2024-03-22",
1549
+ "amount": 1188.64,
1550
+ "category": "Software",
1551
+ "description": "Monthly cloud hosting fees",
1552
+ "vendor": "Dell",
1553
+ "employee": "Alice Johnson",
1554
+ "department": "HR",
1555
+ "approved": true
1556
+ },
1557
+ {
1558
+ "id": "EXP-202403-0179",
1559
+ "date": "2024-03-22",
1560
+ "amount": 145.36,
1561
+ "category": "Food & Dining",
1562
+ "description": "Team lunch celebration",
1563
+ "vendor": "Whole Foods",
1564
+ "employee": "Bob Smith",
1565
+ "department": "Operations",
1566
+ "approved": true
1567
+ },
1568
+ {
1569
+ "id": "EXP-202403-0199",
1570
+ "date": "2024-03-22",
1571
+ "amount": 191.66,
1572
+ "category": "Office Supplies",
1573
+ "description": "Printer paper and ink cartridges",
1574
+ "vendor": "Hilton",
1575
+ "employee": "David Brown",
1576
+ "department": "HR",
1577
+ "approved": true
1578
+ },
1579
+ {
1580
+ "id": "EXP-202403-0093",
1581
+ "date": "2024-03-23",
1582
+ "amount": 89.29,
1583
+ "category": "Office Supplies",
1584
+ "description": "Filing folders and labels",
1585
+ "vendor": "Staples",
1586
+ "employee": "Jack Anderson",
1587
+ "department": "HR",
1588
+ "approved": true
1589
+ },
1590
+ {
1591
+ "id": "EXP-202403-0133",
1592
+ "date": "2024-03-23",
1593
+ "amount": 177.84,
1594
+ "category": "Office Supplies",
1595
+ "description": "Notebooks and pens for team",
1596
+ "vendor": "Adobe",
1597
+ "employee": "Kate Thomas",
1598
+ "department": "Sales",
1599
+ "approved": false
1600
+ },
1601
+ {
1602
+ "id": "EXP-202403-0143",
1603
+ "date": "2024-03-23",
1604
+ "amount": 147.01,
1605
+ "category": "Food & Dining",
1606
+ "description": "Coffee and pastries at morning meeting",
1607
+ "vendor": "AWS",
1608
+ "employee": "Grace Wilson",
1609
+ "department": "Engineering",
1610
+ "approved": true
1611
+ },
1612
+ {
1613
+ "id": "EXP-202403-0145",
1614
+ "date": "2024-03-23",
1615
+ "amount": 62.5,
1616
+ "category": "Transportation",
1617
+ "description": "Rental car for out of town meeting",
1618
+ "vendor": "Staples",
1619
+ "employee": "Liam Jackson",
1620
+ "department": "Marketing",
1621
+ "approved": true
1622
+ },
1623
+ {
1624
+ "id": "EXP-202403-0147",
1625
+ "date": "2024-03-23",
1626
+ "amount": 2936.22,
1627
+ "category": "Equipment",
1628
+ "description": "Keyboard and mouse replacement",
1629
+ "vendor": "Marriott",
1630
+ "employee": "Bob Smith",
1631
+ "department": "Marketing",
1632
+ "approved": true
1633
+ },
1634
+ {
1635
+ "id": "EXP-202403-0165",
1636
+ "date": "2024-03-23",
1637
+ "amount": 97.7,
1638
+ "category": "Food & Dining",
1639
+ "description": "Lunch at downtown cafe",
1640
+ "vendor": "Microsoft",
1641
+ "employee": "Carol Williams",
1642
+ "department": "Finance",
1643
+ "approved": true
1644
+ },
1645
+ {
1646
+ "id": "EXP-202403-0168",
1647
+ "date": "2024-03-23",
1648
+ "amount": 331.92,
1649
+ "category": "Transportation",
1650
+ "description": "Lyft from airport to hotel",
1651
+ "vendor": "AWS",
1652
+ "employee": "Grace Wilson",
1653
+ "department": "Marketing",
1654
+ "approved": true
1655
+ },
1656
+ {
1657
+ "id": "EXP-202403-0171",
1658
+ "date": "2024-03-23",
1659
+ "amount": 1697.86,
1660
+ "category": "Equipment",
1661
+ "description": "Keyboard and mouse replacement",
1662
+ "vendor": "Uber Business",
1663
+ "employee": "Iris Taylor",
1664
+ "department": "Finance",
1665
+ "approved": true
1666
+ },
1667
+ {
1668
+ "id": "EXP-202403-0194",
1669
+ "date": "2024-03-23",
1670
+ "amount": 222.81,
1671
+ "category": "Transportation",
1672
+ "description": "Parking at client office building",
1673
+ "vendor": "Google Cloud",
1674
+ "employee": "Henry Moore",
1675
+ "department": "Finance",
1676
+ "approved": true
1677
+ },
1678
+ {
1679
+ "id": "EXP-202403-0022",
1680
+ "date": "2024-03-24",
1681
+ "amount": 698.08,
1682
+ "category": "Software",
1683
+ "description": "Analytics platform fee",
1684
+ "vendor": "Dell",
1685
+ "employee": "Carol Williams",
1686
+ "department": "HR",
1687
+ "approved": true
1688
+ },
1689
+ {
1690
+ "id": "EXP-202403-0104",
1691
+ "date": "2024-03-24",
1692
+ "amount": 153.11,
1693
+ "category": "Food & Dining",
1694
+ "description": "Team lunch celebration",
1695
+ "vendor": "TechSupply",
1696
+ "employee": "Bob Smith",
1697
+ "department": "Sales",
1698
+ "approved": true
1699
+ },
1700
+ {
1701
+ "id": "EXP-202403-0124",
1702
+ "date": "2024-03-24",
1703
+ "amount": 2094.01,
1704
+ "category": "Travel",
1705
+ "description": "Hotel for client conference",
1706
+ "vendor": "Acme Corp",
1707
+ "employee": "Emma Davis",
1708
+ "department": "Marketing",
1709
+ "approved": true
1710
+ },
1711
+ {
1712
+ "id": "EXP-202403-0170",
1713
+ "date": "2024-03-24",
1714
+ "amount": 75.38,
1715
+ "category": "Transportation",
1716
+ "description": "Gas for company vehicle",
1717
+ "vendor": "Dell",
1718
+ "employee": "Frank Miller",
1719
+ "department": "Operations",
1720
+ "approved": true
1721
+ },
1722
+ {
1723
+ "id": "EXP-202403-0180",
1724
+ "date": "2024-03-24",
1725
+ "amount": 59.16,
1726
+ "category": "Office Supplies",
1727
+ "description": "Filing folders and labels",
1728
+ "vendor": "United Airlines",
1729
+ "employee": "Henry Moore",
1730
+ "department": "HR",
1731
+ "approved": true
1732
+ },
1733
+ {
1734
+ "id": "EXP-202403-0045",
1735
+ "date": "2024-03-25",
1736
+ "amount": 71.47,
1737
+ "category": "Food & Dining",
1738
+ "description": "Catering for quarterly review meeting",
1739
+ "vendor": "Google Cloud",
1740
+ "employee": "Emma Davis",
1741
+ "department": "HR",
1742
+ "approved": true
1743
+ },
1744
+ {
1745
+ "id": "EXP-202403-0069",
1746
+ "date": "2024-03-25",
1747
+ "amount": 93.16,
1748
+ "category": "Office Supplies",
1749
+ "description": "Desk organizers and trays",
1750
+ "vendor": "Zoom",
1751
+ "employee": "Frank Miller",
1752
+ "department": "Operations",
1753
+ "approved": true
1754
+ },
1755
+ {
1756
+ "id": "EXP-202403-0072",
1757
+ "date": "2024-03-25",
1758
+ "amount": 2914.84,
1759
+ "category": "Equipment",
1760
+ "description": "Keyboard and mouse replacement",
1761
+ "vendor": "AWS",
1762
+ "employee": "David Brown",
1763
+ "department": "HR",
1764
+ "approved": true
1765
+ },
1766
+ {
1767
+ "id": "EXP-202403-0102",
1768
+ "date": "2024-03-25",
1769
+ "amount": 65.35,
1770
+ "category": "Office Supplies",
1771
+ "description": "Printer paper and ink cartridges",
1772
+ "vendor": "Staples",
1773
+ "employee": "Emma Davis",
1774
+ "department": "Engineering",
1775
+ "approved": true
1776
+ },
1777
+ {
1778
+ "id": "EXP-202403-0004",
1779
+ "date": "2024-03-26",
1780
+ "amount": 187.2,
1781
+ "category": "Office Supplies",
1782
+ "description": "Filing folders and labels",
1783
+ "vendor": "United Airlines",
1784
+ "employee": "Alice Johnson",
1785
+ "department": "Engineering",
1786
+ "approved": true
1787
+ },
1788
+ {
1789
+ "id": "EXP-202403-0028",
1790
+ "date": "2024-03-26",
1791
+ "amount": 337.91,
1792
+ "category": "Transportation",
1793
+ "description": "Rental car for out of town meeting",
1794
+ "vendor": "United Airlines",
1795
+ "employee": "Jack Anderson",
1796
+ "department": "HR",
1797
+ "approved": true
1798
+ },
1799
+ {
1800
+ "id": "EXP-202403-0032",
1801
+ "date": "2024-03-26",
1802
+ "amount": 2742.58,
1803
+ "category": "Equipment",
1804
+ "description": "Webcam for video meetings",
1805
+ "vendor": "Dell",
1806
+ "employee": "Carol Williams",
1807
+ "department": "Marketing",
1808
+ "approved": true
1809
+ },
1810
+ {
1811
+ "id": "EXP-202403-0065",
1812
+ "date": "2024-03-26",
1813
+ "amount": 179.03,
1814
+ "category": "Travel",
1815
+ "description": "Conference accommodation",
1816
+ "vendor": "Whole Foods",
1817
+ "employee": "Liam Jackson",
1818
+ "department": "Operations",
1819
+ "approved": true
1820
+ },
1821
+ {
1822
+ "id": "EXP-202403-0068",
1823
+ "date": "2024-03-26",
1824
+ "amount": 380.75,
1825
+ "category": "Travel",
1826
+ "description": "Extended stay for project",
1827
+ "vendor": "Office Depot",
1828
+ "employee": "Jack Anderson",
1829
+ "department": "Sales",
1830
+ "approved": true
1831
+ },
1832
+ {
1833
+ "id": "EXP-202403-0075",
1834
+ "date": "2024-03-26",
1835
+ "amount": 149.99,
1836
+ "category": "Office Supplies",
1837
+ "description": "Notebooks and pens for team",
1838
+ "vendor": "Acme Corp",
1839
+ "employee": "Henry Moore",
1840
+ "department": "Operations",
1841
+ "approved": true
1842
+ },
1843
+ {
1844
+ "id": "EXP-202403-0126",
1845
+ "date": "2024-03-26",
1846
+ "amount": 351.66,
1847
+ "category": "Transportation",
1848
+ "description": "Gas for company vehicle",
1849
+ "vendor": "Staples",
1850
+ "employee": "Bob Smith",
1851
+ "department": "Operations",
1852
+ "approved": true
1853
+ },
1854
+ {
1855
+ "id": "EXP-202403-0174",
1856
+ "date": "2024-03-26",
1857
+ "amount": 197.3,
1858
+ "category": "Transportation",
1859
+ "description": "Rental car for out of town meeting",
1860
+ "vendor": "Best Buy",
1861
+ "employee": "Grace Wilson",
1862
+ "department": "Marketing",
1863
+ "approved": true
1864
+ },
1865
+ {
1866
+ "id": "EXP-202403-0186",
1867
+ "date": "2024-03-26",
1868
+ "amount": 44.9,
1869
+ "category": "Food & Dining",
1870
+ "description": "Business breakfast at hotel",
1871
+ "vendor": "Chipotle",
1872
+ "employee": "Iris Taylor",
1873
+ "department": "Finance",
1874
+ "approved": false
1875
+ },
1876
+ {
1877
+ "id": "EXP-202403-0003",
1878
+ "date": "2024-03-27",
1879
+ "amount": 140.98,
1880
+ "category": "Equipment",
1881
+ "description": "Keyboard and mouse replacement",
1882
+ "vendor": "Office Depot",
1883
+ "employee": "Henry Moore",
1884
+ "department": "HR",
1885
+ "approved": true
1886
+ },
1887
+ {
1888
+ "id": "EXP-202403-0005",
1889
+ "date": "2024-03-27",
1890
+ "amount": 126.56,
1891
+ "category": "Office Supplies",
1892
+ "description": "Whiteboard markers and erasers",
1893
+ "vendor": "Starbucks",
1894
+ "employee": "Kate Thomas",
1895
+ "department": "Marketing",
1896
+ "approved": true
1897
+ },
1898
+ {
1899
+ "id": "EXP-202403-0020",
1900
+ "date": "2024-03-27",
1901
+ "amount": 164.84,
1902
+ "category": "Office Supplies",
1903
+ "description": "Filing folders and labels",
1904
+ "vendor": "Amazon Business",
1905
+ "employee": "Grace Wilson",
1906
+ "department": "Finance",
1907
+ "approved": true
1908
+ },
1909
+ {
1910
+ "id": "EXP-202403-0144",
1911
+ "date": "2024-03-27",
1912
+ "amount": 188.19,
1913
+ "category": "Food & Dining",
1914
+ "description": "Business breakfast at hotel",
1915
+ "vendor": "Zoom",
1916
+ "employee": "Emma Davis",
1917
+ "department": "Engineering",
1918
+ "approved": true
1919
+ },
1920
+ {
1921
+ "id": "EXP-202403-0181",
1922
+ "date": "2024-03-27",
1923
+ "amount": 65.4,
1924
+ "category": "Office Supplies",
1925
+ "description": "Printer paper and ink cartridges",
1926
+ "vendor": "Microsoft",
1927
+ "employee": "Henry Moore",
1928
+ "department": "HR",
1929
+ "approved": false
1930
+ },
1931
+ {
1932
+ "id": "EXP-202403-0187",
1933
+ "date": "2024-03-27",
1934
+ "amount": 180.11,
1935
+ "category": "Transportation",
1936
+ "description": "Parking at client office building",
1937
+ "vendor": "AWS",
1938
+ "employee": "Jack Anderson",
1939
+ "department": "Operations",
1940
+ "approved": true
1941
+ },
1942
+ {
1943
+ "id": "EXP-202403-0001",
1944
+ "date": "2024-03-28",
1945
+ "amount": 108.65,
1946
+ "category": "Transportation",
1947
+ "description": "Lyft from airport to hotel",
1948
+ "vendor": "Marriott",
1949
+ "employee": "Emma Davis",
1950
+ "department": "Finance",
1951
+ "approved": false
1952
+ },
1953
+ {
1954
+ "id": "EXP-202403-0026",
1955
+ "date": "2024-03-28",
1956
+ "amount": 261.56,
1957
+ "category": "Travel",
1958
+ "description": "Conference accommodation",
1959
+ "vendor": "Slack",
1960
+ "employee": "Jack Anderson",
1961
+ "department": "Finance",
1962
+ "approved": true
1963
+ },
1964
+ {
1965
+ "id": "EXP-202403-0063",
1966
+ "date": "2024-03-28",
1967
+ "amount": 396.58,
1968
+ "category": "Transportation",
1969
+ "description": "Toll fees for highway travel",
1970
+ "vendor": "Acme Corp",
1971
+ "employee": "Frank Miller",
1972
+ "department": "Marketing",
1973
+ "approved": true
1974
+ },
1975
+ {
1976
+ "id": "EXP-202403-0074",
1977
+ "date": "2024-03-28",
1978
+ "amount": 216.1,
1979
+ "category": "Software",
1980
+ "description": "Project management subscription",
1981
+ "vendor": "Marriott",
1982
+ "employee": "Alice Johnson",
1983
+ "department": "Marketing",
1984
+ "approved": true
1985
+ },
1986
+ {
1987
+ "id": "EXP-202403-0084",
1988
+ "date": "2024-03-28",
1989
+ "amount": 264.37,
1990
+ "category": "Software",
1991
+ "description": "Video conferencing monthly",
1992
+ "vendor": "Google Cloud",
1993
+ "employee": "Jack Anderson",
1994
+ "department": "Engineering",
1995
+ "approved": true
1996
+ },
1997
+ {
1998
+ "id": "EXP-202403-0128",
1999
+ "date": "2024-03-28",
2000
+ "amount": 691.67,
2001
+ "category": "Software",
2002
+ "description": "Project management subscription",
2003
+ "vendor": "Zoom",
2004
+ "employee": "Frank Miller",
2005
+ "department": "Engineering",
2006
+ "approved": false
2007
+ },
2008
+ {
2009
+ "id": "EXP-202403-0138",
2010
+ "date": "2024-03-28",
2011
+ "amount": 651.76,
2012
+ "category": "Software",
2013
+ "description": "Monthly cloud hosting fees",
2014
+ "vendor": "United Airlines",
2015
+ "employee": "Iris Taylor",
2016
+ "department": "HR",
2017
+ "approved": true
2018
+ },
2019
+ {
2020
+ "id": "EXP-202403-0188",
2021
+ "date": "2024-03-28",
2022
+ "amount": 277.53,
2023
+ "category": "Transportation",
2024
+ "description": "Lyft from airport to hotel",
2025
+ "vendor": "Chipotle",
2026
+ "employee": "Henry Moore",
2027
+ "department": "Engineering",
2028
+ "approved": true
2029
+ },
2030
+ {
2031
+ "id": "EXP-202403-0006",
2032
+ "date": "2024-03-29",
2033
+ "amount": 181.53,
2034
+ "category": "Transportation",
2035
+ "description": "Lyft from airport to hotel",
2036
+ "vendor": "Zoom",
2037
+ "employee": "Henry Moore",
2038
+ "department": "Operations",
2039
+ "approved": true
2040
+ },
2041
+ {
2042
+ "id": "EXP-202403-0024",
2043
+ "date": "2024-03-29",
2044
+ "amount": 1111.6,
2045
+ "category": "Software",
2046
+ "description": "Monthly cloud hosting fees",
2047
+ "vendor": "Acme Corp",
2048
+ "employee": "Alice Johnson",
2049
+ "department": "Engineering",
2050
+ "approved": true
2051
+ },
2052
+ {
2053
+ "id": "EXP-202403-0044",
2054
+ "date": "2024-03-29",
2055
+ "amount": 146.28,
2056
+ "category": "Food & Dining",
2057
+ "description": "Coffee and pastries at morning meeting",
2058
+ "vendor": "Staples",
2059
+ "employee": "David Brown",
2060
+ "department": "Sales",
2061
+ "approved": false
2062
+ },
2063
+ {
2064
+ "id": "EXP-202403-0059",
2065
+ "date": "2024-03-29",
2066
+ "amount": 416.09,
2067
+ "category": "Travel",
2068
+ "description": "Extended stay for project",
2069
+ "vendor": "Staples",
2070
+ "employee": "Iris Taylor",
2071
+ "department": "Engineering",
2072
+ "approved": true
2073
+ },
2074
+ {
2075
+ "id": "EXP-202403-0076",
2076
+ "date": "2024-03-29",
2077
+ "amount": 136.94,
2078
+ "category": "Office Supplies",
2079
+ "description": "Desk organizers and trays",
2080
+ "vendor": "Staples",
2081
+ "employee": "Jack Anderson",
2082
+ "department": "Engineering",
2083
+ "approved": true
2084
+ },
2085
+ {
2086
+ "id": "EXP-202403-0087",
2087
+ "date": "2024-03-29",
2088
+ "amount": 100.84,
2089
+ "category": "Office Supplies",
2090
+ "description": "Printer paper and ink cartridges",
2091
+ "vendor": "Zoom",
2092
+ "employee": "Carol Williams",
2093
+ "department": "Engineering",
2094
+ "approved": true
2095
+ },
2096
+ {
2097
+ "id": "EXP-202403-0115",
2098
+ "date": "2024-03-29",
2099
+ "amount": 86.19,
2100
+ "category": "Food & Dining",
2101
+ "description": "Business breakfast at hotel",
2102
+ "vendor": "TechSupply",
2103
+ "employee": "Iris Taylor",
2104
+ "department": "Operations",
2105
+ "approved": true
2106
+ },
2107
+ {
2108
+ "id": "EXP-202403-0122",
2109
+ "date": "2024-03-29",
2110
+ "amount": 2038.01,
2111
+ "category": "Travel",
2112
+ "description": "Flight to regional office",
2113
+ "vendor": "Zoom",
2114
+ "employee": "Iris Taylor",
2115
+ "department": "Engineering",
2116
+ "approved": false
2117
+ },
2118
+ {
2119
+ "id": "EXP-202403-0079",
2120
+ "date": "2024-03-30",
2121
+ "amount": 142.37,
2122
+ "category": "Software",
2123
+ "description": "Analytics platform fee",
2124
+ "vendor": "Zoom",
2125
+ "employee": "Alice Johnson",
2126
+ "department": "Sales",
2127
+ "approved": true
2128
+ },
2129
+ {
2130
+ "id": "EXP-202403-0131",
2131
+ "date": "2024-03-30",
2132
+ "amount": 60.63,
2133
+ "category": "Transportation",
2134
+ "description": "Toll fees for highway travel",
2135
+ "vendor": "Dell",
2136
+ "employee": "Emma Davis",
2137
+ "department": "Marketing",
2138
+ "approved": true
2139
+ },
2140
+ {
2141
+ "id": "EXP-202403-0149",
2142
+ "date": "2024-03-30",
2143
+ "amount": 1865.74,
2144
+ "category": "Travel",
2145
+ "description": "Flight to regional office",
2146
+ "vendor": "Google Cloud",
2147
+ "employee": "Henry Moore",
2148
+ "department": "Marketing",
2149
+ "approved": true
2150
+ },
2151
+ {
2152
+ "id": "EXP-202403-0151",
2153
+ "date": "2024-03-30",
2154
+ "amount": 136.4,
2155
+ "category": "Transportation",
2156
+ "description": "Lyft from airport to hotel",
2157
+ "vendor": "Uber Business",
2158
+ "employee": "Carol Williams",
2159
+ "department": "Finance",
2160
+ "approved": false
2161
+ },
2162
+ {
2163
+ "id": "EXP-202403-0158",
2164
+ "date": "2024-03-30",
2165
+ "amount": 195.79,
2166
+ "category": "Food & Dining",
2167
+ "description": "Coffee and pastries at morning meeting",
2168
+ "vendor": "TechSupply",
2169
+ "employee": "Frank Miller",
2170
+ "department": "Finance",
2171
+ "approved": false
2172
+ },
2173
+ {
2174
+ "id": "EXP-202403-0195",
2175
+ "date": "2024-03-30",
2176
+ "amount": 71.66,
2177
+ "category": "Food & Dining",
2178
+ "description": "Takeout for late night work session",
2179
+ "vendor": "Best Buy",
2180
+ "employee": "Frank Miller",
2181
+ "department": "Marketing",
2182
+ "approved": false
2183
+ },
2184
+ {
2185
+ "id": "EXP-202403-0201",
2186
+ "date": "2024-03-30",
2187
+ "amount": 184.48,
2188
+ "category": "Office Supplies",
2189
+ "description": "Notebooks and pens for team",
2190
+ "vendor": "Slack",
2191
+ "employee": "Bob Smith",
2192
+ "department": "Sales",
2193
+ "approved": true
2194
+ },
2195
+ {
2196
+ "id": "EXP-202403-0202",
2197
+ "date": "2024-03-30",
2198
+ "amount": 74.76,
2199
+ "category": "Software",
2200
+ "description": "Annual software license renewal",
2201
+ "vendor": "Staples",
2202
+ "employee": "Iris Taylor",
2203
+ "department": "Engineering",
2204
+ "approved": true
2205
+ },
2206
+ {
2207
+ "id": "EXP-202403-0204",
2208
+ "date": "2024-03-30",
2209
+ "amount": 2472.28,
2210
+ "category": "Travel",
2211
+ "description": "Conference accommodation",
2212
+ "vendor": "Whole Foods",
2213
+ "employee": "Iris Taylor",
2214
+ "department": "Operations",
2215
+ "approved": false
2216
+ },
2217
+ {
2218
+ "id": "EXP-202403-0012",
2219
+ "date": "2024-03-31",
2220
+ "amount": 478.38,
2221
+ "category": "Software",
2222
+ "description": "Video conferencing monthly",
2223
+ "vendor": "Office Depot",
2224
+ "employee": "Kate Thomas",
2225
+ "department": "HR",
2226
+ "approved": true
2227
+ },
2228
+ {
2229
+ "id": "EXP-202403-0050",
2230
+ "date": "2024-03-31",
2231
+ "amount": 993.0,
2232
+ "category": "Software",
2233
+ "description": "Project management subscription",
2234
+ "vendor": "Chipotle",
2235
+ "employee": "Frank Miller",
2236
+ "department": "Finance",
2237
+ "approved": true
2238
+ },
2239
+ {
2240
+ "id": "EXP-202403-0082",
2241
+ "date": "2024-03-31",
2242
+ "amount": 1478.1,
2243
+ "category": "Travel",
2244
+ "description": "Conference accommodation",
2245
+ "vendor": "Amazon Business",
2246
+ "employee": "Grace Wilson",
2247
+ "department": "Sales",
2248
+ "approved": true
2249
+ }
2250
+ ]
2251
+ }