-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.json
More file actions
108 lines (108 loc) · 2.61 KB
/
Copy pathbootstrap.json
File metadata and controls
108 lines (108 loc) · 2.61 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"title": "Test org",
"description": "Random description",
"OIB": 1234567895,
"IBAN": 35353543,
"address": "Street 14",
"taxpayer": false,
"users": [
{
"email": "markymark@example.com",
"firstName": "Marky",
"lastName": "Mark",
"password": "1234"
},
{
"email": "antyant@example.com",
"firstName": "Anty",
"lastName": "Ant",
"password": "5678"
}
],
"budgets": [
{
"default": true,
"title": "Default budget",
"budgetItems": [
{
"position": "def 1",
"description": "Anything",
"amount": 10,
"orders": [
{
"identificator": "random identificator 1",
"dateReceived": "2016-01-01",
"type": "ware",
"orderItems": [
{
"title": "Track thing",
"unitOfMeasure": "meter",
"quantity": 100,
"price": 88
},
{
"title": "Glue",
"unitOfMeasure": "liter",
"quantity": 1,
"price": 200
},
{
"title": "Marker",
"unitOfMeasure": "piece",
"quantity": 3,
"price": 8
}
]
},
{
"identificator": "random indentificator 2",
"dateReceived": "2016-01-01",
"type": "service",
"orderItems": [
{
"title": "Estimate",
"unitOfMeasure": "hour",
"quantity": 2,
"price": 250
},
{
"title": "Painting",
"unitOfMeasure": "hour",
"quantity": 8,
"price": 200
},
{
"title": "Color",
"unitOfMeasure": "liter",
"quantity": 10,
"price": 90
}
]
}
]
},
{
"position": "defaultno 2",
"description": "desc 2",
"amount": 20
}
]
},
{
"default": false,
"title": "Some other budget",
"budgetItems": [
{
"position": "non default 1",
"description": "One One One",
"amount": 111
},
{
"position": "Non default 2",
"description": "Two Two Two",
"amount": 222
}
]
}
]
}