I am using the export=json option which renders vaild json array without field names.
Is it possible to return a json object including field names instead?
I want this
{
"first": "Jimmy",
"last": "James",
"age": 29,
"sex": "M",
"salary": 63000,
"registered": false
}
But I get this
[["Jimmy","James",29,"M",63000,false]]
Regards, Maron