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