-
Notifications
You must be signed in to change notification settings - Fork 563
/
Copy pathCalendarReminder.json
66 lines (66 loc) · 1.25 KB
/
CalendarReminder.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
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"speak": "<s>Your meeting about \"Adaptive Card design session\"<break strength='weak'/> is starting at 12:30pm</s><s>Do you want to snooze <break strength='weak'/> or do you want to send a late notification to the attendees?</s>",
"body": [
{
"type": "TextBlock",
"text": "Adaptive Card design session",
"size": "large",
"weight": "bolder",
"wrap": true,
"style": "heading"
},
{
"type": "TextBlock",
"text": "Conf Room 112/3377 (10)",
"isSubtle": true,
"wrap": true
},
{
"type": "TextBlock",
"text": "12:30 PM - 1:30 PM",
"isSubtle": true,
"spacing": "none",
"wrap": true
},
{
"type": "Input.ChoiceSet",
"id": "snooze",
"label": "Snooze for",
"style": "compact",
"value": "5",
"choices": [
{
"title": "5 minutes",
"value": "5"
},
{
"title": "15 minutes",
"value": "15"
},
{
"title": "30 minutes",
"value": "30"
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Snooze",
"data": {
"x": "snooze"
}
},
{
"type": "Action.Submit",
"title": "I'll be late",
"data": {
"x": "late"
}
}
]
}