How to simplify multiple parsing blocks?

Can I do something like that?
Thanks in advance :slight_smile:

BLOCK:Parse
LABEL:NomeCompleto
  input = @data.SOURCE
  jToken = "nome"
  MODE:Json
  => VAR @NomeCompleto
LABEL:CPF
  input = @data.SOURCE
  jToken = "cpf"
  MODE:Json
  => VAR @CPF
ENDBLOCK

I dont exactly understand what you want ?

You could do a recursive json parsing to get every value in the json object


and then just access the list with variablename[index]

1 Like