-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmfdotnet.xsd
37 lines (32 loc) · 1.21 KB
/
mfdotnet.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
<?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/dotnet/v1.0/mfdotnet.xsd"
xmlns:tns="http://xml.microfocus.com/schema/dotnet/v1.0/mfdotnet.xsd">
<redefine schemaLocation="http://xml.microfocus.com/schema/service/v2.0/mfservice.xsd">
<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="SByte" />
<enumeration value="Int16" />
<enumeration value="Int32" />
<enumeration value="Int64" />
<enumeration value="UInt16" />
<enumeration value="UInt32" />
<enumeration value="UInt64" />
<enumeration value="Single" />
<enumeration value="Double" />
<enumeration value="Decimal" />
<enumeration value="String" />
</restriction>
</simpleType>
</schema>