Skip to main content
Question

jsontempleter list

  • June 17, 2025
  • 2 replies
  • 33 views

magda_cz
Contributor
Forum|alt.badge.img+2

Can I please have some help, I have list of attributes as example:

attribute{}.name = ID and attribute{}.native_data_type =long

how can I use jsontempleter to have as output to json ID(long)?

 

Thank you,

M

2 replies

takashi
Celebrity
  • June 17, 2025

Hi ​@magda_cz ,

Would you like to create a JSON array like this?

[
{
"name" : "ID",
"native_data_type" : "long"
},
{
"name" : "something",
"native_data_type" : "text"
}
]

 


magda_cz
Contributor
Forum|alt.badge.img+2
  • Author
  • Contributor
  • June 17, 2025

Hi ​@magda_cz ,

Would you like to create a JSON array like this?

[
{
"name" : "ID",
"native_data_type" : "long"
},
{
"name" : "something",
"native_data_type" : "text"
}
]

 

Thanks ​@takashi. After I posted this question, I founded your respond as below. Yes, this is what I was interested in and works perfect. Thanks