Skip to main content

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

Hi ​@magda_cz ,

Would you like to create a JSON array like this?

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

 


Hi ​@magda_cz ,

Would you like to create a JSON array like this?

o
{
"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  

 


Reply