1

Is there any way in XSD schema to define an element, which can be anything, under any namespace. xs:anySimpleType will not allow complex (nested) elements. xs:anyType will try to match with any declared types in xsd.

Is there any way to allow anything in element, with any namespace -

<xs:element name="a" type="xs:anything"/>

so, element 'a' can be anything like -

<a />

or

<a some_attribute="" />

or

<a xmlns="some-other-uri">
    <b />
    <c />
</a>
user2531191
  • 579
  • 10
  • 27

0 Answers0