Files
taro-bot-teams/templates/card.json
Björn Benouarets 44ea07000b init: Initial commit
2026-01-14 08:54:04 +01:00

44 lines
1.1 KiB
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_icon} {card_title}"
},
{
"type": "TextBlock",
"text": "{card_content}",
"wrap": true
},
{
"type": "FactSet",
"facts": [
{
"title": "Channel",
"value": "{card_channel_id}"
},
{
"title": "Teams",
"value": "{card_teams_id}"
}
]
},
{
"type": "TextBlock",
"text": "{card_debug}",
"wrap": true,
"fontType": "Monospace"
}
]
}