Hello,
I'm a little new to JSON syntax. I'm trying to learn it correctly. I have a scenario where I have an array of objects. Each object has two properties which themselves are arrays. The root object is called "Department". Each Department has "Managers" and "Employees". At this point, I have the following, but I'm stuck:
var departments = {
"data": [
]
};
Can someone point me in the right direction? Thanks!