Minification removes whitespace that JSON does not need
Spaces, tabs, and line breaks can separate JSON tokens without changing the represented value. A minifier parses the document and writes one compact serialization, removing that optional spacing. Strings keep the whitespace inside their quotes because those characters are data, not formatting.
The result can be smaller than a pretty-printed fixture and convenient for a request body or environment value. It is still plain text. Network compression such as Brotli or gzip works at a different layer and usually saves far more bytes on repeated keys and values.