PageRenderTime 36ms CodeModel.GetById 30ms app.highlight 4ms RepoModel.GetById 1ms app.codeStats 0ms

/bundles/plugins-trunk/XML/test_data/multiple_name/schema.xsd

#
XML Schema | 32 lines | 27 code | 5 blank | 0 comment | 0 complexity | ae6030a9797cb9522373d916d2cafead MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
 1<schema targetNamespace="http://www.example.com/IPO"
 2        xmlns="http://www.w3.org/2001/XMLSchema"
 3		elementFormDefault="qualified"
 4        xmlns:ipo="http://www.example.com/IPO">
 5
 6  <annotation>
 7    <documentation xml:lang="en">
 8      Defines one comment element with content and one without 
 9    </documentation>
10  </annotation>
11
12  <element name="root">
13  <complexType>
14  <sequence>
15  <element name="text">
16	  <complexType>
17	  	<sequence>
18			<element name="comment" type="string"/>
19		</sequence>
20	  </complexType>
21  </element>
22  	<element name="comment">
23	<complexType>
24	<sequence><element name="p" type="string"/></sequence>
25	</complexType>
26	</element>
27  </sequence></complexType>
28  </element>
29
30
31</schema>
32