{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "TextBlock",
            "size": "Large",
            "text": "New Issue"
        },
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "items": [
                        {
                            "type": "TextBlock",
                            "text": "${title}",
                            "wrap": true
                        },
                        {
                            "type": "TextBlock",
                            "text": "${content}",
                            "weight": "Bolder",
                            "wrap": true
                        }
                    ]
                }
            ]
        }
    ],
    "actions": [
        {
            "type": "Action.OpenUrl",
            "title": "Go To Issue",
            "url": "${link}",
            "style": "positive"
        },
        {
            "type": "Action.ShowCard",
            "title": "Close Issue",
            "card": {
                "type": "AdaptiveCard",
                "body": [
                ],
                "actions": [
                    {
                        "type": "Action.Submit",
                        "title": "Confirm",
                        "data": {
                            "action": "testActionType",
                            "issueId": "${issueId}",
                            "projectId": "${projectId}",
                            "subscriptionId": "${subscriptionId}"
                        }
                    }
                ]
            }
        }
    ],
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.2"
}