Hi @Anonymous ,
Below is the schema that I used to configured:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.2",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"weight": "Bolder",
"size": "Medium",
"wrap": true,
"style": "heading",
"text": "Someone need your help!"
},
{
"type": "TextBlock",
"text": "@{triggerBody()['text']}",
"isSubtle": true,
"wrap": true
}
]
}
]
},
{
"type": "Input.Text",
"placeholder": "Reply here...",
"label": "Required",
"isRequired": true,
"errorMessage": "This field cannot leave blank!",
"id": "txtReplyId"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"associatedInputs": "auto"
}
]
}
