Hi there,
I would like to create a json structure like this:
{
"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter","lastName":"Jones"}
]
}
There is an array of employees. I'm stuck creating this array.
Any help will be appreciated.
Thanks