-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadaptive-card-template.json
85 lines (85 loc) · 2.77 KB
/
adaptive-card-template.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
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "We need your feedback",
"wrap": true,
"fontType": "Default",
"size": "Large",
"weight": "Bolder",
"color": "Attention",
"isSubtle": false
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "As a maker of Power Apps, we really value your feedback, and as part of our commitment to continually improve our service, we would appreciate it if you could let us know how we are doing? What can we do better, what are we doing well and what do you need?",
"wrap": true,
"spacing": "Large",
"horizontalAlignment": "Left",
"fontType": "Default",
"size": "Medium",
"color": "Dark",
"isSubtle": false
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Please provide your feedback below:",
"wrap": true
}
]
}
]
},
{
"type": "Input.Text",
"isMultiline": true,
"id": "makerFeedback"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
]
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "Input.Toggle",
"title": "Don't ask again",
"id": "makerOptOut",
"value": "false"
}
]
}
]
}
]
}