I dont want to send comment as part of JSON, I just want to have a comment as a reminder for my self in PostMan Body tab for JSON request.
For example, I have JSON body like:
/* just some comment here */
{
"username": "mike",
"usertype": 1,
"userid": "3333333",
"id": "kasd331"
}
If I remove the comment at the top (/* just some comment here */
) and send this request and body, it will work.
However, with the comment above, PostMan shows me error:
IOExceptionMapper:Unexpected character ('/' (code 47)): maybe a (non-standard) comment? (not recognized as one since Feature 'ALLOW_COMMENTS' not enabled for parser) at [Source: org.apache.cxf.transport.http.AbstractHTTPDestination$1@3b0fb52a; line: 1, column: 2 ]
How can I use comemnts in JSON body in PostMan?