-
Notifications
You must be signed in to change notification settings - Fork 1
/
Version.xsd
32 lines (32 loc) · 1.56 KB
/
Version.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
<?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="DocVersion">
<xs:complexType>
<xs:sequence>
<xs:element name="FileList">
<xs:complexType>
<xs:sequence>
<xs:element name="File" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="ST_Loc">
<xs:attribute name="ID" type="xs:ID" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="DocRoot" type="ST_Loc" />
</xs:sequence>
<xs:attribute name="ID" type="xs:ID" use="required" />
<xs:attribute name="Version" type="xs:string" />
<xs:attribute name="Name" type="xs:string" />
<xs:attribute name="CreationDate" type="xs:date" />
</xs:complexType>
</xs:element>
</xs:schema>