Problem:
customer got a JSON file which in general looked like below:
"Support.For": "If you would like to speak to a member of our support team",
"Support.Email": "or email"
"Customer.CustomerId": "ID",
however it turned out Wordbee cannot parse this.
Solution:
note that in the second line of above code there is no comma at the end of line.
The code should look like this:
"Support.For": "If you would like to speak to a member of our support team",
"Support.Email": "or email",
"Customer.CustomerId": "ID",