Created
June 27, 2018 15:40
-
-
Save kenjosling/c972f66054b418bcba0e1cbd5bebd11b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json", | |
"type": "AdaptiveCard", | |
"version": "1.0", | |
"body": [ | |
{ | |
"type": "Container", | |
"items": [ | |
{ | |
"type": "TextBlock", | |
"text": "%BotName%", | |
"weight": "bolder", | |
"size": "medium" | |
}, | |
{ | |
"type": "ColumnSet", | |
"columns": [ | |
{ | |
"type": "Column", | |
"width": "auto", | |
"items": [ | |
{ | |
"type": "Image", | |
"url": "%IconUrl", | |
"size": "small", | |
"style": "person" | |
} | |
] | |
}, | |
{ | |
"type": "Column", | |
"width": "stretch", | |
"items": [ | |
{ | |
"type": "TextBlock", | |
"text": "%CompanyName%", | |
"weight": "bolder", | |
"wrap": true | |
}, | |
{ | |
"type": "TextBlock", | |
"spacing": "none", | |
"text": "Version %BotVersion%", | |
"isSubtle": true, | |
"wrap": true | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"type": "Container", | |
"items": [ | |
{ | |
"type": "TextBlock", | |
"text": "We hope you enjoy playing with this prototype. Now, please be a sport and let us know what you think", | |
"wrap": true | |
}, | |
{ | |
"type": "Input.Text", | |
"id": "comments", | |
"placeholder": "Here's my feedback...", | |
"isMultiline": "true", | |
"maxLength": "120" | |
} | |
] | |
} | |
], | |
"actions": [ | |
{ | |
"type": "Action.Submit", | |
"title": "Share My Feedback", | |
"data": { "choice": "Submit.Feedback"} | |
}, | |
{ | |
"type": "Action.OpenUrl", | |
"title": "View User Guide", | |
"url": "%UserGuideUrl%" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment