-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAttachments.xsd
27 lines (27 loc) · 1.27 KB
/
Attachments.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"?>
<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="Attachments">
<xs:complexType>
<xs:sequence>
<xs:element name="Attachment" type="CT_Attachment" minOccurs="0"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="CT_Attachment">
<xs:sequence>
<xs:element name="FileLoc" type="ST_Loc" />
</xs:sequence>
<xs:attribute name="ID" type="xs:ID" use="required" />
<xs:attribute name="Name" type="xs:string" use="required" />
<xs:attribute name="Format" type="xs:string" />
<xs:attribute name="CreationDate" type="xs:dateTime" />
<xs:attribute name="ModDate" type="xs:dateTime" />
<xs:attribute name="Size" type="xs:double" />
<xs:attribute name="Visible" type="xs:boolean" default="true" />
<xs:attribute name="Usage" type="xs:string" default="none" />
</xs:complexType>
</xs:schema>