- From: Dare Obasanjo <dareo@microsoft.com>
- Date: Thu, 21 Mar 2002 07:19:30 -0800
- To: <www-xml-schema-comments@w3.org>
Is the schema referenced below valid or not? -----Original Message----- From: Stanley Guan [mailto:stanley.guan@oracle.com] Sent: Wed 3/20/2002 2:05 PM To: Schema XML Cc: Subject: test case mgA015.xsd See http://www.w3.org/XML/2001/05/xmlschema-test-collection/result-ms-modelGroups.htm The expected result for the following schema document should be invalid because minOccurs is not specified and it assumes the default value 1 which is greater than "maxOccurs". <?xml version="1.0"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <xsd:element name="doc" type="foo"/> <xsd:complexType name="foo"> <xsd:complexContent> <xsd:restriction base="xsd:anyType"> <xsd:all> <xsd:element name="e1" maxOccurs="0"/> </xsd:all> </xsd:restriction> </xsd:complexContent> </xsd:complexType> </xsd:schema> -Stanley
Received on Thursday, 21 March 2002 10:19:32 UTC