[JSON] Prettify
Q100118: [JSON] Prettify
Formats an input JSON string, adding whitespace and linebreaks, without altering the code in order to make it easily legible for humans.
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] Prettify
module can take a block of JSON data, and it will add in whitespace characters such as spaces and tabs to make the data more legible for human reading. This is typically used when you might have unformatted JSON data and you want read it in order to understand the structure or verify the data contained within it. 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:30 AM