> reduce JSON data size and network traffic when gzip isn't available. For example, in-browser 3D-modeling tools like Mydeco 3D-planner may process and send to server megabytes of JSON-data; `Content-encoding: gzip` anyone?
I don't believe that browsers let uploads be gzipped, as it can't be sure that the server supports gzipped requests.
EDIT: or as a comment above states, compress (gzip/deflate) it yourself. Not the most elegant, but if space is an issue.