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