XML Schema V1.0 can specify alternative root nodes for instances by way of the fact that there is no single root node definition:
https://stackoverflow.com/a/8857777/8254682
So it's possible to leverage this to provide a kind of "document type selection" without using XSD V1.1., based on which of several globally declared elements is used in the instance as the root node, right?
But can "alternative root nodes" be in different namespaces, as long as these namespaces are declared properly? Do element and attribute qualification matter in that case?
Any root element (that is not abstract) can be used as the definition for the root element in an XML document.
Furthermore you can keep the same root element name and change the type of the element using the xsi:type attribute in the XML document (the type used must be based on the type defined in the RootElm).
Sample XML Doc 1
Sample XML Doc 2
Sample XML Doc 3