Hi @mel_ ,
Please try this
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Data Service Help Desk",
"wrap": true,
"weight": "Bolder",
"size": "Large",
"fontType": "Default",
"style": "heading",
"color": "Dark"
},
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Ticket Request Completion: Review Solution []"
},
{
"type": "TextBlock",
"text": "Requestor:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Email:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Department:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Request Date:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Type of Request:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Description:",
"wrap": true,
"size": "Small"
},
{
"type": "TextBlock",
"text": "Resolution:",
"wrap": true,
"size": "Small"
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Yes",
"value": "Yes"
},
{
"title": "No",
"value": "No"
}
],
"placeholder": "Please indicate 'Yes' or 'No'",
"label": "Does this solution meet your expectations",
"isRequired": true,
"spacing": "Large",
"errorMessage": "Please indicate 'Yes' or 'No'.",
"id": "1"
},
{
"type": "Input.Text",
"placeholder": "Please input your comments (if any)",
"label": "Comments",
"isMultiline": true,
"id": "2"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
Best Regards,
Wearsky