JSON of Scrum Poker Adaptive card

In PowerAutomate add the value of the variable userStoryName in the second Textblock.
Notice the id acPollChoices of the choiceset.

{ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.0", "body": [ { "type": "ColumnSet", "columns": [ { "width": "stretch", "items": [ { "type": "TextBlock", "text": "What number do you poker for this user story?" }, { "type": "TextBlock", "text": "add variable userStoryName here" } ] } ] }, { "type": "Container", "items": [ { "type": "Input.ChoiceSet", "placeholder": "Select from these choices", "choices": [ { "title": "0.5", "value": "0.5" }, { "title": "1", "value": "1" }, { "title": "3", "value": "3" }, { "title": "5", "value": "5" }, { "title": "8", "value": "8" }, { "title": "13", "value": "13" } ], "id": "acPollChoices", "style": "expanded" } ] } ], "actions": [ { "type": "Action.Submit", "title": "Submit", "id": "btnSubmit" } ] }