Skip to main content
Solved

JSONTemplater single element arrays

  • November 3, 2021
  • 1 reply
  • 23 views

jdh
Contributor
Forum|alt.badge.img+28
  • Contributor

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?

Best answer by daveatsafe

Hi @jdh​,

 

If you enclose the fme:get-list_attribute function in square braces, it will force the array creation for lists with only one entry.

{
"id": fme:get-attribute("sumo_id"),
 "crosswalks": [fme:get-list-attribute("_list{}.poly_id")]
 }

 

View original
Did this help you find an answer to your question?

1 reply

daveatsafe
Safer
Forum|alt.badge.img+19
  • Safer
  • Best Answer
  • November 3, 2021

Hi @jdh​,

 

If you enclose the fme:get-list_attribute function in square braces, it will force the array creation for lists with only one entry.

{
"id": fme:get-attribute("sumo_id"),
 "crosswalks": [fme:get-list-attribute("_list{}.poly_id")]
 }

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings