{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"text": "Information Gathering",
"weight": "Bolder",
"id": "Title",
"size": "ExtraLarge"
},
{
"type": "TextBlock",
"text": "Please provide the name of the Project and the people involved. ",
"isSubtle": true,
"wrap": true,
"id": "acInstructions",
"size": "Large"
}
]
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Prject Name",
"wrap": true,
"size": "Medium"
}
]
},
{
"type": "Input.Text",
"id": "acProjectName",
"placeholder": "{Project Name}"
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "People Involved",
"wrap": true,
"size": "Medium"
}
]
},
{
"type": "Input.Text",
"id": "acPeopleInvolvedEmail",
"placeholder": "{People Involved email Address}"
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "People Involved 1",
"wrap": true,
"size": "Medium"
}
]
},
{
"type": "Input.Text",
"id": "acPeopleInvolvedEmail1",
"placeholder": "{People Involved email Address}"
},
{
"type": "Input.ChoiceSet",
"placeholder": "Placeholder text",
"choices": [
{
"title": "RFQ",
"value": "YES"
},
{
"title": "SoW",
"value": "NO"
},
],
"style": "expanded",
"id": "acRFQSOW",
"isMultiSelect": false
},
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}