-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
73 lines (73 loc) · 1.46 KB
/
db.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
{
"users": [
{
"id": 1,
"email": "[email protected]",
"password": "12345678",
"name": "Администратор"
}
],
"bill": {
"value": 100000,
"currency": "RUB"
},
"categories": [
{
"name": "Дом",
"capacity": 15000,
"id": 1
},
{
"name": "Еда",
"capacity": 10000,
"id": 2
},
{
"id": 3,
"name": "Машина",
"capacity": 7000
}
],
"events": [
{
"id": 1,
"type": "income",
"amount": 1250,
"category": 2,
"date": "12.06.2017 19:49:02",
"description": "Подарили еду в гостях"
},
{
"id": 2,
"type": "outcome",
"amount": 1300,
"category": 1,
"date": "13.06.2017 19:49:02",
"description": "Купил посудомоечную машину"
},
{
"type": "income",
"amount": 1480,
"category": 2,
"date": "17.06.2017 14:00:48",
"id": 3,
"description": "Поход в окей с баллами. Бесплатная еда"
},
{
"type": "outcome",
"amount": 2470,
"category": 2,
"date": "17.06.2017 14:00:58",
"id": 4,
"description": "Закупка на неделю"
},
{
"type": "outcome",
"amount": 4000,
"category": 3,
"date": "10.06.2017 14:01:58",
"id": 5,
"description": "Заправка + проход ТО"
}
]
}