{
    "type": "AdaptiveCard",
    "version": "1.1",
    "id": "CasualGames_Preview_LockScreen_LockScreen",
    "height": "stretch",
    "body": [
        {
            "type": "TextBlock",
            "weight": "bolder",
            "text": "${title}"
        },
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "width": "auto",
                    "items": [
                        {
                            "type": "Image",
                            "url": "${imageUrl}",
                            "altText": "${imageUrlAltText}",
                            "width": "50px",
                            "height": "50px"
                        }
                    ],
                    "verticalContentAlignment": "center"
                },
                {
                    "type": "Column",
                    "items": [
                        {
                            "type": "TextBlock",
                            "weight": "bolder",
                            "text": "${message}",
                            "horizontalAlignment": "left"
                        }
                    ],
                    "verticalContentAlignment": "center",
                    "spacing": "large"
                }
            ],
            "height": "stretch"
        },
        {
            "type": "TextBlock",
            "size": "small",
            "color": "accent",
            "text": "${buttonText}",
            "horizontalAlignment": "center"
        }
    ],
    "selectAction": {
        "type": "Action.OpenUrl",
        "url": "${buttonUrl}",
        "title": "${buttonUrlTitle}"
    }
}