How to create complex nested json data
I have created a json file in this format how to achieve this.
[{
"acdyr1": "2012",
"acdyr2": "2013",
"parameters": [{
"medium": "KAN",
"academic_syllabus": "STATE",
"class_section": [{
"standard": "LKG",
"sec": ["A"]
}, {
"standard": "UKG",
"sec": ["A", "B"]
}, {
"standard": "C1",
"sec": ["A", "B", "C"]
}]
},{
"medium": "ENG",
"academic_syllabus": "STATE",
"class_section": [{
"standard": "LKG",
"sec": ["A"]
}, {
"standard": "UKG",
"sec": ["A", "B"]
}, {
"standard": "C1",
"sec": ["A", "B", "C"]
}]
}]
}]