JSON editor shows error on line 5. But is not everything okay for my JSON?
My JSON file:
{
"status": "ok",
"errorMessage": "",
"result": [
"data_x": [{
"date": "2018-03-09T05:17:08",
"value": 12.00
}],
"data_y": [{
"date": "2018-03-09T05:17:08",
"value": 36.50
}],
"data_z": [{
"date": "2018-03-09T05:17:08",
"value": 88.50
}]
]
}
Thanks.
Missing curly brackets in result array.
It should be like below:
Validated on jsonlint