View sourcecode

The following files exists in this folder. Click to view.

Corre3.json

39 lines ASCII Unix (LF)
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
{
    "accounts": [
        {
            "name": "Personal account",
            "accountid": 1,
            "active": true,
            "transactions": [
                "deposit",
                "2025-12-13",
                1000,
                "transfer",
                "2025-12-13",
                -500,
                "withdraw",
                "2025-12-13",
                -100,
                "deposit",
                "2025-12-13",
                10000,
                "deposit",
                "2025-12-13",
                1000000,
                "withdraw",
                "2025-12-13",
                -1000000
            ]
        },
        {
            "name": "Sparkonto",
            "accountid": 2,
            "active": true,
            "transactions": [
                "transfer",
                "2025-12-13",
                500
            ]
        }
    ]
}