-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest35.json
86 lines (86 loc) · 1.66 KB
/
manifest35.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
{
"_version": "1.17.0",
"sap.app": {
"id": "adaptivecard.embedded",
"type": "card",
"title": "Sample of an Adaptive Card with different Action styles",
"subTitle": "Sample of an Adaptive Card with different Action styles",
"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": [
"Adaptive",
"Card",
"Form",
"Sample",
"Styles",
"Actions"
]
}
},
"sap.card": {
"configuration": {
"actionHandlers": {
"submit": {
"url": "./action-styling.json",
"method": "GET"
}
}
},
"type": "AdaptiveCard",
"header": {
"title": "Board Meeting",
"subTitle": "Invitation",
"icon": {
"src": "sap-icon://appointment"
}
},
"content": {
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Please confirm your attendance",
"wrap": true,
"style": "heading"
},
{
"type": "FactSet",
"facts": [
{
"title": "From",
"value": "Emily Williams"
},
{
"title": "Date",
"value": "August 17, 3:00 PM"
},
{
"title": "Location",
"value": "9696 Plymouth Dr., East Lansing, MI 48823"
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"style": "positive",
"title": "Accept",
"data": "accept"
},
{
"type": "Action.Submit",
"title": "Decline",
"style": "destructive",
"data": "decline"
}
]
}
}
}