forked from shippool/CargoWiseOne-Schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NativeBMControlCustomisation.xsd
46 lines (46 loc) · 1.9 KB
/
NativeBMControlCustomisation.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<xs:schema targetNamespace="http://www.cargowise.com/Schemas/Native/2011/11" version="2.0" elementFormDefault="qualified" xmlns="http://www.cargowise.com/Schemas/Native/2011/11" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:include schemaLocation="Native.xsd" />
<xs:element name="BMControlCustomisation" type="BMControlCustomisationData" />
<xs:complexType name="BMControlCustomisationData">
<xs:all>
<xs:element name="BMControlCustomisation" type="NativeBMControlCustomisation" />
</xs:all>
<xs:attribute name="version" type="xs:token" />
</xs:complexType>
<xs:complexType name="NativeBMControlCustomisation">
<xs:all>
<!-- Candidate Key: Name -->
<xs:element name="PK" minOccurs="0" type="xs:string" />
<xs:element name="Name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ControlType" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="IsSystemWide" minOccurs="0" type="xs:boolean" />
<xs:element name="LayoutData" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string" />
</xs:simpleType>
</xs:element>
<xs:element name="SystemCreateTimeUtc" minOccurs="0" type="emptiableDateTime" />
<xs:element name="SystemLastEditTimeUtc" minOccurs="0" type="emptiableDateTime" />
<xs:element name="JobType" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="3" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:all>
<xs:attribute name="Action" type="Action" />
</xs:complexType>
</xs:schema>