What permastrusture tags are generated out of the box right after creating custom post types and taxonomies?

Ok one way to check them up is to log them somewhere after creating post types and taxonomies:

add_action('init','register_customs');
function register_customs(){
   // [...] create types and tax
   global $wp_rewrite;
   // log $wp_rewrite somewhere
}