I'm using the JSONTemplater and have an attribute list.
 My (sub) template is
 {
"id":Â fme:get-attribute("sumo_id"),
 "crosswalks": fme:get-list-attribute("_list{}.poly_id")
 }
Which works fine if i have multiple list elements,  but becomes a string if I only have one.
Â
{
    "id": "390335938",
    "crosswalks": ""225790", "2833648", "15808"]
  }, {
    "id": "126630292",
    "crosswalks": "1243410"
  }
Â
when I'm looking for
Â
{
    "id": "390335938",
    "crosswalks": >"225790", "2833648", "15808"]
  }, {
    "id": "126630292",
    "crosswalks": Â"1243410"]
  },
Â
Is there anyway to force the JSONTemplater to keep the array, or baring that what is the best way to post process the templater results?