No, there is no way to do this with XML.
One solution is to use entities :
<!ENTITY % globalAttributes
"id ID #IMPLIED">
<!ELEMENT A #PCDATA>
<!ATTLIST A
name CDATA #REQUIRED
%globalAttributes;
>
<!ELEMENT LIST (ITEM)+>
<!ATTLIST LIST
type (ol|ul) #FIXED "ul"
%globalAttributes;
>
Regards,
Philippe.