According to the specification, only characters that need escaping are ", \ and a control character:
\"
\\
\/
\b
\f
\n
\r
\t
therefore you do not need to avoid the semicolon in the Json line. Link: http://www.json.org/ (on the right side)
source
share