For some background info, I'm working of a Library of interfaces/classes and algorithms related to Graph Theory.
I'd like to know if anyone has ideas on how to make the JSON produced by jackson of my graph interface to be more readable. The current setup has a map of node labels to adjacency lists as well as a List of nodes, containing their Type and properties (currently just a label for the default impl).
I've provided a reference of how one such json looks, what the graph its representing is and the Wrapper I'm using to configure my ObjectMapper.
If you have any suggestions on how I can make the produced json more readable, I'd love to hear them.