Hi,
I'm working with the transformer JsonTemplater to create a json file. The source is a list of attributes, for example:
_list{0}.Date
_list{1}.Date
_list{0}.Age
_list{1}.Age
My Workspace translate with successful with just list of attribute:
{
"Attributes" : [
for $value in fme:get-list-attribute(("_list{}.Date")
return {"Date" : $value}]
}
My question: How can I configure to receive more than list of attribute, in this case _list{}.Age ?
Thanks