Skip to content

Instantly share code, notes, and snippets.

@Imari91
Created August 15, 2020 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Imari91/dca983d4fde348a0fbe5e7b53ddfcb5a to your computer and use it in GitHub Desktop.
Save Imari91/dca983d4fde348a0fbe5e7b53ddfcb5a to your computer and use it in GitHub Desktop.
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "Report a message",
"weight": "Bolder",
"size": "Medium",
"color": "Attention",
"fontType": "Default"
},
{
"type": "TextBlock",
"text": "Help us understand the problem. What's wrong with this message?",
"isSubtle": true,
"wrap": true
},
{
"choices": [
{
"title": "Seems to be spam",
"value": "spam"
},
{
"title": "intentions contrary to the organization",
"value": "against"
},
{
"title": "It's inappropriate or discriminatory ",
"value": "discriminatory"
}
],
"placeholder": "Select an option",
"type": "Input.ChoiceSet",
"id": "selection"
},
{
"type": "TextBlock",
"text": "Tell us more"
},
{
"type": "Input.Text",
"id": "comments",
"style": "Tel",
"spacing": "None",
"placeholder": "Comments",
"isMultiline": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment