When comparing two schemas, we often run into dependancy issues with types.
For example, I have two types, one is a table of objects, and the other is a table of the first type:
create or replace type T_object as object (
var1 number
,var2 number);
create or replace type...