forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseed.json
More file actions
116 lines (116 loc) · 2.6 KB
/
Copy pathseed.json
File metadata and controls
116 lines (116 loc) · 2.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"cards": [
{
"id": "5tf3rmlcyg3",
"last4": "4242",
"expiry": "08/28",
"type": "Visa",
"color": "bg-blue-500",
"pin": "1234",
"expensePolicyId": "8r5c3m4n5o"
},
{
"id": "wr197z5ilg",
"last4": "1234",
"expiry": "03/29",
"type": "MasterCard",
"color": "bg-red-500",
"pin": "5678",
"expensePolicyId": "7f3b3c4d5e"
},
{
"id": "fA5b7c6d5e",
"last4": "5555",
"expiry": "11/27",
"type": "Visa",
"color": "bg-blue-500",
"pin": "9101",
"expensePolicyId": "9a8b7c6d5e"
}
],
"policies": [
{ "id": "7f3b3c4d5e", "type": "Marketing", "limit": 5000, "spent": 500 },
{ "id": "8r5c3m4n5o", "type": "Executive", "limit": 10000, "spent": 1000 },
{ "id": "9a8b7c6d5e", "type": "Engineering", "limit": 15000, "spent": 1500 }
],
"team": [
{
"id": "9g5h2j1k4l",
"name": "Alex Morgan",
"email": "alex@northwind.example",
"role": "Admin",
"team": "Executive"
},
{
"id": "1a2b3c4d5e",
"name": "Priya Raman",
"email": "priya@northwind.example",
"role": "Admin",
"team": "Marketing"
},
{
"id": "2b3c4d5e6f",
"name": "Maya Chen",
"email": "maya@northwind.example",
"role": "Assistant",
"team": "Executive"
},
{
"id": "3b3b5f6d1b",
"name": "Daniel Okafor",
"email": "daniel@northwind.example",
"role": "Member",
"team": "Marketing"
},
{
"id": "7g5h2j1k4l",
"name": "Lucas Martins",
"email": "lucas@northwind.example",
"role": "Member",
"team": "Engineering"
}
],
"transactions": [
{
"id": "t-1",
"title": "Google Ads",
"amount": -5000,
"date": "2026-05-28",
"policyId": "7f3b3c4d5e",
"cardId": "wr197z5ilg",
"status": "pending"
},
{
"id": "t-2",
"title": "AWS",
"amount": -10000,
"date": "2026-05-20",
"policyId": "9a8b7c6d5e",
"cardId": "fA5b7c6d5e",
"status": "pending"
},
{
"id": "t-3",
"title": "Microsoft 365",
"amount": -1000,
"date": "2026-05-12",
"policyId": "8r5c3m4n5o",
"cardId": "5tf3rmlcyg3",
"status": "pending"
},
{
"id": "t-4",
"title": "Delta Airlines",
"amount": -89.99,
"date": "2026-04-22",
"policyId": "8r5c3m4n5o",
"cardId": "5tf3rmlcyg3",
"note": {
"content": "SF Executive Offsite",
"userId": "9g5h2j1k4l",
"date": "2026-04-25"
},
"status": "approved"
}
]
}