Add data to bot's global context

I have a set of data that can be used by any user using Bot. The data is common, not specific to user.

To avoid data initialization time for all users, how can we add this data (to be fetched from service call) to bot’s global context so that this is initialized just once and used by all users using bot.

@nehamsheikh, The platform has categorized the context types as UserContext, UserSession, BotUserSession, EnterpriseContext and BotContext depending on the accessibility of data. You could store the data in the BotContext (context.session.BotContext) which makes it available to all the users who are accessing the bot.

Please refer to the below link for more details on different types of context and session variables:
https://developer.kore.ai/docs/bots/bot-builder/defining-bot-tasks/using-session-and-context-variables-in-tasks/