Files
taro-bot-teams/templates/webhook-card.json
Björn Benouarets 7055272793 init: Initial commit
2026-01-07 06:20:16 +01:00

56 lines
1.6 KiB
JSON

{
"type": "AdaptiveCard",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "Image",
"style": "Person",
"url": "{creator_profile_image}",
"altText": "{creator_name}",
"size": "Small"
}
],
"width": "auto"
},
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"weight": "Bolder",
"text": "{creator_name}",
"wrap": true
},
{
"type": "TextBlock",
"spacing": "None",
"text": "Created {created_at}",
"isSubtle": true,
"wrap": true
}
],
"width": "stretch"
}
]
},
{
"type": "TextBlock",
"text": "{description}",
"wrap": true
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View Webhook",
"url": "{view_url}"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5"
}