This repository has been archived by the owner on Jul 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
security-entries.xsd
55 lines (47 loc) · 2.39 KB
/
security-entries.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
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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:ewp="https://github.com/erasmus-without-paper/ewp-specs-architecture/blob/stable-v1/common-types.xsd"
elementFormDefault="qualified"
targetNamespace="https://github.com/erasmus-without-paper/ewp-specs-sec-cliauth-tlscert/tree/stable-v1"
xmlns="https://github.com/erasmus-without-paper/ewp-specs-sec-cliauth-tlscert/tree/stable-v1"
>
<xs:import
schemaLocation="https://raw.githubusercontent.com/erasmus-without-paper/ewp-specs-architecture/stable-v1/common-types.xsd"
namespace="https://github.com/erasmus-without-paper/ewp-specs-architecture/blob/stable-v1/common-types.xsd"
/>
<xs:annotation>
<xs:documentation>
This schema is a part of the Erasmus Without Paper project. Before you start
using it, make sure you have read the general rules described here:
http://developers.erasmuswithoutpaper.eu/
</xs:documentation>
</xs:annotation>
<xs:element name="tlscert">
<xs:annotation>
<xs:documentation>
This element uniquely identifies the TLS Client Certificate Authentication method, as
described here:
https://github.com/erasmus-without-paper/ewp-specs-sec-cliauth-tlscert
It can be used in various contexts, whenever someone needs to identify this
particular method of client authentication. In particular, it is often seen
together with `HttpSecurityOptions` data type described here:
https://github.com/erasmus-without-paper/ewp-specs-sec-intro/blob/stable-v2/schema.xsd
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<!-- Empty. -->
</xs:sequence>
<xs:attribute name="allows-self-signed" use="required" type="xs:boolean">
<xs:annotation>
<xs:documentation>
If true, then the server states that it allows self-signed client certificates.
(If false, then only CA-signed clients certificates are allowed.)
</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>