[JSON] Minify
Q100114: [JSON] Minify
Formats an input JSON string to minimize the amount of whitespace making it smaller without altering the code. Minimization comes at the expense of code readability.
Parameter | In/Out | Description | Other Info |
---|---|---|---|
Input Json | In | The input block of JSON data. | |
Output Json | Out | The JSON output generated by the provided data. |
(Italics = required parameter)
Notes
The [JSON] Minify
module can take a block of JSON data, and remove all the whitespace that is used simply for formatting purposes. This is typically used when you might have very large blocks of JSON data and you want to minize the actual amount of diskspace it consumes if written to a file, or the amount of data transported over a slow data connection. This process does not actually change any of the data at all and it looks exactly the same to a JSON perser both before and after the operation.
Last Updated:
10/3/2023 1:07:28 AM