Currently i have a model that is storing formfield data as string but i ran in the issue of the 4000 chars constraint so i would like to alter my model to store the data as json instead of a string. I’ve done some reading and found that i can use org.camunda.spin.Spin.JSON in my java code to parse my object to json and also the other way around. The issue i’m having now is that i have no clue how i can model this. I see that that i can assign “custom type” for my field by what should the actual type then be?
I think Json is not supported as a variable type for form fields. You could use embedded forms instead of generated forms to submit this kind of variable.