{
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
    "version": "1.5",
    "type": "AdaptiveCard",
    "verticalContentAlignment": "center",
    "refresh": {
        "action": {
            "type": "Action.Execute",
            "verb": "refresh"
        }
    },
    "body": [
        {
            "type": "Image",
            "$when": "${$host.widgetSize != \"small\"}",
            "width": "160px",
            "horizontalAlignment": "center",
            "url": "${if($host.hostTheme == \"light\", $root.imagelight, $root.imagedark)}"
        },
        {
            "type": "TextBlock",
            "text": "${description}",
            "horizontalAlignment": "center",
            "wrap": true
        },
        {
            "type": "Container",
            "width": "auto",
            "items": [
                {
                    "type": "ActionSet",
                    "horizontalAlignment": "Center",
                    "actions": [
                        {
                            "type": "Action.Execute",
                            "title": "${buttontext}",
                            "verb": "enableAndLaunch"
                        }
                    ]
                }
            ]
        }
    ],
    "backgroundImage": {
        "url": "${if($host.hostTheme == \"light\", $root.backgroundlight, $root.backgrounddark)}"
    }
}
