Re: Anything

> 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