blob: b0fab23c452c2ee1c9c04dfb5d54f7148f21257b (
plain)
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:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="CertificateSet" type="CertificateSetType" />
<xs:complexType name="CertificateSetType">
<xs:sequence>
<xs:element ref="CertificateDomain" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:element name="CertificateDomain" type="CertificateDomainType" />
<xs:complexType name="CertificateDomainType">
<xs:sequence>
<xs:element ref="FingerprintSHA1" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="name" type="xs:string" use="required" />
</xs:complexType>
<xs:element name="FingerprintSHA1" type="xs:string"/>
</xs:schema>
|