-
Notifications
You must be signed in to change notification settings - Fork 8
/
ricoh-common.xsd
102 lines (90 loc) · 3.46 KB
/
ricoh-common.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.ricoh.co.jp/xmlns/schema/rdh/commontypes"
xmlns:itt="http://www.ricoh.co.jp/xmlns/schema/rdh/commontypes"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="property">
<xsd:sequence>
<xsd:element name="propName" type="xsd:string"/>
<xsd:element name="propVal" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="propertyList">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="itt:property[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="objectRelation">
<xsd:sequence>
<xsd:element name="objectRelationClass" type="xsd:string"/>
<xsd:element name="parentObjectId" type="xsd:string"/>
<xsd:element name="childObjectId" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="objectRelationList">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="itt:objectRelation[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="propertyListArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="itt:propertyList[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="integerArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="xsd:int[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="unsignedIntArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="xsd:unsignedInt[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="stringArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="xsd:string[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="queryTerm">
<xsd:sequence>
<xsd:element name="operator" type="xsd:string"/>
<xsd:element name="propName" type="xsd:string"/>
<xsd:element name="propVal" type="xsd:string"/>
<xsd:element name="propVal2" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="queryTermArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="itt:queryTerm[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="queryOrderBy">
<xsd:sequence>
<xsd:element name="propName" type="xsd:string"/>
<xsd:element name="isDecending" type="xsd:boolean"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="queryOrderByArray">
<xsd:complexContent>
<xsd:restriction base="soap-enc:Array">
<xsd:attribute ref="soap-enc:arrayType" wsdl:arrayType="itt:queryOrderBy[]"/>
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>