{ "type": "AdaptiveCard", "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5", "body": [ { "type": "Container", "style": "good", "bleed": true, "items": [ { "type": "ColumnSet", "columns": [ { "type": "Column", "width": "auto", "verticalContentAlignment": "Center", "items": [ { "type": "TextBlock", "text": "✅", "size": "ExtraLarge", "weight": "Bolder" } ] }, { "type": "Column", "width": "stretch", "verticalContentAlignment": "Center", "items": [ { "type": "TextBlock", "text": "Time Charged Successfully", "weight": "Bolder", "size": "Large", "wrap": true, "color": "Good" } ] } ] } ] }, { "type": "Container", "spacing": "Medium", "items": [ { "type": "TextBlock", "text": "${results.message}", "wrap": true, "spacing": "Small", "size": "Medium" } ] }, { "type": "Container", "spacing": "Medium", "separator": true, "items": [ { "type": "TextBlock", "text": "📊 Charge Details", "weight": "Bolder", "size": "Medium", "color": "Accent" }, { "type": "FactSet", "spacing": "Small", "facts": [ { "title": "Client:", "value": "${results.clientName}" }, { "title": "Project:", "value": "${results.projectName}" }, { "title": "Remaining Forecast:", "value": "${results.remainingForecast} hours" } ] } ] }, { "type": "Container", "spacing": "Medium", "separator": true, "style": "emphasis", "items": [ { "type": "TextBlock", "text": "💡 Note", "weight": "Bolder", "size": "Small", "color": "Accent" }, { "type": "TextBlock", "text": "Your time has been recorded and your remaining forecast has been updated accordingly.", "wrap": true, "spacing": "Small", "size": "Small", "isSubtle": true } ] } ] }