I want to use comments within my JSON body for quick references like this:
{
/**
* some param info
* param: [
* 1 = value so
* 2 = value that
* ]
*/
"param": [
1
],
/* some param2 info */
"param2": "value",
// pls use this
"param3": [
"values"
//"home"
]
}
The comments should be filtered out before the request is getting sent to the server.