Hi all!
I have Initialized an Object variable with several properties. However, when using Set Variable Action Block, I do not find in the GUI the option to update a single property, I have to update the whole Object.
I tried inserting a "Parse JSON" action block between "Initialize Variable" and "Set Variable". By doing this, I can handle object properties as independent Outputs, but the GUI does not help me to update a single property easily.
As a workaround, on SetVariableActionBlock I tried the following to update the property "Importe" mantaining the values of the rest
{"Oficina": "@body{('Análisis_del_archivo_JSON')?['Oficina']}","Importe": "New Value"}
In this example I handle two properties, but as the number of properties increases, the effort to apply this workaround increases
{"type": "object", "properties": {
"Oficina": { "type": "string"},
"Importe": { "type": "string"}
}}