0
|
1 <?xml version="1.0" encoding="utf-8"?>
|
|
2 <xsd:schema id="Mapping"
|
|
3 xmlns:tns="urn:schemas-bltoolkit-net:mapping"
|
|
4 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
5 targetNamespace="urn:schemas-bltoolkit-net:mapping">
|
|
6
|
|
7 <xsd:attribute name="MapField" type="xsd:string" />
|
|
8 <xsd:attribute name="MapIgnore" type="xsd:boolean" />
|
|
9 <xsd:attribute name="Trimmable" type="xsd:boolean" />
|
|
10 <xsd:attribute name="Nullable" type="xsd:boolean" />
|
|
11 <xsd:attribute name="MapValue" type="xsd:string" />
|
|
12 <xsd:attribute name="MapValue-Type" type="xsd:string" />
|
|
13 <xsd:attribute name="MapValue-OrigValue" type="xsd:string" />
|
|
14 <xsd:attribute name="MapValue-OrigValue-Type" type="xsd:string" />
|
|
15 <xsd:attribute name="DefaultValue" type="xsd:string" />
|
|
16 <xsd:attribute name="DefaultValue-Type" type="xsd:string" />
|
|
17 <xsd:attribute name="NullValue" type="xsd:string" />
|
|
18 <xsd:attribute name="NullValue-Type" type="xsd:string" />
|
|
19
|
|
20 <xsd:complexType name="MapValue" id="MapValue">
|
|
21 <xsd:sequence>
|
|
22 <xsd:any maxOccurs="unbounded" />
|
|
23 </xsd:sequence>
|
|
24 <xsd:attribute name="Value" type="xsd:string" use="optional" />
|
|
25 <xsd:attribute name="Type" type="xsd:string" use="required" />
|
|
26 <xsd:attribute name="OrigValue" type="xsd:string" use="optional" />
|
|
27 <xsd:attribute name="OrigValue-Type" type="xsd:string" use="optional" />
|
|
28 </xsd:complexType>
|
|
29
|
|
30 <xsd:complexType name="DefaultValue" id="DefaultValue">
|
|
31 <xsd:attribute name="Value" type="xsd:string" use="optional" />
|
|
32 <xsd:attribute name="Type" type="xsd:string" use="optional" />
|
|
33 </xsd:complexType>
|
|
34
|
|
35 <xsd:complexType name="NullValue" id="NullValue">
|
|
36 <xsd:attribute name="Value" type="xsd:string" use="optional" />
|
|
37 <xsd:attribute name="Type" type="xsd:string" use="optional" />
|
|
38 </xsd:complexType>
|
|
39
|
|
40 <xsd:complexType name="MapField" id="MapField">
|
|
41 <xsd:attribute name="MapName" type="xsd:string" use="required" />
|
|
42 <xsd:attribute name="OrigName" type="xsd:string" use="required" />
|
|
43 </xsd:complexType>
|
|
44 </xsd:schema>
|