-
Notifications
You must be signed in to change notification settings - Fork 1
/
Signatures.xsd
27 lines (27 loc) · 1.34 KB
/
Signatures.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="Signatures">
<xs:complexType>
<xs:sequence>
<xs:element name="MaxSignId" type="xs:ID" minOccurs="0" />
<xs:element name="Signature" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:attribute name="ID" type="xs:ID" use="required" />
<xs:attribute name="Type" default="Seal">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="Seal" />
<xs:enumeration value="Sign" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="BaseLoc" type="ST_Loc" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>