-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest21.json
107 lines (107 loc) · 2.27 KB
/
manifest21.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
{
"_version": "1.14.0",
"sap.app": {
"id": "card.explorer.attributes.list.card",
"type": "card",
"title": "Sample of a List with Attributes",
"subTitle": "Sample of a List with Attributes",
"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",
"Attributes",
"Card",
"Sample"
]
}
},
"sap.ui": {
"technology": "UI5",
"icons": {
"icon": "sap-icon://list"
}
},
"sap.card": {
"type": "List",
"header": {
"title": "Notebooks"
},
"content": {
"data": {
"json": [
{
"Name": "Notebook Basic 15",
"Availability": "Out of stock",
"AvailabilityState": "Error",
"Processor": "2,80 GHz quad core",
"Monitor": "15\" LCD",
"RAM": "4 GB DDR3 RAM",
"HHD": "500 GB Hard Disc",
"OS": "Windows 8 Pro",
"OSState": "Success",
"OSStateShowStateIcon": true
},
{
"Name": "Notebook Basic 17",
"Availability": "Available",
"AvailabilityState": "Success",
"Processor": "2,80 GHz quad core",
"Monitor": "17\" LCD",
"RAM": "4 GB DDR3 RAM",
"HHD": "500 GB Hard Disc",
"OS": "Windows 8 Pro",
"OSState": "Success",
"OSStateShowStateIcon": true
},
{
"Name": "Notebook Basic 19",
"Availability": "Only 2 left",
"AvailabilityState": "Warning",
"Processor": "2,80 GHz quad core",
"Monitor": "18\" LCD",
"RAM": "4 GB DDR3 RAM",
"HHD": "1000 GB Hard Disc",
"HHDState": "Success",
"OS": "Windows 8 Pro",
"OSState": "Success",
"OSStateShowStateIcon": true
}
]
},
"maxItems": 3,
"item": {
"title": "{Name}",
"info": {
"value": "{Availability}",
"state": "{AvailabilityState}"
},
"attributesLayoutType": "TwoColumns",
"attributes": [
{
"value": "{Processor}"
},
{
"value": "{Monitor}"
},
{
"value": "{RAM}"
},
{
"value": "{HHD}",
"state": "{HHDState}"
},
{
"value": "{OS}",
"state": "{OSState}",
"showStateIcon": "{OSStateShowStateIcon}"
}
]
}
}
}
}