-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest28.json
61 lines (61 loc) · 1.17 KB
/
manifest28.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
{
"_version": "1.15.0",
"sap.app": {
"id": "card.explorer.filter.agenda.card",
"type": "card",
"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"
},
"sap.card": {
"type": "List",
"configuration": {
"filters": {
"dateTimeRange": {
"type": "DateRange",
"value": {
"option": "dateTimeRange",
"values": [
"2023-02-07T10:00:00.000",
"2023-02-07T17:45:00.000"
]
},
"options": [
"today",
"dateTime",
"dateTimeRange",
"fromDateTime",
"toDateTime"
],
"label": "Activity period"
}
}
},
"header": {
"title": "Agenda"
},
"content": {
"data": {
"request": {
"url": "/agenda",
"parameters": {
"startDate": "{filters>/dateTimeRange/range/start}",
"endDate": "{filters>/dateTimeRange/range/end}"
}
}
},
"item": {
"description": "{= format.dateTime(${Time}, {format: 'yMMMdHHmm'}) }",
"title": {
"value": "{Title}"
},
"icon": {
"src": "{Icon}"
}
}
}
}
}