-
Notifications
You must be signed in to change notification settings - Fork 0
/
mfcom.xsd
43 lines (37 loc) · 1.35 KB
/
mfcom.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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- (C) 2022—2025 Rocket Software, Inc. or its affiliates. All Rights Reserved. -->
<schema elementFormDefault="qualified"
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://xml.microfocus.com/schema/com/v1.0/mfcom.xsd"
xmlns:tns="http://xml.microfocus.com/schema/com/v1.0/mfcom.xsd">
<redefine schemaLocation="http://xml.microfocus.com/schema/service/v2.0/mfservice.xsd">
<complexType name="parameterType">
<complexContent>
<extension base="tns:parameterType">
<attribute name="returnParameter" type="boolean" default="false" />
</extension>
</complexContent>
</complexType>
<complexType name="fieldType">
<complexContent>
<extension base="tns:fieldType">
<attribute name="dataType" type="tns:dataTypeEnum" />
</extension>
</complexContent>
</complexType>
</redefine>
<simpleType name="dataTypeEnum">
<restriction base="string">
<enumeration value="byte" />
<enumeration value="short" />
<enumeration value="int" />
<enumeration value="long" />
<enumeration value="float" />
<enumeration value="double" />
<enumeration value="currency" />
<enumeration value="string" />
<enumeration value="date" />
<enumeration value="object" />
</restriction>
</simpleType>
</schema>