Forum Discussion

Aravind711's avatar
Aravind711
New Contributor II
8 years ago

JSON Generation using JSON Generator

Hi All,

I need the below structure for creating a Tree structure in Javascript, When i execute the below structure using JSON generator (Edit JSON) am not getting any output neither error

[{

“text”: “Years”,

	"nodes": [{
		"text": $year,
		"nodes": [{
				"text": $quarter,
				"nodes": [{
					"text": $month
				}]
			}

		]
	}]
}

]

Can anyone please explain what am i missing in it.

Thanks,
Aravind