You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have below json
{
"Month": {
"Name": "January"
},
"Week":{
"Day": [ "Monday", "Tuesday", "Wednesday" ]
}
}
I would like to import above json using command , currently it is considering "Week/Day" as key and value is "[ "Monday", "Tuesday", "Wednesday" ]". but actually key should be like
I have below json
{
"Month": {
"Name": "January"
},
"Week":{
"Day": [ "Monday", "Tuesday", "Wednesday" ]
}
}
I would like to import above json using command , currently it is considering "Week/Day" as key and value is "[ "Monday", "Tuesday", "Wednesday" ]". but actually key should be like
Week/Day[0] = "Monday"
Week/Day[1] = "Tuesday"
Week/Day[2] = "Wednesday"
Did you handled if json contains list ? Is there any plan to implement
The text was updated successfully, but these errors were encountered: