Hello,
Is there a way to provide array to $data property, or repeat items, when using power automate to post an adaptive card to teams channel? I'm using "Post your own adaptive card as the Flow bot to a channel" action with message:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"$data": [
{ "name": "Matt" },
{ "name": "David" },
{ "name": "Thomas" }
],
"text": "${name}"
}
]
}
]
}
I only get this in teams channel chat.

I expected the same behavior as in https://adaptivecards.io/designer/
