Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Bennykillua/75578b46e3ba47588fc9bf8c3840ffb7 to your computer and use it in GitHub Desktop.
Save Bennykillua/75578b46e3ba47588fc9bf8c3840ffb7 to your computer and use it in GitHub Desktop.
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "Task Management System",
"wrap": true,
"id": "title",
"size": "Large",
"weight": "Bolder",
"fontType": "Default"
},
{
"type": "Input.Text",
"placeholder": "Provide your task title",
"id": "tasktitle",
"isMultiline": true
},
{
"type": "Input.Date",
"id": "taskdate",
"separator": true
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "High",
"value": "High"
},
{
"title": "Low",
"value": "Low"
}
],
"placeholder": "Pick a priority level",
"id": "taskpriority",
"separator": true
},
{
"type": "Input.Text",
"placeholder": "Provide details on your task.",
"separator": true,
"id": "taskdetail",
"isMultiline": true
},
{
"type": "ActionSet",
"separator": true,
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"style": "positive",
"id": "submit"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment