Open
Description
Target Platforms
Other
SDK Version
desktop Teams version 25094.310.3616.953
Application Name
Microsoft Teams
Problem Description
Adaptive Card Input.Date fields with min and max constraints are not consistently enforced across Microsoft Teams. In Teams Desktop, the min/max values are either ignored or can be overridden via manual input. In Teams Mobile (Android/iOS), they work as expected.
Screenshots
Card JSON
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "Select a start date:"
},
{
"type": "Input.Date",
"id": "startDate",
"value": "2025-05-08",
"min": "2025-05-03",
"max": "2025-06-08"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
]
}
Sample Code Language
No response
Sample Code
No response