﻿{
    "type": "AdaptiveCard",
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.6",
    "body": [
        {
            "type": "Container",
            "items": [
                {
                    "type": "ColumnSet",
                    "spacing": "None",
                    "columns": [
                        {
                            "type": "Column",
                            "width": "100px",
                            "items": [
                                {
                                    "type": "Image",
                                    "url": "${recordFromScreenImageURL}",
                                    "altText": "${recordFromScreenURLTooltip}",
                                    "horizontalAlignment": "Center",
                                    "width": "76px",
                                    "height": "64px"
                                }
                            ],
                            "horizontalAlignment": "Center",
                            "verticalContentAlignment": "Center",
                            "spacing": "None"
                        },
                        {
                            "type": "Column",
                            "width": "auto",
                            "items": [
                                {
                                    "type": "TextBlock",
                                    "text": "${recordFromScreenPrimaryTextButton}",
                                    "weight": "Bolder",
                                    "spacing": "Small",
                                    "wrap": true
                                },
                                {
                                    "type": "TextBlock",
                                    "text": "${recordFromScreenSecondaryTextButton}",
                                    "wrap": true,
                                    "spacing": "None",
                                    "isSubtle": false,
                                    "size": "Small",
                                    "style": "default",
                                    "fontType": "Default"
                                }
                            ],
                            "verticalContentAlignment": "Center",
                            "horizontalAlignment": "Left"
                        }
                    ],
                    "horizontalAlignment": "Left"
                }
            ],
            "backgroundImage": {
                "url": "${if($host.hostTheme == \"light\" , $root.lightTileBackground, $root.darkTileBackground)}",
                "horizontalAlignment": "Center",
                "verticalAlignment": "Center"
            },
            "minHeight": "110px",
            "selectAction": {
                "type": "Action.OpenUrl",
                "tooltip": "${recordFromScreenURLTooltip}",
                "url": "${recordFromScreenURL}",
                "role": "Link"
            },
            "spacing": "None",
            "horizontalAlignment": "Center",
            "verticalContentAlignment": "Center",
            "roundedCorners": true
        },
        {
            "type": "Container",
            "items": [
                {
                    "type": "ColumnSet",
                    "spacing": "None",
                    "columns": [
                        {
                            "type": "Column",
                            "width": "100px",
                            "items": [
                                {
                                    "type": "Image",
                                    "url": "${recordFromEditorImageURL}",
                                    "altText": "${recordFromEditorImageAltText}",
                                    "horizontalAlignment": "Center",
                                    "width": "76px",
                                    "height": "64px"
                                }
                            ],
                            "horizontalAlignment": "Center",
                            "verticalContentAlignment": "Center",
                            "spacing": "None"
                        },
                        {
                            "type": "Column",
                            "width": "auto",
                            "items": [
                                {
                                    "type": "TextBlock",
                                    "text": "${recordFromEditorPrimaryTextButton}",
                                    "wrap": true,
                                    "weight": "Bolder",
                                    "spacing": "Small"
                                },
                                {
                                    "type": "TextBlock",
                                    "text": "${recordFromEditorSecondaryTextButton}",
                                    "wrap": true,
                                    "spacing": "None",
                                    "isSubtle": false,
                                    "style": "default",
                                    "fontType": "Default",
                                    "size": "Small",
                                    "weight": "Default"
                                }
                            ],
                            "verticalContentAlignment": "Center",
                            "horizontalAlignment": "Left"
                        }
                    ],
                    "horizontalAlignment": "Left"
                }
            ],
            "backgroundImage": {
                "url": "${if($host.hostTheme == \"light\" , $root.lightTileBackground, $root.darkTileBackground)}",
                "horizontalAlignment": "Center",
                "verticalAlignment": "Center"
            },
            "minHeight": "110px",
            "selectAction": {
                "type": "Action.OpenUrl",
                "tooltip": "${recordFromEditorURLTooltip}",
                "url": "${recordFromEditorURL}",
                "role": "Link"
            },
            "spacing": "Small",
            "horizontalAlignment": "Center",
            "verticalContentAlignment": "Center",
            "roundedCorners": true
        }
    ]
}