Create json file with multiple arrays.
Unsolved
General and Desktop
-
Hi All,
I'm in a mess of json arrays and objects. I want to create a Json file as follows. I've tried too many combinations but I failed. How it should be? I'm waiting for your help. Thanks All.The format I'm trying to do;
{
"Titles": [
{
"First" : [
{
"Title":"Hello"
},
{
"Title":"Thank"
},
{
"Title":"You"
}
],
"Last":[
{
"Title":"Good"
},
{
"Title":"Bye"
}
]
}
]
} -
@Cihangir Like this
{ "Titles": { "First": [{ "Title": "Hello" }, { "Title": "Thank" }, { "Title": "You" } ], "Last": [{ "Title": "Good" }, { "Title": "Bye" } ] } }
?
There are JSON validators you can use to validate your JSON and find errors.