[
Lists Home |
Date Index |
Thread Index
]
>Here's one way to do it.
>
><xsd:schema targetNamespace="foo" xmlns="foo"
>xmlns:xsd="http://www.w3.org/2001/XMLSchema">
>
> <xsd:element name="A"/>
> <xsd:element name="B"/>
>
>
> <xsd:complexType name="set">
> <xsd:choice>
> <xsd:sequence>
> <xsd:element ref="A"/>
> <xsd:element ref="B" minOccurs="0"/>
> </xsd:sequence>
> <xsd:element ref="B"/>
> </xsd:choice>
> </xsd:complexType>
></xsd:schema>
Thank you. That is just what I was looking for. Based on that then the
following should work correct?
<xs:complexType name="timeframeType">
<xs:choice>
<xs:sequence>
<xs:element ref="description"/>
<xs:element ref="earliestdate" />
<xs:element ref="latestdate" minOccurs="0"/>
</xs:sequence>
<xs:sequence>
<xs:element ref="description"/>
<xs:element ref="earliestdate" minOccurs="0" />
<xs:element ref="latestdate" />
</xs:sequence>
<xs:element ref="earliestdate" />
<xs:element ref="latestdate" />
</xs:choice>
</xs:complexType>
_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com
|