Hi,I thought I knew Schema but obviously I'm not as smart as I thought I was What I want to describe in my Schema is the following structure:
<info>this is an information</info><error>this is an error</error><fileNumber>12345</fileNumber>
The info-tag is to be optional. error and fileNumber must not appear at the same time (choice).I tried this, which is not valid, because "all" must only contain elements:
<xsd:all> <xsd:element name="info" type="xsd:string" minOccurs="0" maxOccurs="1" /> <xsd:complexType> <xsd:choice> <xsd