Hi everyone,
I’m exploring an improvement to the REFramework and I’d love your thoughts or contributions.
I want to build a workflow that loops through the Config dictionary and converts its content into either:
Option 1: A Strongly-Typed Object/Class
So instead of accessing values like:
Config("Asset1").ToString
We could access them with full IntelliSense, e.g.:
MyConfig.Asset1
…and get autocomplete for all config fields (Assets, Settings, Constants, etc.).
This would make config usage cleaner, reduce typos, and improve refactoring.
Option 2: JSON Object
Also optionally generate a JSON object version of the Config for cases where structured or external usage is needed.
Idea I’m Considering
I thought of creating an Entity in UiPath Data Fabric that mirrors the config fields, then auto-mapping the config into that entity so it can be referenced centrally, possibly even shared across processes.
Before I proceed, I wanted to ask the community:
Has anyone already built something similar for strongly-typed Config access in REFramework?
Any suggestions on the best way to implement the strongly-typed object?
• Class? Record? Template + Codegen? Data Service entity?
Would you find this useful as a reusable component for Marketplace?
If so, would anyone like to collaborate on building it?
My goal is to make Config values easier to use, more maintainable, and less error-prone — especially for larger or multi-automation setups.
Any feedback, ideas, or interest in contributing is appreciated! ![]()