Help! I keep getting error messages when trying to run this flow. I used https://adaptivecards.io/designer/ to create it.
Error:
BadRequest. The request failed. Error code: 'InvalidJsonInBotAdaptiveCard'. Error Message: 'Microsoft.Azure.ProcessSimple.Data.Entities.Exceptions.ProcessSimpleDataException: The specified Teams flowbot adaptive card request is missing or invalid. The tracking Id is '{0}'. ---> Newtonsoft.Json.JsonReaderException: Invalid property identifier character: <. Path 'body[1].text', line 21, position 14. at Newtonsoft.Json.JsonTextReader.ParseProperty() at Newtonsoft.Json.Linq.JContainer.ReadContentFrom(JsonReader r, JsonLoadSettings settings) at Newtonsoft.Json.Linq.JContainer.ReadTokenFrom(JsonReader reader, JsonLoadSettings options) at Newtonsoft.Json.Linq.JObject.Load(JsonReader reader, JsonLoadSettings settings) at Newtonsoft.Json.Linq.JObject.Parse(String json, JsonLoadSettings settings) at Microsoft.Azure.ProcessSimple.Data.Components.AdaptiveCards.AdaptiveCardBuilder.DeserializeAdaptiveCard(String serializedAdaptiveCard, RequestIdentity requestor, CultureInfo cultureInfo, BotAdaptiveCardAtMentions atMentions) --- End of inner exception stack trace --- at Microsoft.Azure.ProcessSimple.Data.Components.AdaptiveCards.AdaptiveCardBuilder.DeserializeAdaptiveCard(String serializedAdaptiveCard, RequestIdentity requestor, CultureInfo cultureInfo, BotAdaptiveCardAtMentions atMentions) at Microsoft.Azure.ProcessSimple.Web.Common.Validation.BotAdaptiveCard(String card, RequestIdentity senderRequestIdentity)'.
JSON for adaptive card:

{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "Application Request",
"wrap": true,
"id": "title",
"fontType": "Monospace",
"size": "Large",
"weight": "Bolder",
"isSubtle": true,
"style": "default"
},
{
"type": "TextBlock",
"text": "New comment from: <at>@{triggerBody()['text_2']}</at> in
Application Request<br>",
@{join(body('Select'), ' ')} @{triggerBody()['text_1']} ,
"wrap": true,
"id": "message"
},
{
"type": "Input.Text",
"placeholder": "Type your response here",
"id": "response",
"maxLength": 0,
"isMultiline": true,
"separator": true
},
{
"type": "ActionSet",
"separator": true,
"id": "actions",
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"id": "submit",
"style": "positive"
},
{
"type": "Action.OpenUrl",
"title": "Go to the Application Request tool",
"url": "https://apps.powerapps.com/play/e/default-2567b4c1-b0ed-40f5-aee3-58d7c5f3e2b2/a/80cbaef5-254b-4af1-a240-c362137d452e?tenantId=2567b4c1-b0ed-40f5-aee3-58d7c5f3e2b2",
"id": "url",
"style": "positive"
}
]
}
]
}