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