in schema-induction/src/main/java/aws/json/schema/induction/JsonSchemaGenerator.java [116:125]
public String prettyPrintJsonString(JsonNode jsonNode) {
try {
ObjectMapper mapper = new ObjectMapper();
Object json = mapper.readValue(jsonNode.toString(), Object.class);
return mapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);
} catch (Exception e) {
return "Sorry, pretty print didn't work";
}
}