json.org states, that forward slashes (aka solidus, /
) can be escaped:
"\/"
However, unescaped slashes are valid, too:
"/"
What's the rational behind this? Does it come from the Javascript roots? (I.e., "</script>"
is a problem in browser-based Javascript, see Douglas Crockford's comment) Or has it any other reason?