Format JSON

Indent a JSON string for readability.

Network Requests require coding skills and falls outside the scope of our support.

This means we’re unable to help further with setup or troubleshooting. Additionally, with a code-based solution, we can’t guarantee its functionality or full compatibility with Inventor. This includes how it functions with our responsive design or future platform updates.

Inputs

JSON String

JSON string to format.

Example:

{"object":{"string1":"text","string2":"text","object_jr":{"string_mini":"more_text"}}]

Outputs

Formatted JSON

The indented version of the JSON string.

Example:

{
  "object": {
    "string1": "text",
    "string2": "text",
    "object_jr": {
      "string_mini": "more_text"
    }
  }
}