Visualizing the Node Type Hierarchy is non-trivial, even in the case of a repository containing only the default Jackrabbit node types. Here, GraphViz can help: !jackrabbit-nodetypes.png! Node Type Hierarchy for Jackrabbit ([SVG version|^jackrabbit-nodetypes.svg]) In this diagram, the rounded boxes represent node types (green for mixins, gold for primrary types), with the arrows indicating the node inheritance. The square boxes represent child node and property definitions. To generate these diagrams, you will need: # A system view export of "/jcr:system/jcr:nodeTypes". # An XSLT processor and the XSLT code below. # The [GraphViz|http://graphviz.org/] tool {code} digraph { rankdir=LR; } " " [style = "filled, rounded", fillcolor = greenyellow]; [style = "filled, rounded", fillcolor = gold]; " " -> " " [dir = back, tooltip = "supertype"]; * " " -> " " [tooltip = "is mandatory child node of", dir = back]; " [style = dotted, tooltip = "is child node of", dir = back]; " " -> " " [dir = back, tooltip = "has primary type"]; {code}