-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.example.json
More file actions
54 lines (53 loc) · 1.24 KB
/
db.example.json
File metadata and controls
54 lines (53 loc) · 1.24 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
{
"expenses": [
{
"id": 1,
"userId": 2,
"categoryId": 3,
"description": "some description",
"value": 123.45,
"isFixed": true,
"dueDate": "2021-12-25",
"expenseType": "E",
"expenseState": "A"
},
{
"id": 2,
"userId": 2,
"categoryId": 3,
"description": "some description",
"value": 123.45,
"isFixed": true,
"dueDate": "2021-12-25",
"expenseType": "E",
"expenseState": "A"
},
{
"id": 3,
"userId": 2,
"categoryId": 3,
"description": "some description",
"value": 123.45,
"isFixed": true,
"dueDate": "2021-12-25",
"expenseType": "E",
"expenseState": "A"
}
],
"categories": [
{
"id": 4,
"userId": 2,
"name": "Contas Mensais",
"state": "A",
"type": "E"
},
{
"id": 5,
"userId": 3,
"name": "Google Pay",
"state": "A",
"type": "E"
}
]
}