-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest6.json
83 lines (83 loc) · 1.89 KB
/
manifest6.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
{
"_version": "1.59.0",
"sap.app": {
"id": "card.explorer.format.dateTime",
"type": "card",
"title": "Sample for DateTime Formatters",
"subTitle": "Sample for DateTime Formatters",
"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": [
"Date",
"Time",
"Formatter",
"Card",
"Sample"
]
}
},
"sap.card": {
"type": "List",
"header": {
"title": "Orders in the Interval {= format.dateTime(['2020-05-05T00:00:00.000Z', Date.now()], { interval: true, style: 'short' }) }",
"icon": {
"src": "sap-icon://desktop-mobile"
},
"status": {
"text": "4 of 5"
}
},
"content": {
"data": {
"json": [
{
"Name": "Keyboard and Mouse",
"Image": "sap-icon://keyboard-and-mouse",
"Price": 155,
"Created": "/Date(1600430944000)/"
},
{
"Name": "ITelO Vault",
"Image": "sap-icon://shield",
"Price": 30,
"Created": 1600430944000
},
{
"Name": "Notebook Professional 15",
"Image": "sap-icon://laptop",
"Price": 30,
"Created": "Fri Sep 18 2020 03:24:00 GMT+0200 (Eastern European Standard Time)"
},
{
"Name": "Ergo Screen E-I",
"Image": "sap-icon://desktop-mobile",
"Created": "Sun May 2 2021 03:24:00 GMT+0200 (Eastern European Standard Time)",
"Price": 69
},
{
"Name": "Laser Professional Eco",
"Image": "sap-icon://keyboard-and-mouse",
"Created": "2020-08-17T01:24:00.000Z",
"Price": 40
}
]
},
"maxItems": 4,
"item": {
"title": "{Name}",
"description": "Created on {= format.dateTime(${Created}, { style: 'short' }) }",
"icon": {
"src": "{Image}"
},
"info": {
"value": "{Price}$"
}
}
}
}
}