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
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
Would you like to create a JSON array like this?
o
{
"name" : "ID",
"native_data_type" : "long"
},
{
"name" : "something",
"native_data_type" : "text"
}
]
Hi
Would you like to create a JSON array like this?
o
{
"name" : "ID",
"native_data_type" : "long"
},
{
"name" : "something",
"native_data_type" : "text"
}
]
Thanks