{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.6",
    "body": [
        {
            "type": "Container",
            "$when": "${$host.widgetSize == \"small\"}",
            "items": [
                {
                    "type": "Container",
                    "verticalContentAlignment": "Top",
                    "$when": "${$host.widgetSize == \"small\"}",
                    "minHeight": "3px"
                },
                {
                    "type": "ColumnSet",
                    "$when": "${$host.widgetSize == \"small\"}",
                    "columns": [
                        {
                            "type": "Column",
                            "width": "50px",
                            "items": [
                                {
                                    "type": "ImageSet",
                                    "images": [
                                        {
                                            "type": "Image",
                                            "size": "Medium",
                                            "url": "${icon}",
                                            "horizontalAlignment": "Center",
                                            "spacing": "ExtraLarge"
                                        }
                                    ],
                                    "horizontalAlignment": "Center",
                                    "height": "stretch",
                                    "spacing": "Medium"
                                }
                            ],
                            "verticalContentAlignment": "Center"
                        },
                        {
                            "type": "Column",
                            "width": "stretch",
                            "items": [
                                {
                                    "type": "TextBlock",
                                    "text": "${message}",
                                    "size": "Small",
                                    "wrap": true,
                                    "horizontalAlignment": "Center"
                                }
                            ]
                        }
                    ]
                },
                {
                    "type": "Container",
                    "verticalContentAlignment": "Top",
                    "$when": "${$host.widgetSize == \"small\"}",
                    "minHeight": "3px"
                }
            ],
            "selectAction": {
                "type": "Action.OpenUrl",
                "url": "${launchLink}"
            }
        },
        {
            "type": "Container",
            "$when": "${$host.widgetSize == \"medium\" || $host.widgetSize == \"large\"}",
            "items": [
                {
                    "type": "Container",
                    "$when": "${$host.widgetSize == \"large\"}",
                    "minHeight": "120px"
                },
                {
                    "type": "Container",
                    "$when": "${$host.widgetSize == \"medium\"}",
                    "minHeight": "50px"
                },
                {
                    "type": "ColumnSet",
                    "columns": [
                        {
                            "type": "Column",
                            "width": "95px",
                            "minHeight": "60px"
                        },
                        {
                            "type": "Column",
                            "width": "stretch",
                            "items": [
                                {
                                    "type": "ImageSet",
                                    "images": [
                                        {
                                            "type": "Image",
                                            "size": "Medium",
                                            "url": "${icon}",
                                            "horizontalAlignment": "Center",
                                            "spacing": "ExtraLarge"
                                        }
                                    ],
                                    "horizontalAlignment": "Center",
                                    "height": "stretch",
                                    "spacing": "Medium"
                                }
                            ],
                            "backgroundImage": {
                                "verticalAlignment": "Center"
                            },
                            "verticalContentAlignment": "Center"
                        },
                        {
                            "type": "Column",
                            "width": "stretch"
                        }
                    ]
                },
                {
                    "type": "TextBlock",
                    "text": "${message}",
                    "size": "Small",
                    "wrap": true,
                    "horizontalAlignment": "Center"
                },
                {
                    "type": "Container",
                    "$when": "${$host.widgetSize == \"large\"}",
                    "minHeight": "120px"
                },
                {
                    "type": "Container",
                    "$when": "${$host.widgetSize == \"medium\"}",
                    "minHeight": "50px"
                }
            ],
            "selectAction": {
                "type": "Action.OpenUrl",
                "url": "${launchLink}"
            }
        }
    ]
}
