-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathxmlrss_schema.xsd
More file actions
85 lines (75 loc) · 2.78 KB
/
xmlrss_schema.xsd
File metadata and controls
85 lines (75 loc) · 2.78 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="utf-8"?>
<!--
~ XMLRSS - A Java Crypto Provider for Redactable Signatures and their
~ XML Signature encoding.
~
~ Copyright (c) 2017 Wolfgang Popp
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:drs="https://sec.uni-passau.de/2017/03/xmlrss"
targetNamespace="https://sec.uni-passau.de/2017/03/xmlrss"
version="0.1" elementFormDefault="qualified">
<element name="Signature">
<complexType>
<sequence>
<element ref="drs:SignatureInfo"/>
<element ref="drs:References"/>
<element name="SignatureValue" type="anyType"/>
<element name="KeyInfo" type="anyType" minOccurs="0" maxOccurs="1"/>
</sequence>
</complexType>
</element>
<element name="SignatureInfo">
<complexType>
<sequence>
<element ref="drs:CanonicalizationMethod"/>
<element ref="drs:RedactableSignatureAlgorithm"/>
</sequence>
</complexType>
</element>
<element name="RedactableSignatureAlgorithm">
<complexType>
<attribute name="Algorithm" type="anyURI" use="required"/>
</complexType>
</element>
<element name="CanonicalizationMethod">
<complexType>
<attribute name="Algorithm" type="anyURI" use="required"/>
</complexType>
</element>
<element name="References">
<complexType>
<sequence>
<element ref="drs:Reference" maxOccurs="unbounded"/>
</sequence>
</complexType>
</element>
<element name="Reference">
<complexType>
<sequence>
<element ref="drs:Pointer"/>
<element name="Proof" type="anyType"/>
</sequence>
</complexType>
</element>
<element name="Pointer">
<complexType>
<attribute name="Id" type="ID" use="optional"/>
<attribute name="URI" type="anyURI" use="required"/>
<attribute name="Redactable" type="boolean" use="optional"/>
</complexType>
</element>
</schema>