-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcheckbook_users.json
86 lines (86 loc) · 2.48 KB
/
checkbook_users.json
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
[
{
"users": [
{
"user_id": "000",
"first_name": "Testy",
"last_name": "McTestcase",
"blah": "blah, blah",
"user_since": "2019-01-01"
},
{
"user_id": "001",
"first_name": "Owen",
"last_name": "Lotts",
"blah": "blah, blah",
"user_file_name": "checkbook_user_001.json"
},
{
"user_id": "002",
"first_name": "Bob",
"last_name": "Pabaloobop",
"blah": "blah, blah",
"user_file_name": "checkbook_user_002.json"
}
],
"accounts": [
{
"acct_id": "0",
"acct_type": "Testing",
"acct_ref_name": "Test",
"user_id": "000"
},
{
"acct_id": "1000151001725",
"acct_type": "Checking",
"acct_ref_name": "Main",
"user_id": "001"
},
{
"acct_id": "2000151001834",
"acct_type": "Savings",
"acct_ref_name": "Rainy Day",
"user_id": "001"
},
{
"acct_id": "1000151001572",
"acct_type": "Checking",
"acct_ref_name": "Bills",
"user_id": "001"
},
{
"acct_id": "9000151001001",
"acct_type": "Embezzling",
"acct_ref_name": "Hustle",
"user_id": "001"
},
{
"acct_id": "1000151002725",
"acct_type": "Checking",
"acct_ref_name": "Primary",
"user_id": "002"
},
{
"acct_id": "2000151002521",
"acct_type": "Savings",
"acct_ref_name": "Rainy Day",
"user_id": "002"
},
{
"acct_id": "2000151002309",
"acct_type": "Savings",
"acct_ref_name": "Rainier Day",
"user_id": "002"
},
{
"acct_id": "8000151002774",
"acct_type": "Laundering",
"acct_ref_name": "Hustle",
"user_id": "002"
}
],
"transactions": [
...
]
}
]