-
Notifications
You must be signed in to change notification settings - Fork 1
/
Annotations.xsd
21 lines (21 loc) · 957 Bytes
/
Annotations.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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="Page.xsd" />
<xs:include schemaLocation="Definitions.xsd" />
<xs:element name="Annotations">
<xs:complexType>
<xs:sequence>
<xs:element name="Page" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="FileLoc" type="ST_Loc" />
</xs:sequence>
<xs:attribute name="PageID" type="ST_RefID" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>