Skip to content

Instantly share code, notes, and snippets.

@vman
Created October 26, 2025 14:46
Show Gist options
  • Save vman/2b7b2fbbe250cc5c499ef1c2e1d26677 to your computer and use it in GitHub Desktop.
Save vman/2b7b2fbbe250cc5c499ef1c2e1d26677 to your computer and use it in GitHub Desktop.
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{ "type": "TextBlock", "text": "${title}", "size": "Large", "weight": "Bolder" },
{ "type": "FactSet", "facts": [
{ "title": "Temperature", "value": "${current.temperature_2m} °C" },
{ "title": "Wind", "value": "${current.wind_speed_10m} km/h" },
{ "title": "Time", "value": "${current.time}" },
{ "title": "Timezone", "value": "${timezone}" }
]}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment