How to create complex nested json data

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"]

                    }]

            }]
    }]

Please help me. Updated link is here    https://plnkr.co/edit/uA4JFjezZsAbHAL1FP3Y?p=preview