-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmfxd.xsd
27 lines (24 loc) · 919 Bytes
/
mfxd.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
<?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/xd/v1.0/xd.xsd"
xmlns:tns="http://xml.microfocus.com/schema/xd/v1.0/xd.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="int"/>
<enumeration value="float"/>
<enumeration value="String"/>
</restriction>
</simpleType>
</schema>