blob: a552ca8b483c1e7aa1eb28dbb49b9216c0d99ca1 [file] [log] [blame]
Kasimier T. Buchcik76d73f52005-08-09 13:56:25 +00001<?xml version="1.0"?>
2<!--
3 "element complexType: Schemas parser error :
4 local complex type: The content model is not determinist."
5
6 This schema is OK with XSV and Xerces.
7-->
8<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
9 targetNamespace="urn:test:foo"
10 elementFormDefault="qualified">
11 <xs:element name="foo">
12 <xs:complexType>
13 <xs:sequence>
14 <xs:element name="bar" maxOccurs="unbounded"/>
15 <xs:any namespace="##other" processContents="lax"/>
16 </xs:sequence>
17 </xs:complexType>
18 </xs:element>
19</xs:schema>