Files
taro-bot-teams/templates/card.json
Björn Benouarets a1eca7baef init: Initial commit
2026-01-08 10:10:12 +01:00

25 lines
584 B
JSON

{
"type": "AdaptiveCard",
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "Badge",
"text": "{card_type}",
"size": "Large",
"style": "Accent"
},
{
"type": "TextBlock",
"wrap": true,
"style": "heading",
"size": "ExtraLarge",
"text": "{card_title}"
},
{
"type": "TextBlock",
"text": "{card_content}",
"wrap": true
}
]
}