mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-03-09 06:38:52 +00:00
42 lines
930 B
JSON
42 lines
930 B
JSON
{
|
|
"@type": "MessageCard",
|
|
"@context": "http://schema.org/extensions",
|
|
"summary": "A critical incident reported",
|
|
"sections": [
|
|
{
|
|
"title": "${Title}",
|
|
"image": "https://o365clinicstorage.blob.core.windows.net/images/icon_task_yellow.png",
|
|
"facts": [
|
|
{
|
|
"name": "Title:",
|
|
"value": "${Title}"
|
|
},
|
|
{
|
|
"name": "Description:",
|
|
"value": "${Description}"
|
|
},
|
|
{
|
|
"name": "Priority:",
|
|
"value": "${Priority}"
|
|
},
|
|
{
|
|
"name": "Date reported:",
|
|
"value": "${DateReported}"
|
|
},
|
|
{
|
|
"name": "Reported by:",
|
|
"value": "${Issueloggedby}"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"potentialAction": [
|
|
{
|
|
"@context": "http://schema.org",
|
|
"@type": "ViewAction",
|
|
"name": "View Task Details",
|
|
"target": [ "${IncidentURL}" ]
|
|
}
|
|
|
|
]
|
|
} |