-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest23.json
129 lines (129 loc) · 3 KB
/
manifest23.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"_version": "1.14.0",
"sap.app": {
"id": "card.explorer.numeric.list.card",
"type": "card",
"title": "Sample of a List with Numeric Header",
"subTitle": "Sample of a List with Numeric Header",
"applicationVersion": {
"version": "1.0.0"
},
"shortTitle": "A short title for this Card",
"info": "Additional information about this Card",
"description": "A long description for this Card",
"tags": {
"keywords": [
"List",
"Numeric",
"Card",
"Sample"
]
}
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "sap-icon://list"
}
},
"sap.card": {
"type": "List",
"header": {
"type": "Numeric",
"data": {
"json": {
"kpiInfos": {
"kpi": {
"number": "200",
"unit": "K",
"trend": "Up",
"state": "Critical",
"target": {
"number": 250,
"unit": "K"
},
"deviation": {
"number": 25
},
"details": "Q1, 2019"
}
}
},
"path": "/kpiInfos/kpi"
},
"title": "Top 5 Products Sales",
"subTitle": "By Average Price",
"unitOfMeasurement": "EUR",
"mainIndicator": {
"number": "{number}",
"unit": "{unit}",
"trend": "{trend}",
"state": "{state}"
},
"sideIndicators": [
{
"title": "Target",
"number": "{target/number}",
"unit": "{target/unit}"
},
{
"title": "Deviation",
"number": "{deviation/number}",
"unit": "%"
}
],
"details": "{details}"
},
"content": {
"data": {
"json": [{
"Name": "Comfort Easy",
"Description": "32 GB Digital Assistant with high-resolution color screen",
"Sales": "150",
"State": "Warning",
"ShowStateIcon": true
},
{
"Name": "ITelO Vault",
"Description": "Digital Organizer with State-of-the-Art Storage Encryption",
"Sales": "540",
"State": "Success",
"ShowStateIcon": true
},
{
"Name": "Notebook Professional 15",
"Description": "Notebook Professional 15 with 2,80 GHz quad core, 15\" Multitouch LCD, 8 GB DDR3 RAM, 500 GB SSD - DVD-Writer (DVD-R/+R/-RW/-RAM),Windows 8 Pro",
"Sales": "350",
"State": "Success",
"ShowStateIcon": true
},
{
"Name": "Ergo Screen E-I",
"Description": "Optimum Hi-Resolution max. 1920 x 1080 @ 85Hz, Dot Pitch: 0.27mm",
"Sales": "100",
"State": "Error",
"ShowStateIcon": true,
"CustomStateIcon": "sap-icon://warning2"
},
{
"Name": "Laser Professional Eco",
"Description": "Print 2400 dpi image quality color documents at speeds of up to 32 ppm (color) or 36 ppm (monochrome), letter/A4. Powerful 500 MHz processor, 512MB of memory",
"Sales": "200",
"State": "Warning",
"ShowStateIcon": true
}
]
},
"item": {
"title": "{Name}",
"description": "{Description}",
"info": {
"value": "{Sales} K",
"state": "{State}",
"showStateIcon": "{ShowStateIcon}",
"customStateIcon": "{CustomStateIcon}"
}
}
}
}
}