-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
110 lines (110 loc) · 1.86 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
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
109
110
{
"customer":
{
"name": "Pedro Brancalhao",
"age": 24,
"initialValue": 1500,
"finalValue": 8560,
"phone": "45 9 9998 4444",
"email": "[email protected]"
}
,
"financialTitles": [
{
"vencidos": {
"id": 1,
"totalVencidos": 3,
"totalVencidosValue": 2260
},
"paraVencer": {
"id": 2,
"totalParaVencer": 1,
"totalParaVencerValue": 5000
},
"pagos": {
"id": 3,
"totalPagos": 2,
"totalPagosValue": 3800
}
}
],
"opportunities": [
{
"won":
{
"id": 1,
"totalWonOpportunities": 5,
"totalValue": 3000
}
,
"lost":
{
"id": 2,
"totalLostOpportunities": 2,
"totalLostValue": 1000
}
,
"open":
{
"id": 3,
"totalOpenOpportunities": 1,
"totalOpenValue": 500
}
,
"canceled":
{
"id": 4,
"totalCanceledOpportunities": 3,
"totalCanceledValue": 2348
}
}
],
"activities": [
{
"total":
{
"id": 1,
"totalActivities": 25
}
,
"late":
{
"id": 2,
"totalLateActivities": 1
}
,
"inProgress":
{
"id": 3,
"totalActivitiesInProgress": 0
}
,
"waiting":
{
"id": 4,
"totalWaitingActivities": 3
}
,
"completed":
{
"id": 5,
"totalCompletedActivities": 21
}
}
],
"creditLimit": [
{
"granted":
{
"id": 1,
"totalGrantedValue": 15000
}
,
"avaliable":
{
"id": 2,
"totalAvaliableValue": 5000
}
}
]
}