Как мне писать комментарии внутри JSON документа?
Я пытаюсь писать комментарии вроде
{
"myObject": { /* this is my first comment that works just fine for me*/
"foo":"bar", /* this is a comment that also works... after comma important */
"foo2":"bar2" // this comment will throw an exception
}
}