- From: Eric Jain <Eric.Jain@isb-sib.ch>
- Date: Tue, 10 Sep 2002 16:28:37 +0200
- To: "Mikael Joukakelian" <mikaelj@cae.com>
- Cc: <xmlschema-dev@w3.org>
> Is there a way for a schema to say that any element, attribute, and
> structure is allowed under a node?
You could try something like:
<xsd:element name="ForeignNode" mixed="true">
<xsd:complexType>
<xsd:sequence>
<xsd:any minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
--
Eric Jain
Received on Tuesday, 10 September 2002 10:28:31 UTC