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