I need assistance with navigating through a JSON object to extract one element at a time and loop through it. See the JSON data below.
{
"noun": {
"syn": [
"leap",
"saltation",
"startle",
"start",
"parachuting",
"jumping",
"actuation",
"descent",
"inborn reflex",
"increase",
"innate reflex",
"instinctive reflex",
"physiological reaction",
"propulsion",
"reflex",
"transition",
"unconditioned reflex"
]
},
"verb": {
"syn": [
"leap",
"bound",
"spring",
"startle",
"start",
"leap out",
"jump out",
"stand out",
"stick out",
"rise",
"climb up",
"jump off",
"derail",
"chute",
"parachute",
"jumpstart",
"jump-start",
"pass over",
"skip",
"skip over",
"alternate",
"alter",
"appear",
"assail",
"assault",
"attack",
"change",
"climb",
"dive",
"drop",
"enter",
"go",
"leave out",
"locomote",
"look",
"miss",
"mount",
"move",
"neglect",
"omit",
"overleap",
"overlook",
"participate",
"plunge",
"plunk",
"pretermit",
"seem",
"set on",
"shift",
"start up",
"switch",
"travel",
"vary",
"wax"
],
"rel": [
"leap out",
"jump on"
]
}
}
If I wanted to access the word "leap," which is nested two levels deep, how can I 1) retrieve "leap" and 2) move on to the next word in the list?