Hi @BordFronco
Storing variables in json format would help insteading of initializing all variables like this
for example: you need to initialize three variables a, b,c with values "NN","NN2","NN3"
Then you can create a json structure like below
{"a":"NN1",
"b":"NN2",
"c":"NN3"
}
So whenever you need the value of any variable, you can use key to get the variable value.
Adding some info

I hope this would help you
Mark it as solution if it resolves your query 🙂