JSON Comments
JSON doesn't support comments. It is not a standard.
But you can do some tricks such as adding extra attribute for comment in JSON object, for example:
See this example:
{
"employee": {
"name": "Bob",
"salary": 56000,
"comments": "He is a nice man"
}
}