Value is encoded when there are multiple output columns in the dmn result

I created the bpmn with two decision tables. These two dmn tables work fine with post man. But when I created the bpmn flow, I met an encoded problem. When I sent a request to this bpmn diagram, I got the value result that is encoded. I have several screenshots.Does anybody know why the value of regLevel is encoded instead of the json format from the dmn table? Thanks!

@Michaelli the variable “regLevel” type is Object and when objects are stored in camunda db the value will be stored in serialized format.

You can deserialize the values. When you check in the cockpit for the variable, you can see both serialized and deserialized values of that variable.


Note: To store it in Json format, you need to serialize the Object as json string and set the type as “Json”.

@aravindhrs Thanks for your nice answer. Where can I find this cockpit deserializer view?