{ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.2", "body": [ { "type": "Container", "items": [ { "type": "Input.Text", "placeholder": "Name", "id": "merchantName", "value": "", "spacing": "medium" }, { "type": "TextBlock", "text": "Merchant required", "separator": false, "size": "Small", "isVisible": false, "id": "merchantRequired", "spacing": "none", "weight": "Lighter", "color": "Attention" }, { "type": "Input.ChoiceSet", "choices": [ { "title": "India", "value": "India" } ], "id": "country", "value": "India", "spacing": "medium" } ] } ] }