How so? Here's a v6 on-disk inode: https://github.com/hephaex/unix-v6/blob/master/ino.h
and here's an ext4 on-disk inode: http://lxr.free-electrons.com/source/fs/ext4/ext4.h#L704
The latter is considerably larger, to be sure, but still contains all of the fields from the former (many of them with the same name!).
UNIX called them "inode" and "permanent inode"; Linux calls them "in-memory inode" and "on-disk inode". The BSDs use "vnode" and "inode".