in schema-induction/src/main/java/aws/json/schema/induction/SchemaNode.java [27:32]
public void addChild(SchemaNode child) {
if (this == child)
throw new RuntimeException("Recursive tree");
children.add(child);
child.level = this.level + 1;
}