Hello,
Lets say I have given JSON structure being passed to FME workspace as a published parameter value:
{
"users": [
{"user":"John", "age":"33"} ],
"otherParameters" : [ {"name":"parameter1", "value":"NULL"}, {"name":"parameter2", "value":"NULL"}]
}
It may contain different users and otherParameters
I would like to add a transformer/tester at the begining of the workspace flow so that if in the json there is a user with the name John and age 33 then do some things and if tha age is different or for example users list is empty do others.
What would be the best approach to do that? Thanks in advance.