
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [
{
"type": "TextBlock",
"text": "Please select at least two options:",
"wrap": true
},
{
"type": "Input.ChoiceSet",
"id": "choiceSet",
"isMultiSelect": true,
"style": "expanded",
"choices": [
{
"title": "Option 1",
"value": "1"
},
{
"title": "Option 2",
"value": "2"
},
{
"title": "Option 3",
"value": "3"
},
{
"title": "Option 4",
"value": "4"
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"data": {
"minSelection": 2
}
}
]
}