Json Import

0
I have faced such an error during a json import action.  Caused by: com.mendix.modules.microflowengine.MicroflowException: Error parsing JSON. 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.commons.io.input.AutoCloseInputStream); line: 1, column: 2]
asked
1 answers
1

As the message says, it looks like you have a ‘/’ character in the JSON structure. This needs to be escaped with a ‘\’ character.

The details on allowable characters can be found in in the JSON spec. https://www.json.org/json-en.html

Hope this helps.

answered