{ "type": "AdaptiveCard", "body": [ { "type": "Container", "items": [ { "type": "TextBlock", "text": "{item.name}", "size": "Large", "weight": "Bolder", "horizontalAlignment": "Center", "color": "Accent" }, { "type": "Image", "url": "{item.image}", "altText": "" }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.other}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "{item.other}" } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.name}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "{item.name}" } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.order}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "{item.order}" } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.family}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "{item.genus}" } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.species}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "TextBlock", "text": "{item.species}" } ] } ] }, { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "stretch", "horizontalAlignment": "Right", "items": [ { "type": "TextBlock", "text": "{template.clade}", "weight": "Bolder", "horizontalAlignment": "Right" } ] }, { "type": "Column", "width": "stretch", "items": [ { "type": "Container", "items": [ { "$data": "{item.clade}", "type": "TextBlock", "text": "{$data}" } ] } ] } ] } ] } ], "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.0" }