Created
October 26, 2025 14:46
-
-
Save vman/2b7b2fbbe250cc5c499ef1c2e1d26677 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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