We are using swagger-play 1.3.7 . (play framework  2.2.1 , swagger 1.2)
my model classes are look like this
public class TypeA {
TypeB b;
TypeB c;
}
public class TypeB {
TypeA a;
CustomBigdecimal bigdecimal;
Map<String, Object> additionalmaps;
}
public class TypeC {
TypeB b;
}
- how  to overcome this circular dependency in swagger 1.2   ?  - swagger UI is hanging
 
- how to convert wrapper CustomBigdecimal to Bigdecimal/string ? - result undefined
 
- how do i represent Maps..-- swagger UI is hanging