I have a complex nested json and I want to parse and display the data in html.
My json looks like:
{
  "Test Data": [
    {
      "First Test": {
        "Design Name": "testname",
        "Output": "1",
        "Data Info": [
          {
            "Test Name": "ft",
            "Time": 10,
          }
         ]
      }
    },
    {
      "First Test": {
        "Design Name": "testname2",
        "Output": "1",
        "Data Info": [
          {
            "Test Name": "ft2",
            "Time": 10,
          }
         ]
      }
    },
  ]
}
This is a subset of my json. How to parse this data and get the array of Design Names
 
     
     
     
    