In resources like this we see examples like this:
<xs:element name="name" type="xs:string"/>
Where the type is given as "xs:string"
. Does this assume that the XSD namespace is prefixed as xs
.
For example, is it legal to open our XSD document something like?
<foo:schema xmlns:foo="http://www.w3.org/2001/XMLSchema">
And if we did so, would the first example become?
<foo:element name="name" type="foo:string"/>