If i declare an xsd element without explicitly specifying a type:
<xsd:element name="e">
what would be the assumed type?Is there any way to change the "default type" ?
4
votes
1 Answers
5
votes
- It is the ur-type, http://www.w3.org/TR/xmlschema-1/#ur-type-itself, or
anyType
. So anything goes! - Not that I'm aware of