This has to do with the power apps for cards JSON coding.
{
"name": "Shop Order Fulfillment",
"description": null,
"author": "Enoch Strok",
"screens": {
"main": {
"template": {
"type": "AdaptiveCard",
"body": [
{
"type": "Image",
"id": "image1",
"height": "150px",
"width": "150px",
"horizontalAlignment": "Center"
},
{
"type": "TextBlock",
"id": "textLabel3",
"wrap": true,
"text": "Update on your Order!",
"fontType": "Default",
"size": "Large",
"weight": "Bolder",
"color": "Accent",
"horizontalAlignment": "Center",
"separator": true
},
{
"type": "TextBlock",
"id": "textLabel4",
"wrap": true,
"text": "....., Thank you for submitting a shop order form. We are unable to promise fulfillment of your ..... We can substitute .....Will that work for you?",
"horizontalAlignment": "Center",
"size": "Large",
"color": "Accent",
"separator": true
},
{
"type": "Container",
"id": "container1",
"items": [
{
"type": "Input.Text",
"id": "textInput1",
"label": "Message to Shop",
"maxLength": 500,
"height": "stretch",
"spacing": "extraLarge",
"placeholder": "Please add details in here if you need an Adjustment.",
"isMultiline": true
}
],
"separator": true,
"spacing": "ExtraLarge",
"horizontalAlignment": "Center",
"verticalContentAlignment": "Center"
},
{
"type": "Container",
"id": "container5",
"items": [
{
"type": "ColumnSet",
"id": "columnSet4",
"columns": [
{
"type": "Column",
"id": "column1",
"width": "auto",
"items": [
{
"type": "ActionSet",
"id": "buttonSet1",
"actions": [
{
"type": "Action.Submit", (used to be Action.Execute)
"id": "Accepted Button",
"title": "Accepted",
"associatedInputs": "auto",
"verb": "onSelect_Button1",
"style": "positive",
"screen": "Thank You"
}
]
}
]
}
]
}
],
"horizontalAlignment": "center",
"verticalContentAlignment": "center"
},
{
"type": "Container",
"id": "container6",
"items": [
{
"type": "ColumnSet",
"id": "columnSet5",
"columns": [
{
"type": "Column",
"id": "column8",
"width": "auto",
"items": [
{
"type": "ActionSet",
"id": "buttonSet2",
"actions": [
{
"type": "Action.ShowCard",
"id": "Request Adjustment Button",
"title": "Request Adjustment",
"associatedInputs": "auto",
"verb": "onSelect_Button2",
"style": "destructive",
"screen": "Thank you!",
"mode": "primary"
}
]
}
]
}
],
"horizontalAlignment": "center"
}
]
}
],
"version": "1.4", (used to be 1.5)
"fallbackText": "fallback text",
"speak": "speak"
},
"verbs": {
"onSelect_Button1": "\"Accepted\"",
"onSelect_Button2": "\"Request Adjustment\"",
"submit": "echo"
}
},
"Thank you!": {
"template": {
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Adjustment Request Received!",
"id": "textLabel1"
},
{
"type": "TextBlock",
"text": "We have received your request for the adjustment and we will get back to you as soon as possible. Thank you for your patience and for responding to this card!",
"wrap": true,
"id": "textLabel2"
}
],
"actions": [],
"version": "1.4", (used to be 1.5)
"refresh": {
"action": {
"verb": "show",
"type": "Action.Execute"
}
}
},
"verbs": {
"show": ""
}
}
},
"sampleData": {
"main": {},
"Thank you!": {}
},
"connections": {},
"variables": {},
"flows": {},
"locale": "en-US"
}