0
|
1 <?xml version="1.0" encoding="utf-8"?>
|
|
2 <xs:schema id="TypeInfo"
|
|
3 xmlns:m="urn:schemas-bltoolkit-net:mapping"
|
|
4 xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
5 xmlns:tns="urn:schemas-bltoolkit-net:typeext"
|
|
6 targetNamespace="urn:schemas-bltoolkit-net:typeext">
|
|
7
|
|
8 <xs:element name="Types" type="tns:Types" />
|
|
9
|
|
10 <xs:complexType name="Types">
|
|
11 <xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
12 <xs:element name="Type" type="tns:Type" minOccurs="0" maxOccurs="unbounded" />
|
|
13 </xs:choice>
|
|
14 </xs:complexType>
|
|
15
|
|
16 <xs:complexType name="Type">
|
|
17 <xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
18 <xs:element name="Member" type="tns:Member" minOccurs="0" maxOccurs="unbounded" />
|
|
19 <xs:any namespace="##other" processContents="lax"/>
|
|
20 </xs:choice>
|
|
21 <xs:attribute name="Name" type="xs:NCName" use="required" />
|
|
22 <xs:anyAttribute namespace="##other" processContents="lax" />
|
|
23 </xs:complexType>
|
|
24
|
|
25 <xs:complexType name="Member">
|
|
26 <xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
27 <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
|
|
28 </xs:choice>
|
|
29 <xs:attribute name="Name" type="xs:NCName" use="required" />
|
|
30 <xs:anyAttribute namespace="##other" processContents="skip" />
|
|
31 </xs:complexType>
|
|
32
|
|
33 </xs:schema>
|