Object Variables/Dictionary

I have a use case where I need to send many variables (about 60+) to a connector so the app data can be used to fill out a pdf form needed by our company. It would be nice if I could simply push the variables into a single object variable or preferably dictionary (we need the variable names as well) and then send that to the connector instead. There is no way for us to cut down on the number of variables because of specific the forms are. I can see other uses as well since dictionaries are easy to send to APIs it may be beneficial to many others. The variables are of different types so normal arrays won’t work. This support may also be beneficial when receiving data from a connector since the values could be accessed in the expression editor by key name or in the normal actions similarly to the way Tulip handles arrays.

Example of a dictionary: DictionaryVariable = {“key1” : “value1”, “key2” : 1, “key3” :true"}