@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,1987 @@
1
+ {
2
+ "period": "2024-04",
3
+ "total_expenses": 180,
4
+ "total_amount": 125098.63,
5
+ "expenses": [
6
+ {
7
+ "id": "EXP-202404-0009",
8
+ "date": "2024-04-01",
9
+ "amount": 142.72,
10
+ "category": "Food & Dining",
11
+ "description": "Business breakfast at hotel",
12
+ "vendor": "Uber Business",
13
+ "employee": "Emma Davis",
14
+ "department": "Finance",
15
+ "approved": true
16
+ },
17
+ {
18
+ "id": "EXP-202404-0037",
19
+ "date": "2024-04-01",
20
+ "amount": 182.84,
21
+ "category": "Office Supplies",
22
+ "description": "Printer paper and ink cartridges",
23
+ "vendor": "Staples",
24
+ "employee": "Liam Jackson",
25
+ "department": "Operations",
26
+ "approved": true
27
+ },
28
+ {
29
+ "id": "EXP-202404-0101",
30
+ "date": "2024-04-01",
31
+ "amount": 338.29,
32
+ "category": "Transportation",
33
+ "description": "Rental car for out of town meeting",
34
+ "vendor": "Microsoft",
35
+ "employee": "Bob Smith",
36
+ "department": "Engineering",
37
+ "approved": false
38
+ },
39
+ {
40
+ "id": "EXP-202404-0142",
41
+ "date": "2024-04-01",
42
+ "amount": 249.15,
43
+ "category": "Transportation",
44
+ "description": "Lyft from airport to hotel",
45
+ "vendor": "Zoom",
46
+ "employee": "Kate Thomas",
47
+ "department": "Operations",
48
+ "approved": false
49
+ },
50
+ {
51
+ "id": "EXP-202404-0178",
52
+ "date": "2024-04-01",
53
+ "amount": 89.04,
54
+ "category": "Food & Dining",
55
+ "description": "Coffee and pastries at morning meeting",
56
+ "vendor": "TechSupply",
57
+ "employee": "Iris Taylor",
58
+ "department": "Sales",
59
+ "approved": false
60
+ },
61
+ {
62
+ "id": "EXP-202404-0019",
63
+ "date": "2024-04-02",
64
+ "amount": 381.9,
65
+ "category": "Equipment",
66
+ "description": "New laptop for developer",
67
+ "vendor": "United Airlines",
68
+ "employee": "Jack Anderson",
69
+ "department": "Marketing",
70
+ "approved": true
71
+ },
72
+ {
73
+ "id": "EXP-202404-0021",
74
+ "date": "2024-04-02",
75
+ "amount": 1141.34,
76
+ "category": "Software",
77
+ "description": "Annual software license renewal",
78
+ "vendor": "AWS",
79
+ "employee": "Carol Williams",
80
+ "department": "Engineering",
81
+ "approved": false
82
+ },
83
+ {
84
+ "id": "EXP-202404-0027",
85
+ "date": "2024-04-02",
86
+ "amount": 166.57,
87
+ "category": "Food & Dining",
88
+ "description": "Dinner with clients at Italian restaurant",
89
+ "vendor": "Uber Business",
90
+ "employee": "David Brown",
91
+ "department": "Marketing",
92
+ "approved": false
93
+ },
94
+ {
95
+ "id": "EXP-202404-0064",
96
+ "date": "2024-04-02",
97
+ "amount": 1069.44,
98
+ "category": "Software",
99
+ "description": "Video conferencing monthly",
100
+ "vendor": "Staples",
101
+ "employee": "David Brown",
102
+ "department": "Marketing",
103
+ "approved": true
104
+ },
105
+ {
106
+ "id": "EXP-202404-0088",
107
+ "date": "2024-04-02",
108
+ "amount": 2481.63,
109
+ "category": "Equipment",
110
+ "description": "Keyboard and mouse replacement",
111
+ "vendor": "Adobe",
112
+ "employee": "Jack Anderson",
113
+ "department": "Operations",
114
+ "approved": true
115
+ },
116
+ {
117
+ "id": "EXP-202404-0005",
118
+ "date": "2024-04-03",
119
+ "amount": 160.38,
120
+ "category": "Transportation",
121
+ "description": "Gas for company vehicle",
122
+ "vendor": "Uber Business",
123
+ "employee": "Bob Smith",
124
+ "department": "HR",
125
+ "approved": true
126
+ },
127
+ {
128
+ "id": "EXP-202404-0026",
129
+ "date": "2024-04-03",
130
+ "amount": 512.5,
131
+ "category": "Equipment",
132
+ "description": "New laptop for developer",
133
+ "vendor": "Hilton",
134
+ "employee": "Jack Anderson",
135
+ "department": "Finance",
136
+ "approved": true
137
+ },
138
+ {
139
+ "id": "EXP-202404-0030",
140
+ "date": "2024-04-03",
141
+ "amount": 2597.49,
142
+ "category": "Equipment",
143
+ "description": "Keyboard and mouse replacement",
144
+ "vendor": "Uber Business",
145
+ "employee": "Frank Miller",
146
+ "department": "Engineering",
147
+ "approved": false
148
+ },
149
+ {
150
+ "id": "EXP-202404-0048",
151
+ "date": "2024-04-03",
152
+ "amount": 367.65,
153
+ "category": "Software",
154
+ "description": "Video conferencing monthly",
155
+ "vendor": "Whole Foods",
156
+ "employee": "Liam Jackson",
157
+ "department": "Operations",
158
+ "approved": true
159
+ },
160
+ {
161
+ "id": "EXP-202404-0062",
162
+ "date": "2024-04-03",
163
+ "amount": 59.72,
164
+ "category": "Software",
165
+ "description": "Video conferencing monthly",
166
+ "vendor": "Uber Business",
167
+ "employee": "Bob Smith",
168
+ "department": "Marketing",
169
+ "approved": true
170
+ },
171
+ {
172
+ "id": "EXP-202404-0083",
173
+ "date": "2024-04-03",
174
+ "amount": 84.86,
175
+ "category": "Office Supplies",
176
+ "description": "Whiteboard markers and erasers",
177
+ "vendor": "Uber Business",
178
+ "employee": "Iris Taylor",
179
+ "department": "Sales",
180
+ "approved": true
181
+ },
182
+ {
183
+ "id": "EXP-202404-0099",
184
+ "date": "2024-04-03",
185
+ "amount": 2689.13,
186
+ "category": "Equipment",
187
+ "description": "New laptop for developer",
188
+ "vendor": "Hilton",
189
+ "employee": "Grace Wilson",
190
+ "department": "HR",
191
+ "approved": true
192
+ },
193
+ {
194
+ "id": "EXP-202404-0112",
195
+ "date": "2024-04-03",
196
+ "amount": 31.71,
197
+ "category": "Transportation",
198
+ "description": "Parking at client office building",
199
+ "vendor": "Adobe",
200
+ "employee": "Jack Anderson",
201
+ "department": "Operations",
202
+ "approved": true
203
+ },
204
+ {
205
+ "id": "EXP-202404-0113",
206
+ "date": "2024-04-03",
207
+ "amount": 861.58,
208
+ "category": "Software",
209
+ "description": "Annual software license renewal",
210
+ "vendor": "Microsoft",
211
+ "employee": "Grace Wilson",
212
+ "department": "Finance",
213
+ "approved": true
214
+ },
215
+ {
216
+ "id": "EXP-202404-0120",
217
+ "date": "2024-04-03",
218
+ "amount": 384.64,
219
+ "category": "Transportation",
220
+ "description": "Lyft from airport to hotel",
221
+ "vendor": "Dell",
222
+ "employee": "Bob Smith",
223
+ "department": "Engineering",
224
+ "approved": false
225
+ },
226
+ {
227
+ "id": "EXP-202404-0046",
228
+ "date": "2024-04-04",
229
+ "amount": 2666.91,
230
+ "category": "Equipment",
231
+ "description": "Keyboard and mouse replacement",
232
+ "vendor": "Staples",
233
+ "employee": "Henry Moore",
234
+ "department": "HR",
235
+ "approved": true
236
+ },
237
+ {
238
+ "id": "EXP-202404-0087",
239
+ "date": "2024-04-04",
240
+ "amount": 818.62,
241
+ "category": "Travel",
242
+ "description": "Hotel for client conference",
243
+ "vendor": "Staples",
244
+ "employee": "Frank Miller",
245
+ "department": "Operations",
246
+ "approved": false
247
+ },
248
+ {
249
+ "id": "EXP-202404-0007",
250
+ "date": "2024-04-05",
251
+ "amount": 164.77,
252
+ "category": "Office Supplies",
253
+ "description": "Desk organizers and trays",
254
+ "vendor": "United Airlines",
255
+ "employee": "Carol Williams",
256
+ "department": "Engineering",
257
+ "approved": false
258
+ },
259
+ {
260
+ "id": "EXP-202404-0015",
261
+ "date": "2024-04-05",
262
+ "amount": 261.67,
263
+ "category": "Transportation",
264
+ "description": "Gas for company vehicle",
265
+ "vendor": "Office Depot",
266
+ "employee": "Bob Smith",
267
+ "department": "HR",
268
+ "approved": true
269
+ },
270
+ {
271
+ "id": "EXP-202404-0017",
272
+ "date": "2024-04-05",
273
+ "amount": 405.9,
274
+ "category": "Travel",
275
+ "description": "Conference accommodation",
276
+ "vendor": "Staples",
277
+ "employee": "Iris Taylor",
278
+ "department": "Marketing",
279
+ "approved": true
280
+ },
281
+ {
282
+ "id": "EXP-202404-0069",
283
+ "date": "2024-04-05",
284
+ "amount": 280.08,
285
+ "category": "Travel",
286
+ "description": "Flight to regional office",
287
+ "vendor": "Acme Corp",
288
+ "employee": "Henry Moore",
289
+ "department": "Marketing",
290
+ "approved": false
291
+ },
292
+ {
293
+ "id": "EXP-202404-0100",
294
+ "date": "2024-04-05",
295
+ "amount": 1658.37,
296
+ "category": "Equipment",
297
+ "description": "New laptop for developer",
298
+ "vendor": "Best Buy",
299
+ "employee": "Kate Thomas",
300
+ "department": "Engineering",
301
+ "approved": true
302
+ },
303
+ {
304
+ "id": "EXP-202404-0119",
305
+ "date": "2024-04-05",
306
+ "amount": 768.03,
307
+ "category": "Software",
308
+ "description": "Video conferencing monthly",
309
+ "vendor": "Chipotle",
310
+ "employee": "Carol Williams",
311
+ "department": "Sales",
312
+ "approved": false
313
+ },
314
+ {
315
+ "id": "EXP-202404-0150",
316
+ "date": "2024-04-05",
317
+ "amount": 16.72,
318
+ "category": "Food & Dining",
319
+ "description": "Catering for quarterly review meeting",
320
+ "vendor": "AWS",
321
+ "employee": "Henry Moore",
322
+ "department": "Operations",
323
+ "approved": true
324
+ },
325
+ {
326
+ "id": "EXP-202404-0170",
327
+ "date": "2024-04-05",
328
+ "amount": 818.45,
329
+ "category": "Software",
330
+ "description": "Project management subscription",
331
+ "vendor": "Marriott",
332
+ "employee": "Frank Miller",
333
+ "department": "Marketing",
334
+ "approved": true
335
+ },
336
+ {
337
+ "id": "EXP-202404-0016",
338
+ "date": "2024-04-06",
339
+ "amount": 1508.35,
340
+ "category": "Equipment",
341
+ "description": "New laptop for developer",
342
+ "vendor": "AWS",
343
+ "employee": "Emma Davis",
344
+ "department": "Marketing",
345
+ "approved": true
346
+ },
347
+ {
348
+ "id": "EXP-202404-0059",
349
+ "date": "2024-04-06",
350
+ "amount": 972.59,
351
+ "category": "Travel",
352
+ "description": "Conference accommodation",
353
+ "vendor": "Adobe",
354
+ "employee": "Emma Davis",
355
+ "department": "Finance",
356
+ "approved": true
357
+ },
358
+ {
359
+ "id": "EXP-202404-0135",
360
+ "date": "2024-04-06",
361
+ "amount": 656.85,
362
+ "category": "Equipment",
363
+ "description": "Keyboard and mouse replacement",
364
+ "vendor": "Google Cloud",
365
+ "employee": "Jack Anderson",
366
+ "department": "Engineering",
367
+ "approved": true
368
+ },
369
+ {
370
+ "id": "EXP-202404-0163",
371
+ "date": "2024-04-06",
372
+ "amount": 1628.69,
373
+ "category": "Equipment",
374
+ "description": "New laptop for developer",
375
+ "vendor": "Dell",
376
+ "employee": "Carol Williams",
377
+ "department": "Finance",
378
+ "approved": true
379
+ },
380
+ {
381
+ "id": "EXP-202404-0164",
382
+ "date": "2024-04-06",
383
+ "amount": 1001.28,
384
+ "category": "Software",
385
+ "description": "Video conferencing monthly",
386
+ "vendor": "Starbucks",
387
+ "employee": "Liam Jackson",
388
+ "department": "Marketing",
389
+ "approved": false
390
+ },
391
+ {
392
+ "id": "EXP-202404-0165",
393
+ "date": "2024-04-06",
394
+ "amount": 84.17,
395
+ "category": "Food & Dining",
396
+ "description": "Team lunch celebration",
397
+ "vendor": "Amazon Business",
398
+ "employee": "Frank Miller",
399
+ "department": "Marketing",
400
+ "approved": true
401
+ },
402
+ {
403
+ "id": "EXP-202404-0110",
404
+ "date": "2024-04-07",
405
+ "amount": 1128.38,
406
+ "category": "Equipment",
407
+ "description": "Webcam for video meetings",
408
+ "vendor": "Amazon Business",
409
+ "employee": "Carol Williams",
410
+ "department": "Marketing",
411
+ "approved": false
412
+ },
413
+ {
414
+ "id": "EXP-202404-0126",
415
+ "date": "2024-04-07",
416
+ "amount": 79.45,
417
+ "category": "Office Supplies",
418
+ "description": "Whiteboard markers and erasers",
419
+ "vendor": "Microsoft",
420
+ "employee": "Emma Davis",
421
+ "department": "Engineering",
422
+ "approved": true
423
+ },
424
+ {
425
+ "id": "EXP-202404-0002",
426
+ "date": "2024-04-09",
427
+ "amount": 1511.24,
428
+ "category": "Equipment",
429
+ "description": "New laptop for developer",
430
+ "vendor": "Uber Business",
431
+ "employee": "Henry Moore",
432
+ "department": "Operations",
433
+ "approved": true
434
+ },
435
+ {
436
+ "id": "EXP-202404-0068",
437
+ "date": "2024-04-09",
438
+ "amount": 169.46,
439
+ "category": "Transportation",
440
+ "description": "Toll fees for highway travel",
441
+ "vendor": "Whole Foods",
442
+ "employee": "Carol Williams",
443
+ "department": "Sales",
444
+ "approved": true
445
+ },
446
+ {
447
+ "id": "EXP-202404-0072",
448
+ "date": "2024-04-09",
449
+ "amount": 1490.66,
450
+ "category": "Software",
451
+ "description": "Project management subscription",
452
+ "vendor": "Adobe",
453
+ "employee": "Carol Williams",
454
+ "department": "Finance",
455
+ "approved": false
456
+ },
457
+ {
458
+ "id": "EXP-202404-0093",
459
+ "date": "2024-04-09",
460
+ "amount": 118.33,
461
+ "category": "Office Supplies",
462
+ "description": "Printer paper and ink cartridges",
463
+ "vendor": "Google Cloud",
464
+ "employee": "Emma Davis",
465
+ "department": "Sales",
466
+ "approved": true
467
+ },
468
+ {
469
+ "id": "EXP-202404-0094",
470
+ "date": "2024-04-09",
471
+ "amount": 184.69,
472
+ "category": "Food & Dining",
473
+ "description": "Coffee and pastries at morning meeting",
474
+ "vendor": "Zoom",
475
+ "employee": "Henry Moore",
476
+ "department": "Operations",
477
+ "approved": true
478
+ },
479
+ {
480
+ "id": "EXP-202404-0128",
481
+ "date": "2024-04-09",
482
+ "amount": 133.94,
483
+ "category": "Food & Dining",
484
+ "description": "Coffee and pastries at morning meeting",
485
+ "vendor": "Chipotle",
486
+ "employee": "Jack Anderson",
487
+ "department": "Finance",
488
+ "approved": true
489
+ },
490
+ {
491
+ "id": "EXP-202404-0008",
492
+ "date": "2024-04-10",
493
+ "amount": 40.06,
494
+ "category": "Office Supplies",
495
+ "description": "Desk organizers and trays",
496
+ "vendor": "Zoom",
497
+ "employee": "Emma Davis",
498
+ "department": "Operations",
499
+ "approved": true
500
+ },
501
+ {
502
+ "id": "EXP-202404-0065",
503
+ "date": "2024-04-10",
504
+ "amount": 154.42,
505
+ "category": "Transportation",
506
+ "description": "Uber to client meeting downtown",
507
+ "vendor": "Office Depot",
508
+ "employee": "David Brown",
509
+ "department": "Operations",
510
+ "approved": true
511
+ },
512
+ {
513
+ "id": "EXP-202404-0155",
514
+ "date": "2024-04-10",
515
+ "amount": 2335.37,
516
+ "category": "Equipment",
517
+ "description": "Monitor for home office",
518
+ "vendor": "Microsoft",
519
+ "employee": "Henry Moore",
520
+ "department": "Engineering",
521
+ "approved": true
522
+ },
523
+ {
524
+ "id": "EXP-202404-0011",
525
+ "date": "2024-04-11",
526
+ "amount": 2322.08,
527
+ "category": "Equipment",
528
+ "description": "Monitor for home office",
529
+ "vendor": "Zoom",
530
+ "employee": "Emma Davis",
531
+ "department": "HR",
532
+ "approved": true
533
+ },
534
+ {
535
+ "id": "EXP-202404-0091",
536
+ "date": "2024-04-11",
537
+ "amount": 74.33,
538
+ "category": "Office Supplies",
539
+ "description": "Desk organizers and trays",
540
+ "vendor": "AWS",
541
+ "employee": "Carol Williams",
542
+ "department": "Finance",
543
+ "approved": true
544
+ },
545
+ {
546
+ "id": "EXP-202404-0106",
547
+ "date": "2024-04-11",
548
+ "amount": 192.9,
549
+ "category": "Food & Dining",
550
+ "description": "Takeout for late night work session",
551
+ "vendor": "Acme Corp",
552
+ "employee": "Alice Johnson",
553
+ "department": "HR",
554
+ "approved": true
555
+ },
556
+ {
557
+ "id": "EXP-202404-0140",
558
+ "date": "2024-04-11",
559
+ "amount": 778.03,
560
+ "category": "Software",
561
+ "description": "Analytics platform fee",
562
+ "vendor": "TechSupply",
563
+ "employee": "Emma Davis",
564
+ "department": "HR",
565
+ "approved": true
566
+ },
567
+ {
568
+ "id": "EXP-202404-0167",
569
+ "date": "2024-04-11",
570
+ "amount": 82.6,
571
+ "category": "Transportation",
572
+ "description": "Toll fees for highway travel",
573
+ "vendor": "Microsoft",
574
+ "employee": "Frank Miller",
575
+ "department": "Engineering",
576
+ "approved": false
577
+ },
578
+ {
579
+ "id": "EXP-202404-0175",
580
+ "date": "2024-04-11",
581
+ "amount": 189.22,
582
+ "category": "Office Supplies",
583
+ "description": "Desk organizers and trays",
584
+ "vendor": "Hilton",
585
+ "employee": "Emma Davis",
586
+ "department": "Operations",
587
+ "approved": true
588
+ },
589
+ {
590
+ "id": "EXP-202404-0176",
591
+ "date": "2024-04-11",
592
+ "amount": 469.48,
593
+ "category": "Software",
594
+ "description": "Annual software license renewal",
595
+ "vendor": "Office Depot",
596
+ "employee": "Iris Taylor",
597
+ "department": "Engineering",
598
+ "approved": false
599
+ },
600
+ {
601
+ "id": "EXP-202404-0179",
602
+ "date": "2024-04-11",
603
+ "amount": 36.04,
604
+ "category": "Office Supplies",
605
+ "description": "Notebooks and pens for team",
606
+ "vendor": "Office Depot",
607
+ "employee": "Bob Smith",
608
+ "department": "Sales",
609
+ "approved": false
610
+ },
611
+ {
612
+ "id": "EXP-202404-0024",
613
+ "date": "2024-04-12",
614
+ "amount": 1240.81,
615
+ "category": "Travel",
616
+ "description": "Flight to regional office",
617
+ "vendor": "Chipotle",
618
+ "employee": "Henry Moore",
619
+ "department": "Engineering",
620
+ "approved": true
621
+ },
622
+ {
623
+ "id": "EXP-202404-0028",
624
+ "date": "2024-04-12",
625
+ "amount": 1482.49,
626
+ "category": "Software",
627
+ "description": "Analytics platform fee",
628
+ "vendor": "Zoom",
629
+ "employee": "Alice Johnson",
630
+ "department": "Sales",
631
+ "approved": true
632
+ },
633
+ {
634
+ "id": "EXP-202404-0044",
635
+ "date": "2024-04-12",
636
+ "amount": 170.78,
637
+ "category": "Food & Dining",
638
+ "description": "Business breakfast at hotel",
639
+ "vendor": "Whole Foods",
640
+ "employee": "Alice Johnson",
641
+ "department": "Marketing",
642
+ "approved": true
643
+ },
644
+ {
645
+ "id": "EXP-202404-0054",
646
+ "date": "2024-04-12",
647
+ "amount": 416.75,
648
+ "category": "Software",
649
+ "description": "Monthly cloud hosting fees",
650
+ "vendor": "Uber Business",
651
+ "employee": "Carol Williams",
652
+ "department": "Operations",
653
+ "approved": true
654
+ },
655
+ {
656
+ "id": "EXP-202404-0118",
657
+ "date": "2024-04-12",
658
+ "amount": 863.15,
659
+ "category": "Travel",
660
+ "description": "Extended stay for project",
661
+ "vendor": "Best Buy",
662
+ "employee": "David Brown",
663
+ "department": "Operations",
664
+ "approved": true
665
+ },
666
+ {
667
+ "id": "EXP-202404-0136",
668
+ "date": "2024-04-12",
669
+ "amount": 1582.28,
670
+ "category": "Equipment",
671
+ "description": "Keyboard and mouse replacement",
672
+ "vendor": "Staples",
673
+ "employee": "Liam Jackson",
674
+ "department": "Engineering",
675
+ "approved": true
676
+ },
677
+ {
678
+ "id": "EXP-202404-0141",
679
+ "date": "2024-04-12",
680
+ "amount": 43.48,
681
+ "category": "Food & Dining",
682
+ "description": "Lunch at downtown cafe",
683
+ "vendor": "Zoom",
684
+ "employee": "Emma Davis",
685
+ "department": "Marketing",
686
+ "approved": true
687
+ },
688
+ {
689
+ "id": "EXP-202404-0154",
690
+ "date": "2024-04-12",
691
+ "amount": 200.34,
692
+ "category": "Transportation",
693
+ "description": "Gas for company vehicle",
694
+ "vendor": "Google Cloud",
695
+ "employee": "Frank Miller",
696
+ "department": "Engineering",
697
+ "approved": true
698
+ },
699
+ {
700
+ "id": "EXP-202404-0158",
701
+ "date": "2024-04-12",
702
+ "amount": 191.94,
703
+ "category": "Office Supplies",
704
+ "description": "Filing folders and labels",
705
+ "vendor": "Uber Business",
706
+ "employee": "Jack Anderson",
707
+ "department": "Sales",
708
+ "approved": true
709
+ },
710
+ {
711
+ "id": "EXP-202404-0010",
712
+ "date": "2024-04-13",
713
+ "amount": 2496.47,
714
+ "category": "Equipment",
715
+ "description": "Keyboard and mouse replacement",
716
+ "vendor": "Uber Business",
717
+ "employee": "Henry Moore",
718
+ "department": "Finance",
719
+ "approved": true
720
+ },
721
+ {
722
+ "id": "EXP-202404-0022",
723
+ "date": "2024-04-13",
724
+ "amount": 512.43,
725
+ "category": "Equipment",
726
+ "description": "Keyboard and mouse replacement",
727
+ "vendor": "Staples",
728
+ "employee": "Kate Thomas",
729
+ "department": "Finance",
730
+ "approved": true
731
+ },
732
+ {
733
+ "id": "EXP-202404-0029",
734
+ "date": "2024-04-13",
735
+ "amount": 58.59,
736
+ "category": "Food & Dining",
737
+ "description": "Team lunch celebration",
738
+ "vendor": "Uber Business",
739
+ "employee": "Iris Taylor",
740
+ "department": "Finance",
741
+ "approved": true
742
+ },
743
+ {
744
+ "id": "EXP-202404-0061",
745
+ "date": "2024-04-13",
746
+ "amount": 354.92,
747
+ "category": "Transportation",
748
+ "description": "Lyft from airport to hotel",
749
+ "vendor": "Starbucks",
750
+ "employee": "Liam Jackson",
751
+ "department": "Finance",
752
+ "approved": true
753
+ },
754
+ {
755
+ "id": "EXP-202404-0073",
756
+ "date": "2024-04-13",
757
+ "amount": 1668.06,
758
+ "category": "Travel",
759
+ "description": "Flight to regional office",
760
+ "vendor": "Slack",
761
+ "employee": "Jack Anderson",
762
+ "department": "Operations",
763
+ "approved": true
764
+ },
765
+ {
766
+ "id": "EXP-202404-0124",
767
+ "date": "2024-04-13",
768
+ "amount": 706.23,
769
+ "category": "Software",
770
+ "description": "Annual software license renewal",
771
+ "vendor": "Adobe",
772
+ "employee": "Jack Anderson",
773
+ "department": "HR",
774
+ "approved": true
775
+ },
776
+ {
777
+ "id": "EXP-202404-0034",
778
+ "date": "2024-04-14",
779
+ "amount": 110.18,
780
+ "category": "Food & Dining",
781
+ "description": "Takeout for late night work session",
782
+ "vendor": "Microsoft",
783
+ "employee": "Alice Johnson",
784
+ "department": "Finance",
785
+ "approved": false
786
+ },
787
+ {
788
+ "id": "EXP-202404-0098",
789
+ "date": "2024-04-14",
790
+ "amount": 442.24,
791
+ "category": "Software",
792
+ "description": "Project management subscription",
793
+ "vendor": "TechSupply",
794
+ "employee": "Carol Williams",
795
+ "department": "HR",
796
+ "approved": false
797
+ },
798
+ {
799
+ "id": "EXP-202404-0115",
800
+ "date": "2024-04-14",
801
+ "amount": 1467.03,
802
+ "category": "Software",
803
+ "description": "Analytics platform fee",
804
+ "vendor": "Slack",
805
+ "employee": "Carol Williams",
806
+ "department": "Marketing",
807
+ "approved": true
808
+ },
809
+ {
810
+ "id": "EXP-202404-0143",
811
+ "date": "2024-04-14",
812
+ "amount": 188.55,
813
+ "category": "Food & Dining",
814
+ "description": "Lunch at downtown cafe",
815
+ "vendor": "Microsoft",
816
+ "employee": "David Brown",
817
+ "department": "Finance",
818
+ "approved": false
819
+ },
820
+ {
821
+ "id": "EXP-202404-0004",
822
+ "date": "2024-04-15",
823
+ "amount": 1115.66,
824
+ "category": "Software",
825
+ "description": "Project management subscription",
826
+ "vendor": "Best Buy",
827
+ "employee": "Grace Wilson",
828
+ "department": "Finance",
829
+ "approved": true
830
+ },
831
+ {
832
+ "id": "EXP-202404-0075",
833
+ "date": "2024-04-15",
834
+ "amount": 1359.1,
835
+ "category": "Software",
836
+ "description": "Monthly cloud hosting fees",
837
+ "vendor": "Chipotle",
838
+ "employee": "Jack Anderson",
839
+ "department": "Marketing",
840
+ "approved": true
841
+ },
842
+ {
843
+ "id": "EXP-202404-0077",
844
+ "date": "2024-04-15",
845
+ "amount": 179.69,
846
+ "category": "Office Supplies",
847
+ "description": "Filing folders and labels",
848
+ "vendor": "Dell",
849
+ "employee": "Bob Smith",
850
+ "department": "Finance",
851
+ "approved": true
852
+ },
853
+ {
854
+ "id": "EXP-202404-0080",
855
+ "date": "2024-04-15",
856
+ "amount": 2509.68,
857
+ "category": "Equipment",
858
+ "description": "New laptop for developer",
859
+ "vendor": "Dell",
860
+ "employee": "Iris Taylor",
861
+ "department": "Sales",
862
+ "approved": true
863
+ },
864
+ {
865
+ "id": "EXP-202404-0092",
866
+ "date": "2024-04-15",
867
+ "amount": 1026.65,
868
+ "category": "Travel",
869
+ "description": "Hotel for client conference",
870
+ "vendor": "United Airlines",
871
+ "employee": "Jack Anderson",
872
+ "department": "Operations",
873
+ "approved": true
874
+ },
875
+ {
876
+ "id": "EXP-202404-0096",
877
+ "date": "2024-04-15",
878
+ "amount": 2642.16,
879
+ "category": "Equipment",
880
+ "description": "Keyboard and mouse replacement",
881
+ "vendor": "Dell",
882
+ "employee": "Bob Smith",
883
+ "department": "Engineering",
884
+ "approved": true
885
+ },
886
+ {
887
+ "id": "EXP-202404-0102",
888
+ "date": "2024-04-15",
889
+ "amount": 1718.47,
890
+ "category": "Travel",
891
+ "description": "Extended stay for project",
892
+ "vendor": "Marriott",
893
+ "employee": "Jack Anderson",
894
+ "department": "Marketing",
895
+ "approved": true
896
+ },
897
+ {
898
+ "id": "EXP-202404-0133",
899
+ "date": "2024-04-15",
900
+ "amount": 29.47,
901
+ "category": "Food & Dining",
902
+ "description": "Takeout for late night work session",
903
+ "vendor": "Best Buy",
904
+ "employee": "Jack Anderson",
905
+ "department": "Engineering",
906
+ "approved": true
907
+ },
908
+ {
909
+ "id": "EXP-202404-0161",
910
+ "date": "2024-04-15",
911
+ "amount": 39.88,
912
+ "category": "Office Supplies",
913
+ "description": "Notebooks and pens for team",
914
+ "vendor": "United Airlines",
915
+ "employee": "Grace Wilson",
916
+ "department": "Operations",
917
+ "approved": true
918
+ },
919
+ {
920
+ "id": "EXP-202404-0168",
921
+ "date": "2024-04-15",
922
+ "amount": 51.0,
923
+ "category": "Office Supplies",
924
+ "description": "Whiteboard markers and erasers",
925
+ "vendor": "Zoom",
926
+ "employee": "Henry Moore",
927
+ "department": "Operations",
928
+ "approved": true
929
+ },
930
+ {
931
+ "id": "EXP-202404-0055",
932
+ "date": "2024-04-16",
933
+ "amount": 101.65,
934
+ "category": "Office Supplies",
935
+ "description": "Notebooks and pens for team",
936
+ "vendor": "Office Depot",
937
+ "employee": "Iris Taylor",
938
+ "department": "Finance",
939
+ "approved": true
940
+ },
941
+ {
942
+ "id": "EXP-202404-0146",
943
+ "date": "2024-04-16",
944
+ "amount": 1432.73,
945
+ "category": "Software",
946
+ "description": "Video conferencing monthly",
947
+ "vendor": "Acme Corp",
948
+ "employee": "Henry Moore",
949
+ "department": "Operations",
950
+ "approved": true
951
+ },
952
+ {
953
+ "id": "EXP-202404-0153",
954
+ "date": "2024-04-16",
955
+ "amount": 454.17,
956
+ "category": "Software",
957
+ "description": "Annual software license renewal",
958
+ "vendor": "Zoom",
959
+ "employee": "Emma Davis",
960
+ "department": "Engineering",
961
+ "approved": true
962
+ },
963
+ {
964
+ "id": "EXP-202404-0156",
965
+ "date": "2024-04-16",
966
+ "amount": 199.92,
967
+ "category": "Food & Dining",
968
+ "description": "Business breakfast at hotel",
969
+ "vendor": "Office Depot",
970
+ "employee": "Kate Thomas",
971
+ "department": "Finance",
972
+ "approved": true
973
+ },
974
+ {
975
+ "id": "EXP-202404-0169",
976
+ "date": "2024-04-16",
977
+ "amount": 2377.4,
978
+ "category": "Equipment",
979
+ "description": "New laptop for developer",
980
+ "vendor": "Amazon Business",
981
+ "employee": "Bob Smith",
982
+ "department": "Engineering",
983
+ "approved": true
984
+ },
985
+ {
986
+ "id": "EXP-202404-0040",
987
+ "date": "2024-04-17",
988
+ "amount": 105.59,
989
+ "category": "Food & Dining",
990
+ "description": "Lunch at downtown cafe",
991
+ "vendor": "Microsoft",
992
+ "employee": "Kate Thomas",
993
+ "department": "Engineering",
994
+ "approved": true
995
+ },
996
+ {
997
+ "id": "EXP-202404-0042",
998
+ "date": "2024-04-17",
999
+ "amount": 130.6,
1000
+ "category": "Office Supplies",
1001
+ "description": "Desk organizers and trays",
1002
+ "vendor": "Marriott",
1003
+ "employee": "Frank Miller",
1004
+ "department": "Operations",
1005
+ "approved": true
1006
+ },
1007
+ {
1008
+ "id": "EXP-202404-0052",
1009
+ "date": "2024-04-17",
1010
+ "amount": 311.74,
1011
+ "category": "Transportation",
1012
+ "description": "Gas for company vehicle",
1013
+ "vendor": "Acme Corp",
1014
+ "employee": "Kate Thomas",
1015
+ "department": "Engineering",
1016
+ "approved": true
1017
+ },
1018
+ {
1019
+ "id": "EXP-202404-0056",
1020
+ "date": "2024-04-17",
1021
+ "amount": 1092.64,
1022
+ "category": "Software",
1023
+ "description": "Annual software license renewal",
1024
+ "vendor": "Whole Foods",
1025
+ "employee": "Frank Miller",
1026
+ "department": "Operations",
1027
+ "approved": true
1028
+ },
1029
+ {
1030
+ "id": "EXP-202404-0060",
1031
+ "date": "2024-04-17",
1032
+ "amount": 80.69,
1033
+ "category": "Food & Dining",
1034
+ "description": "Dinner with clients at Italian restaurant",
1035
+ "vendor": "Acme Corp",
1036
+ "employee": "David Brown",
1037
+ "department": "Marketing",
1038
+ "approved": false
1039
+ },
1040
+ {
1041
+ "id": "EXP-202404-0074",
1042
+ "date": "2024-04-17",
1043
+ "amount": 304.64,
1044
+ "category": "Transportation",
1045
+ "description": "Rental car for out of town meeting",
1046
+ "vendor": "Google Cloud",
1047
+ "employee": "Iris Taylor",
1048
+ "department": "Operations",
1049
+ "approved": true
1050
+ },
1051
+ {
1052
+ "id": "EXP-202404-0081",
1053
+ "date": "2024-04-17",
1054
+ "amount": 868.79,
1055
+ "category": "Software",
1056
+ "description": "Monthly cloud hosting fees",
1057
+ "vendor": "United Airlines",
1058
+ "employee": "David Brown",
1059
+ "department": "Finance",
1060
+ "approved": true
1061
+ },
1062
+ {
1063
+ "id": "EXP-202404-0082",
1064
+ "date": "2024-04-17",
1065
+ "amount": 683.19,
1066
+ "category": "Travel",
1067
+ "description": "Conference accommodation",
1068
+ "vendor": "TechSupply",
1069
+ "employee": "David Brown",
1070
+ "department": "Engineering",
1071
+ "approved": true
1072
+ },
1073
+ {
1074
+ "id": "EXP-202404-0105",
1075
+ "date": "2024-04-17",
1076
+ "amount": 314.56,
1077
+ "category": "Software",
1078
+ "description": "Monthly cloud hosting fees",
1079
+ "vendor": "TechSupply",
1080
+ "employee": "Frank Miller",
1081
+ "department": "Marketing",
1082
+ "approved": false
1083
+ },
1084
+ {
1085
+ "id": "EXP-202404-0137",
1086
+ "date": "2024-04-17",
1087
+ "amount": 302.58,
1088
+ "category": "Software",
1089
+ "description": "Project management subscription",
1090
+ "vendor": "Dell",
1091
+ "employee": "David Brown",
1092
+ "department": "Engineering",
1093
+ "approved": true
1094
+ },
1095
+ {
1096
+ "id": "EXP-202404-0139",
1097
+ "date": "2024-04-17",
1098
+ "amount": 189.05,
1099
+ "category": "Office Supplies",
1100
+ "description": "Notebooks and pens for team",
1101
+ "vendor": "Microsoft",
1102
+ "employee": "Kate Thomas",
1103
+ "department": "Finance",
1104
+ "approved": true
1105
+ },
1106
+ {
1107
+ "id": "EXP-202404-0173",
1108
+ "date": "2024-04-17",
1109
+ "amount": 2610.91,
1110
+ "category": "Equipment",
1111
+ "description": "Keyboard and mouse replacement",
1112
+ "vendor": "United Airlines",
1113
+ "employee": "Liam Jackson",
1114
+ "department": "Finance",
1115
+ "approved": true
1116
+ },
1117
+ {
1118
+ "id": "EXP-202404-0180",
1119
+ "date": "2024-04-17",
1120
+ "amount": 2271.93,
1121
+ "category": "Equipment",
1122
+ "description": "Keyboard and mouse replacement",
1123
+ "vendor": "Whole Foods",
1124
+ "employee": "Alice Johnson",
1125
+ "department": "Finance",
1126
+ "approved": false
1127
+ },
1128
+ {
1129
+ "id": "EXP-202404-0013",
1130
+ "date": "2024-04-18",
1131
+ "amount": 107.27,
1132
+ "category": "Food & Dining",
1133
+ "description": "Team lunch celebration",
1134
+ "vendor": "Chipotle",
1135
+ "employee": "Kate Thomas",
1136
+ "department": "Sales",
1137
+ "approved": true
1138
+ },
1139
+ {
1140
+ "id": "EXP-202404-0025",
1141
+ "date": "2024-04-18",
1142
+ "amount": 163.49,
1143
+ "category": "Software",
1144
+ "description": "Annual software license renewal",
1145
+ "vendor": "Starbucks",
1146
+ "employee": "David Brown",
1147
+ "department": "Marketing",
1148
+ "approved": true
1149
+ },
1150
+ {
1151
+ "id": "EXP-202404-0032",
1152
+ "date": "2024-04-18",
1153
+ "amount": 689.7,
1154
+ "category": "Travel",
1155
+ "description": "Conference accommodation",
1156
+ "vendor": "Amazon Business",
1157
+ "employee": "Grace Wilson",
1158
+ "department": "Operations",
1159
+ "approved": true
1160
+ },
1161
+ {
1162
+ "id": "EXP-202404-0084",
1163
+ "date": "2024-04-18",
1164
+ "amount": 199.28,
1165
+ "category": "Food & Dining",
1166
+ "description": "Lunch at downtown cafe",
1167
+ "vendor": "Chipotle",
1168
+ "employee": "Alice Johnson",
1169
+ "department": "Marketing",
1170
+ "approved": true
1171
+ },
1172
+ {
1173
+ "id": "EXP-202404-0085",
1174
+ "date": "2024-04-18",
1175
+ "amount": 63.6,
1176
+ "category": "Office Supplies",
1177
+ "description": "Filing folders and labels",
1178
+ "vendor": "Adobe",
1179
+ "employee": "Emma Davis",
1180
+ "department": "Marketing",
1181
+ "approved": true
1182
+ },
1183
+ {
1184
+ "id": "EXP-202404-0160",
1185
+ "date": "2024-04-18",
1186
+ "amount": 330.6,
1187
+ "category": "Equipment",
1188
+ "description": "Monitor for home office",
1189
+ "vendor": "Acme Corp",
1190
+ "employee": "Iris Taylor",
1191
+ "department": "Finance",
1192
+ "approved": false
1193
+ },
1194
+ {
1195
+ "id": "EXP-202404-0050",
1196
+ "date": "2024-04-19",
1197
+ "amount": 145.1,
1198
+ "category": "Office Supplies",
1199
+ "description": "Filing folders and labels",
1200
+ "vendor": "Uber Business",
1201
+ "employee": "Liam Jackson",
1202
+ "department": "Marketing",
1203
+ "approved": false
1204
+ },
1205
+ {
1206
+ "id": "EXP-202404-0067",
1207
+ "date": "2024-04-19",
1208
+ "amount": 1631.33,
1209
+ "category": "Travel",
1210
+ "description": "Flight to regional office",
1211
+ "vendor": "Google Cloud",
1212
+ "employee": "Emma Davis",
1213
+ "department": "Sales",
1214
+ "approved": true
1215
+ },
1216
+ {
1217
+ "id": "EXP-202404-0171",
1218
+ "date": "2024-04-19",
1219
+ "amount": 376.73,
1220
+ "category": "Software",
1221
+ "description": "Project management subscription",
1222
+ "vendor": "AWS",
1223
+ "employee": "Kate Thomas",
1224
+ "department": "Engineering",
1225
+ "approved": true
1226
+ },
1227
+ {
1228
+ "id": "EXP-202404-0038",
1229
+ "date": "2024-04-20",
1230
+ "amount": 342.43,
1231
+ "category": "Travel",
1232
+ "description": "Conference accommodation",
1233
+ "vendor": "Uber Business",
1234
+ "employee": "Frank Miller",
1235
+ "department": "HR",
1236
+ "approved": false
1237
+ },
1238
+ {
1239
+ "id": "EXP-202404-0047",
1240
+ "date": "2024-04-20",
1241
+ "amount": 462.98,
1242
+ "category": "Software",
1243
+ "description": "Analytics platform fee",
1244
+ "vendor": "United Airlines",
1245
+ "employee": "Grace Wilson",
1246
+ "department": "HR",
1247
+ "approved": true
1248
+ },
1249
+ {
1250
+ "id": "EXP-202404-0049",
1251
+ "date": "2024-04-20",
1252
+ "amount": 104.83,
1253
+ "category": "Office Supplies",
1254
+ "description": "Whiteboard markers and erasers",
1255
+ "vendor": "AWS",
1256
+ "employee": "Bob Smith",
1257
+ "department": "Engineering",
1258
+ "approved": false
1259
+ },
1260
+ {
1261
+ "id": "EXP-202404-0117",
1262
+ "date": "2024-04-20",
1263
+ "amount": 52.03,
1264
+ "category": "Office Supplies",
1265
+ "description": "Notebooks and pens for team",
1266
+ "vendor": "Hilton",
1267
+ "employee": "Jack Anderson",
1268
+ "department": "Finance",
1269
+ "approved": true
1270
+ },
1271
+ {
1272
+ "id": "EXP-202404-0121",
1273
+ "date": "2024-04-20",
1274
+ "amount": 168.75,
1275
+ "category": "Office Supplies",
1276
+ "description": "Desk organizers and trays",
1277
+ "vendor": "Dell",
1278
+ "employee": "Grace Wilson",
1279
+ "department": "Marketing",
1280
+ "approved": true
1281
+ },
1282
+ {
1283
+ "id": "EXP-202404-0127",
1284
+ "date": "2024-04-20",
1285
+ "amount": 83.26,
1286
+ "category": "Office Supplies",
1287
+ "description": "Desk organizers and trays",
1288
+ "vendor": "Hilton",
1289
+ "employee": "Henry Moore",
1290
+ "department": "Engineering",
1291
+ "approved": true
1292
+ },
1293
+ {
1294
+ "id": "EXP-202404-0144",
1295
+ "date": "2024-04-20",
1296
+ "amount": 1466.01,
1297
+ "category": "Software",
1298
+ "description": "Monthly cloud hosting fees",
1299
+ "vendor": "Dell",
1300
+ "employee": "Emma Davis",
1301
+ "department": "Sales",
1302
+ "approved": true
1303
+ },
1304
+ {
1305
+ "id": "EXP-202404-0152",
1306
+ "date": "2024-04-20",
1307
+ "amount": 56.12,
1308
+ "category": "Office Supplies",
1309
+ "description": "Whiteboard markers and erasers",
1310
+ "vendor": "TechSupply",
1311
+ "employee": "Bob Smith",
1312
+ "department": "Operations",
1313
+ "approved": false
1314
+ },
1315
+ {
1316
+ "id": "EXP-202404-0109",
1317
+ "date": "2024-04-21",
1318
+ "amount": 1786.75,
1319
+ "category": "Equipment",
1320
+ "description": "New laptop for developer",
1321
+ "vendor": "Office Depot",
1322
+ "employee": "Kate Thomas",
1323
+ "department": "Finance",
1324
+ "approved": true
1325
+ },
1326
+ {
1327
+ "id": "EXP-202404-0114",
1328
+ "date": "2024-04-21",
1329
+ "amount": 82.73,
1330
+ "category": "Food & Dining",
1331
+ "description": "Coffee and pastries at morning meeting",
1332
+ "vendor": "Google Cloud",
1333
+ "employee": "Henry Moore",
1334
+ "department": "Marketing",
1335
+ "approved": true
1336
+ },
1337
+ {
1338
+ "id": "EXP-202404-0166",
1339
+ "date": "2024-04-21",
1340
+ "amount": 1857.42,
1341
+ "category": "Travel",
1342
+ "description": "Hotel for client conference",
1343
+ "vendor": "Whole Foods",
1344
+ "employee": "Carol Williams",
1345
+ "department": "Sales",
1346
+ "approved": true
1347
+ },
1348
+ {
1349
+ "id": "EXP-202404-0177",
1350
+ "date": "2024-04-21",
1351
+ "amount": 2229.52,
1352
+ "category": "Travel",
1353
+ "description": "Hotel for client conference",
1354
+ "vendor": "TechSupply",
1355
+ "employee": "Grace Wilson",
1356
+ "department": "Marketing",
1357
+ "approved": true
1358
+ },
1359
+ {
1360
+ "id": "EXP-202404-0035",
1361
+ "date": "2024-04-22",
1362
+ "amount": 830.11,
1363
+ "category": "Software",
1364
+ "description": "Annual software license renewal",
1365
+ "vendor": "Dell",
1366
+ "employee": "David Brown",
1367
+ "department": "Operations",
1368
+ "approved": true
1369
+ },
1370
+ {
1371
+ "id": "EXP-202404-0041",
1372
+ "date": "2024-04-22",
1373
+ "amount": 195.0,
1374
+ "category": "Transportation",
1375
+ "description": "Toll fees for highway travel",
1376
+ "vendor": "Marriott",
1377
+ "employee": "Kate Thomas",
1378
+ "department": "Sales",
1379
+ "approved": true
1380
+ },
1381
+ {
1382
+ "id": "EXP-202404-0053",
1383
+ "date": "2024-04-22",
1384
+ "amount": 29.65,
1385
+ "category": "Food & Dining",
1386
+ "description": "Business breakfast at hotel",
1387
+ "vendor": "Dell",
1388
+ "employee": "Jack Anderson",
1389
+ "department": "Engineering",
1390
+ "approved": true
1391
+ },
1392
+ {
1393
+ "id": "EXP-202404-0063",
1394
+ "date": "2024-04-22",
1395
+ "amount": 365.73,
1396
+ "category": "Transportation",
1397
+ "description": "Parking at client office building",
1398
+ "vendor": "Best Buy",
1399
+ "employee": "Carol Williams",
1400
+ "department": "Sales",
1401
+ "approved": true
1402
+ },
1403
+ {
1404
+ "id": "EXP-202404-0122",
1405
+ "date": "2024-04-22",
1406
+ "amount": 718.87,
1407
+ "category": "Software",
1408
+ "description": "Project management subscription",
1409
+ "vendor": "Starbucks",
1410
+ "employee": "Jack Anderson",
1411
+ "department": "Finance",
1412
+ "approved": true
1413
+ },
1414
+ {
1415
+ "id": "EXP-202404-0129",
1416
+ "date": "2024-04-22",
1417
+ "amount": 549.16,
1418
+ "category": "Software",
1419
+ "description": "Analytics platform fee",
1420
+ "vendor": "Whole Foods",
1421
+ "employee": "Carol Williams",
1422
+ "department": "Sales",
1423
+ "approved": true
1424
+ },
1425
+ {
1426
+ "id": "EXP-202404-0162",
1427
+ "date": "2024-04-22",
1428
+ "amount": 177.55,
1429
+ "category": "Office Supplies",
1430
+ "description": "Filing folders and labels",
1431
+ "vendor": "Dell",
1432
+ "employee": "Kate Thomas",
1433
+ "department": "Engineering",
1434
+ "approved": true
1435
+ },
1436
+ {
1437
+ "id": "EXP-202404-0066",
1438
+ "date": "2024-04-23",
1439
+ "amount": 16.33,
1440
+ "category": "Transportation",
1441
+ "description": "Uber to client meeting downtown",
1442
+ "vendor": "Best Buy",
1443
+ "employee": "Frank Miller",
1444
+ "department": "HR",
1445
+ "approved": true
1446
+ },
1447
+ {
1448
+ "id": "EXP-202404-0090",
1449
+ "date": "2024-04-23",
1450
+ "amount": 2400.05,
1451
+ "category": "Travel",
1452
+ "description": "Hotel for client conference",
1453
+ "vendor": "Zoom",
1454
+ "employee": "Alice Johnson",
1455
+ "department": "Operations",
1456
+ "approved": true
1457
+ },
1458
+ {
1459
+ "id": "EXP-202404-0123",
1460
+ "date": "2024-04-23",
1461
+ "amount": 958.36,
1462
+ "category": "Equipment",
1463
+ "description": "New laptop for developer",
1464
+ "vendor": "Office Depot",
1465
+ "employee": "Emma Davis",
1466
+ "department": "Operations",
1467
+ "approved": true
1468
+ },
1469
+ {
1470
+ "id": "EXP-202404-0018",
1471
+ "date": "2024-04-24",
1472
+ "amount": 811.35,
1473
+ "category": "Software",
1474
+ "description": "Analytics platform fee",
1475
+ "vendor": "Chipotle",
1476
+ "employee": "Grace Wilson",
1477
+ "department": "Operations",
1478
+ "approved": true
1479
+ },
1480
+ {
1481
+ "id": "EXP-202404-0045",
1482
+ "date": "2024-04-24",
1483
+ "amount": 1334.96,
1484
+ "category": "Travel",
1485
+ "description": "Hotel for client conference",
1486
+ "vendor": "Best Buy",
1487
+ "employee": "Jack Anderson",
1488
+ "department": "Sales",
1489
+ "approved": true
1490
+ },
1491
+ {
1492
+ "id": "EXP-202404-0070",
1493
+ "date": "2024-04-24",
1494
+ "amount": 2343.45,
1495
+ "category": "Travel",
1496
+ "description": "Conference accommodation",
1497
+ "vendor": "Best Buy",
1498
+ "employee": "Carol Williams",
1499
+ "department": "Engineering",
1500
+ "approved": true
1501
+ },
1502
+ {
1503
+ "id": "EXP-202404-0071",
1504
+ "date": "2024-04-24",
1505
+ "amount": 151.36,
1506
+ "category": "Office Supplies",
1507
+ "description": "Desk organizers and trays",
1508
+ "vendor": "Google Cloud",
1509
+ "employee": "Jack Anderson",
1510
+ "department": "HR",
1511
+ "approved": false
1512
+ },
1513
+ {
1514
+ "id": "EXP-202404-0076",
1515
+ "date": "2024-04-24",
1516
+ "amount": 238.51,
1517
+ "category": "Transportation",
1518
+ "description": "Parking at client office building",
1519
+ "vendor": "Marriott",
1520
+ "employee": "Henry Moore",
1521
+ "department": "Finance",
1522
+ "approved": true
1523
+ },
1524
+ {
1525
+ "id": "EXP-202404-0103",
1526
+ "date": "2024-04-24",
1527
+ "amount": 181.98,
1528
+ "category": "Food & Dining",
1529
+ "description": "Business breakfast at hotel",
1530
+ "vendor": "Starbucks",
1531
+ "employee": "David Brown",
1532
+ "department": "Marketing",
1533
+ "approved": false
1534
+ },
1535
+ {
1536
+ "id": "EXP-202404-0107",
1537
+ "date": "2024-04-24",
1538
+ "amount": 29.82,
1539
+ "category": "Office Supplies",
1540
+ "description": "Printer paper and ink cartridges",
1541
+ "vendor": "Amazon Business",
1542
+ "employee": "Grace Wilson",
1543
+ "department": "Operations",
1544
+ "approved": true
1545
+ },
1546
+ {
1547
+ "id": "EXP-202404-0111",
1548
+ "date": "2024-04-24",
1549
+ "amount": 112.43,
1550
+ "category": "Food & Dining",
1551
+ "description": "Coffee and pastries at morning meeting",
1552
+ "vendor": "Zoom",
1553
+ "employee": "Liam Jackson",
1554
+ "department": "HR",
1555
+ "approved": true
1556
+ },
1557
+ {
1558
+ "id": "EXP-202404-0125",
1559
+ "date": "2024-04-24",
1560
+ "amount": 244.96,
1561
+ "category": "Transportation",
1562
+ "description": "Lyft from airport to hotel",
1563
+ "vendor": "Slack",
1564
+ "employee": "David Brown",
1565
+ "department": "Finance",
1566
+ "approved": true
1567
+ },
1568
+ {
1569
+ "id": "EXP-202404-0014",
1570
+ "date": "2024-04-25",
1571
+ "amount": 1590.23,
1572
+ "category": "Travel",
1573
+ "description": "Flight to regional office",
1574
+ "vendor": "Office Depot",
1575
+ "employee": "Jack Anderson",
1576
+ "department": "Finance",
1577
+ "approved": false
1578
+ },
1579
+ {
1580
+ "id": "EXP-202404-0031",
1581
+ "date": "2024-04-25",
1582
+ "amount": 2010.15,
1583
+ "category": "Equipment",
1584
+ "description": "Monitor for home office",
1585
+ "vendor": "Office Depot",
1586
+ "employee": "Grace Wilson",
1587
+ "department": "Operations",
1588
+ "approved": false
1589
+ },
1590
+ {
1591
+ "id": "EXP-202404-0036",
1592
+ "date": "2024-04-25",
1593
+ "amount": 1953.4,
1594
+ "category": "Equipment",
1595
+ "description": "Keyboard and mouse replacement",
1596
+ "vendor": "Amazon Business",
1597
+ "employee": "Grace Wilson",
1598
+ "department": "Finance",
1599
+ "approved": true
1600
+ },
1601
+ {
1602
+ "id": "EXP-202404-0051",
1603
+ "date": "2024-04-25",
1604
+ "amount": 43.02,
1605
+ "category": "Food & Dining",
1606
+ "description": "Business breakfast at hotel",
1607
+ "vendor": "Dell",
1608
+ "employee": "Bob Smith",
1609
+ "department": "HR",
1610
+ "approved": false
1611
+ },
1612
+ {
1613
+ "id": "EXP-202404-0057",
1614
+ "date": "2024-04-25",
1615
+ "amount": 268.24,
1616
+ "category": "Software",
1617
+ "description": "Analytics platform fee",
1618
+ "vendor": "Office Depot",
1619
+ "employee": "Liam Jackson",
1620
+ "department": "Sales",
1621
+ "approved": true
1622
+ },
1623
+ {
1624
+ "id": "EXP-202404-0058",
1625
+ "date": "2024-04-25",
1626
+ "amount": 222.61,
1627
+ "category": "Travel",
1628
+ "description": "Hotel for client conference",
1629
+ "vendor": "Whole Foods",
1630
+ "employee": "Iris Taylor",
1631
+ "department": "Sales",
1632
+ "approved": false
1633
+ },
1634
+ {
1635
+ "id": "EXP-202404-0108",
1636
+ "date": "2024-04-25",
1637
+ "amount": 373.13,
1638
+ "category": "Transportation",
1639
+ "description": "Lyft from airport to hotel",
1640
+ "vendor": "Chipotle",
1641
+ "employee": "Iris Taylor",
1642
+ "department": "Finance",
1643
+ "approved": true
1644
+ },
1645
+ {
1646
+ "id": "EXP-202404-0145",
1647
+ "date": "2024-04-25",
1648
+ "amount": 2268.65,
1649
+ "category": "Equipment",
1650
+ "description": "New laptop for developer",
1651
+ "vendor": "Whole Foods",
1652
+ "employee": "Carol Williams",
1653
+ "department": "Sales",
1654
+ "approved": false
1655
+ },
1656
+ {
1657
+ "id": "EXP-202404-0147",
1658
+ "date": "2024-04-25",
1659
+ "amount": 1074.69,
1660
+ "category": "Software",
1661
+ "description": "Analytics platform fee",
1662
+ "vendor": "Hilton",
1663
+ "employee": "Carol Williams",
1664
+ "department": "Sales",
1665
+ "approved": true
1666
+ },
1667
+ {
1668
+ "id": "EXP-202404-0151",
1669
+ "date": "2024-04-25",
1670
+ "amount": 1282.46,
1671
+ "category": "Travel",
1672
+ "description": "Flight to regional office",
1673
+ "vendor": "Acme Corp",
1674
+ "employee": "David Brown",
1675
+ "department": "Sales",
1676
+ "approved": true
1677
+ },
1678
+ {
1679
+ "id": "EXP-202404-0020",
1680
+ "date": "2024-04-26",
1681
+ "amount": 391.08,
1682
+ "category": "Transportation",
1683
+ "description": "Uber to client meeting downtown",
1684
+ "vendor": "Marriott",
1685
+ "employee": "Grace Wilson",
1686
+ "department": "HR",
1687
+ "approved": true
1688
+ },
1689
+ {
1690
+ "id": "EXP-202404-0023",
1691
+ "date": "2024-04-26",
1692
+ "amount": 48.27,
1693
+ "category": "Food & Dining",
1694
+ "description": "Business breakfast at hotel",
1695
+ "vendor": "Acme Corp",
1696
+ "employee": "Kate Thomas",
1697
+ "department": "Engineering",
1698
+ "approved": true
1699
+ },
1700
+ {
1701
+ "id": "EXP-202404-0134",
1702
+ "date": "2024-04-26",
1703
+ "amount": 1124.6,
1704
+ "category": "Equipment",
1705
+ "description": "Webcam for video meetings",
1706
+ "vendor": "Adobe",
1707
+ "employee": "Iris Taylor",
1708
+ "department": "Sales",
1709
+ "approved": true
1710
+ },
1711
+ {
1712
+ "id": "EXP-202404-0172",
1713
+ "date": "2024-04-26",
1714
+ "amount": 311.07,
1715
+ "category": "Travel",
1716
+ "description": "Hotel for client conference",
1717
+ "vendor": "Staples",
1718
+ "employee": "Bob Smith",
1719
+ "department": "Sales",
1720
+ "approved": true
1721
+ },
1722
+ {
1723
+ "id": "EXP-202404-0174",
1724
+ "date": "2024-04-26",
1725
+ "amount": 114.92,
1726
+ "category": "Office Supplies",
1727
+ "description": "Whiteboard markers and erasers",
1728
+ "vendor": "Marriott",
1729
+ "employee": "Carol Williams",
1730
+ "department": "Finance",
1731
+ "approved": true
1732
+ },
1733
+ {
1734
+ "id": "EXP-202404-0033",
1735
+ "date": "2024-04-27",
1736
+ "amount": 42.29,
1737
+ "category": "Office Supplies",
1738
+ "description": "Printer paper and ink cartridges",
1739
+ "vendor": "Staples",
1740
+ "employee": "Grace Wilson",
1741
+ "department": "HR",
1742
+ "approved": true
1743
+ },
1744
+ {
1745
+ "id": "EXP-202404-0086",
1746
+ "date": "2024-04-27",
1747
+ "amount": 65.64,
1748
+ "category": "Software",
1749
+ "description": "Analytics platform fee",
1750
+ "vendor": "Starbucks",
1751
+ "employee": "Grace Wilson",
1752
+ "department": "HR",
1753
+ "approved": true
1754
+ },
1755
+ {
1756
+ "id": "EXP-202404-0159",
1757
+ "date": "2024-04-27",
1758
+ "amount": 2289.16,
1759
+ "category": "Equipment",
1760
+ "description": "Monitor for home office",
1761
+ "vendor": "Microsoft",
1762
+ "employee": "Liam Jackson",
1763
+ "department": "HR",
1764
+ "approved": false
1765
+ },
1766
+ {
1767
+ "id": "EXP-202404-0006",
1768
+ "date": "2024-04-28",
1769
+ "amount": 121.54,
1770
+ "category": "Office Supplies",
1771
+ "description": "Notebooks and pens for team",
1772
+ "vendor": "Slack",
1773
+ "employee": "Iris Taylor",
1774
+ "department": "Operations",
1775
+ "approved": true
1776
+ },
1777
+ {
1778
+ "id": "EXP-202404-0012",
1779
+ "date": "2024-04-28",
1780
+ "amount": 127.32,
1781
+ "category": "Food & Dining",
1782
+ "description": "Coffee and pastries at morning meeting",
1783
+ "vendor": "Acme Corp",
1784
+ "employee": "David Brown",
1785
+ "department": "Sales",
1786
+ "approved": true
1787
+ },
1788
+ {
1789
+ "id": "EXP-202404-0079",
1790
+ "date": "2024-04-28",
1791
+ "amount": 277.91,
1792
+ "category": "Equipment",
1793
+ "description": "Monitor for home office",
1794
+ "vendor": "Whole Foods",
1795
+ "employee": "Emma Davis",
1796
+ "department": "HR",
1797
+ "approved": false
1798
+ },
1799
+ {
1800
+ "id": "EXP-202404-0130",
1801
+ "date": "2024-04-28",
1802
+ "amount": 274.88,
1803
+ "category": "Travel",
1804
+ "description": "Extended stay for project",
1805
+ "vendor": "Starbucks",
1806
+ "employee": "Emma Davis",
1807
+ "department": "Marketing",
1808
+ "approved": false
1809
+ },
1810
+ {
1811
+ "id": "EXP-202404-0132",
1812
+ "date": "2024-04-28",
1813
+ "amount": 170.22,
1814
+ "category": "Food & Dining",
1815
+ "description": "Team lunch celebration",
1816
+ "vendor": "Whole Foods",
1817
+ "employee": "Iris Taylor",
1818
+ "department": "HR",
1819
+ "approved": false
1820
+ },
1821
+ {
1822
+ "id": "EXP-202404-0138",
1823
+ "date": "2024-04-28",
1824
+ "amount": 53.98,
1825
+ "category": "Food & Dining",
1826
+ "description": "Catering for quarterly review meeting",
1827
+ "vendor": "Starbucks",
1828
+ "employee": "David Brown",
1829
+ "department": "Engineering",
1830
+ "approved": true
1831
+ },
1832
+ {
1833
+ "id": "EXP-202404-0149",
1834
+ "date": "2024-04-28",
1835
+ "amount": 138.36,
1836
+ "category": "Office Supplies",
1837
+ "description": "Desk organizers and trays",
1838
+ "vendor": "Starbucks",
1839
+ "employee": "Carol Williams",
1840
+ "department": "Operations",
1841
+ "approved": true
1842
+ },
1843
+ {
1844
+ "id": "EXP-202404-0157",
1845
+ "date": "2024-04-28",
1846
+ "amount": 544.58,
1847
+ "category": "Software",
1848
+ "description": "Monthly cloud hosting fees",
1849
+ "vendor": "Hilton",
1850
+ "employee": "Carol Williams",
1851
+ "department": "Engineering",
1852
+ "approved": true
1853
+ },
1854
+ {
1855
+ "id": "EXP-202404-0039",
1856
+ "date": "2024-04-29",
1857
+ "amount": 118.04,
1858
+ "category": "Food & Dining",
1859
+ "description": "Catering for quarterly review meeting",
1860
+ "vendor": "Hilton",
1861
+ "employee": "David Brown",
1862
+ "department": "HR",
1863
+ "approved": false
1864
+ },
1865
+ {
1866
+ "id": "EXP-202404-0043",
1867
+ "date": "2024-04-29",
1868
+ "amount": 1971.28,
1869
+ "category": "Travel",
1870
+ "description": "Extended stay for project",
1871
+ "vendor": "Best Buy",
1872
+ "employee": "Henry Moore",
1873
+ "department": "Sales",
1874
+ "approved": false
1875
+ },
1876
+ {
1877
+ "id": "EXP-202404-0078",
1878
+ "date": "2024-04-29",
1879
+ "amount": 445.63,
1880
+ "category": "Software",
1881
+ "description": "Monthly cloud hosting fees",
1882
+ "vendor": "AWS",
1883
+ "employee": "Carol Williams",
1884
+ "department": "Sales",
1885
+ "approved": false
1886
+ },
1887
+ {
1888
+ "id": "EXP-202404-0089",
1889
+ "date": "2024-04-29",
1890
+ "amount": 152.94,
1891
+ "category": "Transportation",
1892
+ "description": "Uber to client meeting downtown",
1893
+ "vendor": "Whole Foods",
1894
+ "employee": "Alice Johnson",
1895
+ "department": "Engineering",
1896
+ "approved": true
1897
+ },
1898
+ {
1899
+ "id": "EXP-202404-0097",
1900
+ "date": "2024-04-29",
1901
+ "amount": 252.01,
1902
+ "category": "Transportation",
1903
+ "description": "Rental car for out of town meeting",
1904
+ "vendor": "AWS",
1905
+ "employee": "Iris Taylor",
1906
+ "department": "Engineering",
1907
+ "approved": false
1908
+ },
1909
+ {
1910
+ "id": "EXP-202404-0116",
1911
+ "date": "2024-04-29",
1912
+ "amount": 532.98,
1913
+ "category": "Equipment",
1914
+ "description": "New laptop for developer",
1915
+ "vendor": "United Airlines",
1916
+ "employee": "Grace Wilson",
1917
+ "department": "HR",
1918
+ "approved": true
1919
+ },
1920
+ {
1921
+ "id": "EXP-202404-0131",
1922
+ "date": "2024-04-29",
1923
+ "amount": 102.36,
1924
+ "category": "Food & Dining",
1925
+ "description": "Takeout for late night work session",
1926
+ "vendor": "Slack",
1927
+ "employee": "Frank Miller",
1928
+ "department": "Finance",
1929
+ "approved": false
1930
+ },
1931
+ {
1932
+ "id": "EXP-202404-0001",
1933
+ "date": "2024-04-30",
1934
+ "amount": 83.52,
1935
+ "category": "Office Supplies",
1936
+ "description": "Notebooks and pens for team",
1937
+ "vendor": "Microsoft",
1938
+ "employee": "Jack Anderson",
1939
+ "department": "Marketing",
1940
+ "approved": true
1941
+ },
1942
+ {
1943
+ "id": "EXP-202404-0003",
1944
+ "date": "2024-04-30",
1945
+ "amount": 314.86,
1946
+ "category": "Transportation",
1947
+ "description": "Parking at client office building",
1948
+ "vendor": "Google Cloud",
1949
+ "employee": "Frank Miller",
1950
+ "department": "HR",
1951
+ "approved": false
1952
+ },
1953
+ {
1954
+ "id": "EXP-202404-0095",
1955
+ "date": "2024-04-30",
1956
+ "amount": 1069.05,
1957
+ "category": "Travel",
1958
+ "description": "Extended stay for project",
1959
+ "vendor": "Amazon Business",
1960
+ "employee": "Kate Thomas",
1961
+ "department": "Engineering",
1962
+ "approved": true
1963
+ },
1964
+ {
1965
+ "id": "EXP-202404-0104",
1966
+ "date": "2024-04-30",
1967
+ "amount": 682.38,
1968
+ "category": "Software",
1969
+ "description": "Annual software license renewal",
1970
+ "vendor": "United Airlines",
1971
+ "employee": "Liam Jackson",
1972
+ "department": "Engineering",
1973
+ "approved": true
1974
+ },
1975
+ {
1976
+ "id": "EXP-202404-0148",
1977
+ "date": "2024-04-30",
1978
+ "amount": 205.65,
1979
+ "category": "Transportation",
1980
+ "description": "Gas for company vehicle",
1981
+ "vendor": "Hilton",
1982
+ "employee": "Emma Davis",
1983
+ "department": "Operations",
1984
+ "approved": true
1985
+ }
1986
+ ]
1987
+ }