Bot Memory allows the bot to remember some important things that you can recall at a later time using the memory actions in Flow. This memory is stored in the Microsoft Graph as an open extension inside the User object, which makes bot memory specific to each user. The schema for bot memory detailed below can be used to push memory into the bot from other sources. This would allow you to provide memory items that the user may have not interacted with yet (support tickets, events, document links, etc...)
"@data.type": "#microsoft.graph.openTypeExtension", "s": { "MemoryType": [ { "i": 1, "t": "Title", "v": "Value" }, { "i": 2, "t": "Title", "v": "Value" } ] }, "extensionName": "ai.atbot.memory", "id": "ai.atbot.memory"Note that the "i" value is an integer that we increment by 1 to know which items are the oldest in memory. Open extensions only allow for 2kb worth of content so we will remove the oldest items as new ones come in.
The following are the operations you can use in Flow to affect bot memory