-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathExtensions.xsd
34 lines (34 loc) · 1.59 KB
/
Extensions.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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns="http://www.ofdspec.org/2016" xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.ofdspec.org/2016" elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:include schemaLocation="Definitions.xsd" />
<xs:element name="Extensions">
<xs:complexType>
<xs:sequence>
<xs:element name="Extension" type="CT_Extension" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="CT_Extension">
<xs:choice maxOccurs="unbounded">
<xs:element name="Property">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="Name" type="xs:string" use="required" />
<xs:attribute name="Type" type="xs:string" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="Data" type="xs:anyType" />
<xs:element name="ExtendData" type="ST_Loc" />
</xs:choice>
<xs:attribute name="AppName" type="xs:string" use="required" />
<xs:attribute name="Company" type="xs:string" />
<xs:attribute name="AppVersion" type="xs:string" />
<xs:attribute name="Date" type="xs:dateTime" />
<xs:attribute name="RefId" type="ST_RefID" use="required" />
</xs:complexType>
</xs:schema>