Search notes:

Oracle: V$TYPE_SIZE

Sizes (in bytes) of some database components, to be used to estimate data block capacity.
select
   component,
   type,
   description,
   type_size
from
   v$type_size
order by
   component,
   type;

See also

This view selects from x$kqfsz.
dynamic performance views

Index