Hi MichalZiemba ,
There is a 'Number' property that you can use. Please make sure that this property is selected in your schema.
Please find a sample JSON schema that you can use -
{
"type" : "AdaptiveCard" ,
"version" : "1.3" ,
"body" : [
{
"type" : "ColumnSet" ,
"columns" : [
{
"type" : "Column" ,
"width" : "auto" ,
"items" : [
{
"type" : "Image" ,
"horizontalAlignment" : "center" ,
"size" : "small"
}
],
"horizontalAlignment" : "center"
},
{
"type" : "Column" ,
"width" : "stretch" ,
"items" : [
{
"type" : "ColumnSet" ,
"columns" : [
{
"type" : "Column" ,
"width" : "auto" ,
"items" : [
{
"type" : "TextBlock" ,
"text" : "${Number} [${ShortDescription}](${AccessUrl})" ,
"weight" : "bolder" ,
"size" : "medium" ,
"maxLines" : 3 ,
"color" : "accent"
}
],
"spacing" : "none"
}
],
"spacing" : "small"
},
{
"type" : "TextBlock" ,
"text" : "[${AccessUrl}](${AccessUrl})" ,
"spacing" : "small" ,
"weight" : "bolder" ,
"color" : "dark"
},
{
"type" : "Container" ,
"items" : [
{
"type" : "TextBlock" ,
"text" : "**${SysUpdatedBy}** modified {{DATE(${SysUpdatedOn})}}" ,
"spacing" : "small" ,
"$when" : "${SysUpdatedBy!='' && SysUpdatedOn!=''}"
},
{
"type" : "TextBlock" ,
"text" : "Modified on {{DATE(${SysUpdatedOn})}}" ,
"spacing" : "small" ,
"$when" : "${SysUpdatedBy=='' && SysUpdatedOn!=''}"
},
{
"type" : "TextBlock" ,
"text" : "Modified by __${SysUpdatedBy}__" ,
"spacing" : "small" ,
"$when" : "${SysUpdatedBy!='' && SysUpdatedOn==''}"
}
],
"spacing" : "small"
},
{
"type" : "TextBlock" ,
"text" : "${ResultSnippet}" ,
"maxLines" : 2 ,
"wrap" : true ,
"spacing" : "small"
}
],
"spacing" : "medium"
}
]
}
],
"$data" : {
"SysUpdatedOn" : "2019-09-25T06:08:39Z,SHORT" ,
"ResultSnippet" : "Marketing team at Contoso.., and looking at the Contoso Marketing documents on the team site. This contains the data from FY20 and will taken over to FY21...Marketing Planning is ongoing for FY20.." ,
"SysUpdatedBy" : "Amanda Brady" ,
"ShortDescription" : "Contoso Marketing Analysis - Q3 FY18" ,
"Number" : "65438243"
}
}