Microsoft Search Adaptive Cards

Basic Adaptive Card

{
    "type": "AdaptiveCard",
    "version": "1.3",
    "body": [
        {
            "type": "ColumnSet",
            "columns": [
                {
                    "type": "Column",
                    "width": "auto",
                    "items": [
                        {
                            "type": "Image",
                            "url": "${iconUrl}",
                            "horizontalAlignment": "center",
                            "size": "small"
                        }
                    ],
                    "horizontalAlignment": "center"
                },
                {
                    "type": "Column",
                    "width": "stretch",
                    "items": [
                        {
                            "type": "ColumnSet",
                            "columns": [
                                {
                                    "type": "Column",
                                    "width": "auto",
                                    "items": [
                                        {
                                            "type": "TextBlock",
                                            "text": "[${title}](${url})",
                                            "weight": "bolder",
                                            "size": "medium",
                                            "maxLines": 3,
                                            "color": "accent"
                                        }
                                    ],
                                    "spacing": "none"
                                }
                            ],
                            "spacing": "small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "[${url}](${url})",
                            "spacing": "small",
                            "weight": "bolder",
                            "color": "dark"
                        },
                        {
                            "type": "Container",
                            "items": [
                                {
                                    "type": "TextBlock",
                                    "text": "Modified on {{DATE(${lastModifiedDate})}}",
                                    "spacing": "small",
                                    "$when": "${lastModifiedDate!=''}"
                                }
                            ],
                            "spacing": "small"
                        },
                        {
                            "type": "TextBlock",
                            "text": "${ResultSnippet}",
                            "maxLines": 2,
                            "wrap": true,
                            "spacing": "small"
                        }
                    ],
                    "spacing": "medium"
                }
            ]
        }
    ],
    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json"
}

Adaptive Card with Breadcrumb and Icon

{
   "type":"AdaptiveCard",
   "version":"1.3",
   "body":[
      {
         "type":"ColumnSet",
         "columns":[
            {
               "type":"Column",
               "width":"auto",
               "items":[
                  {
                     "type":"Image",
                     "url":"data:image/svg+xml;base64,${iconSvg[0]}",
                     "horizontalAlignment":"center",
                     "size":"small",
                     "$when":"${iconSvg[0]!=''}"
                  },
                  {
                     "type":"Image",                     "url":"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PCEtLSFGb250IEF3ZXNvbWUgRnJlZSA2LjcuMiBieSBAZm9udGF3ZXNvbWUgLSBodHRwczovL2ZvbnRhd2Vzb21lLmNvbSBMaWNlbnNlIC0gaHR0cHM6Ly9mb250YXdlc29tZS5jb20vbGljZW5zZS9mcmVlIENvcHlyaWdodCAyMDI1IEZvbnRpY29ucywgSW5jLi0tPjxwYXRoIHN0eWxlPSJmaWxsOiMzODM4MzgiIGQ9Im0gMzgzLjI0MjE3LDQ2NCBjIDguOCwwIDE2LC03LjIgMTYsLTE2IFYgMTYwIGggLTgwIGMgLTE3LjcsMCAtMzIsLTE0LjMgLTMyLC0zMiBWIDQ4IGggLTE2MCBjIC04LjgsMCAtMTYsNy4yIC0xNiwxNiB2IDM4NCBjIDAsOC44IDcuMiwxNiAxNiwxNiB6IE0gNjMuMjQyMTcxLDY0IGMgMCwtMzUuMyAyOC43LC02NCA2My45OTk5OTksLTY0IGggMTY1LjUgYyAxNywwIDMzLjMsNi43IDQ1LjMsMTguNyBsIDkwLjUsOTAuNSBjIDEyLDEyIDE4LjcsMjguMyAxOC43LDQ1LjMgViA0NDggYyAwLDM1LjMgLTI4LjcsNjQgLTY0LDY0IGggLTI1NiBDIDkxLjk0MjE3MSw1MTIgNjMuMjQyMTcxLDQ4My4zIDYzLjI0MjE3MSw0NDggWiIgICAgIGlkPSJwYXRoMSIgLz48L3N2Zz4=",
                     "horizontalAlignment":"center",
                     "size":"small",
                     "$when":"${iconSvg[0]==''}"
                  }
               ],
               "horizontalAlignment":"center"
            },
            {
               "type":"Column",
               "width":"stretch",
               "items":[
                  {
                     "type":"ColumnSet",
                     "columns":[
                        {
                           "type":"Column",
                           "width":"auto",
                           "items":[
                              {
                                 "type":"TextBlock",
                                 "text":"[${title}](${url})",
                                 "weight":"bolder",
                                 "size":"medium",
                                 "maxLines":3,
                                 "color":"accent"
                              }
                           ],
                           "spacing":"none"
                        }
                     ],
                     "spacing":"small"
                  },
                  {
                     "type":"Container",
                     "items":[
                        {
                           "type":"TextBlock",
                           "text":"${rootItemTitle[0]} > ${parentItemTitle[0]} > ${title}",
                           "weight":"Bolder",
                           "size":"Small",
                           "$when":"${rootItemTitle[0]!='' && parentItemTitle[0]!=''}"
                        },
                        {
                           "type":"TextBlock",
                           "text":"${rootItemTitle[0]} > ${title}",
                           "weight":"Bolder",
                           "size":"Small",
                           "$when":"${rootItemTitle[0]!='' && parentItemTitle[0]==''}"
                        },
                        {
                           "type":"TextBlock",
                           "text":"${parentItemTitle[0]} > ${title}",
                           "weight":"Bolder",
                           "size":"Small",
                           "$when":"${rootItemTitle[0]=='' && parentItemTitle[0]!=''}"
                        }
                     ],
                     "spacing":"small",
                     "weight":"bolder",
                     "color":"dark"
                  },
                  {
                     "type":"Container",
                     "items":[
                        {
                           "type":"TextBlock",
                           "text":"**${authors}** modified {{DATE(${lastModifiedDate})}}",
                           "spacing":"small",
                           "$when":"${authors!='' && lastModifiedDate!=''}"
                        },
                        {
                           "type":"TextBlock",
                           "text":"Modified on {{DATE(${lastModifiedDate})}}",
                           "spacing":"small",
                           "$when":"${authors=='' && lastModifiedDate!=''}"
                        }
                     ],
                     "spacing":"small"
                  },
                  {
                     "type":"TextBlock",
                     "text":"${ResultSnippet}",
                     "maxLines":2,
                     "wrap":true,
                     "spacing":"Small"
                  }
               ],
               "spacing":"medium"
            }
         ]
      }
   ],
   "$schema":"http://adaptivecards.io/schemas/adaptive-card.json"
}