Spaces:
Running on Zero
Running on Zero
File size: 1,323 Bytes
e62015b | 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 | {
"financial_institution": {
"name": "verbatim-string",
"address": "verbatim-string",
"phone": "phone-number",
"website": "url"
},
"account_holder": {
"name": "verbatim-string",
"address": "verbatim-string"
},
"account": {
"type": "verbatim-string",
"number": "verbatim-string",
"branch_number": "verbatim-string",
"transit_number": "verbatim-string",
"routing_number": "verbatim-string",
"iban": "iban",
"bic": "bic"
},
"statement_period": {
"start_date": "date",
"end_date": "date"
},
"summary": {
"opening_balance": "number",
"total_credits": "number",
"total_debits": "number",
"total_fees": "number",
"total_interest": "number",
"closing_balance": "number",
"currency": "currency"
},
"transaction_count": "integer",
"transactions": [
{
"transaction_date": "date",
"posting_date": "date",
"description": "verbatim-string",
"reference_number": "verbatim-string",
"category": [
"deposit",
"withdrawal",
"transfer",
"payment",
"purchase",
"fee",
"interest",
"refund",
"other"
],
"debit": "number",
"credit": "number",
"balance": "number",
"currency": "currency"
}
]
}
|