aboutsummaryrefslogtreecommitdiff
path: root/moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd
diff options
context:
space:
mode:
authortlenz <thomas.lenz@egiz.gv.at>2017-11-02 15:39:15 +0100
committertlenz <thomas.lenz@egiz.gv.at>2017-11-02 15:39:15 +0100
commite1725f9162fb687b1cc38ac8a40d952d71fae2fa (patch)
tree4f769e3c532630ccaa9cfbc6ec0a1036a4845844 /moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd
parent09274bac51619e845cc46e1b9ce0b07ef859fbe5 (diff)
parentccb1e1ed1404e0dc1f3ff026e888f4c105e1bc05 (diff)
downloadmoa-sig-e1725f9162fb687b1cc38ac8a40d952d71fae2fa.tar.gz
moa-sig-e1725f9162fb687b1cc38ac8a40d952d71fae2fa.tar.bz2
moa-sig-e1725f9162fb687b1cc38ac8a40d952d71fae2fa.zip
Merge branch 'nightlybuild' of https://gitlab.iaik.tugraz.at/egiz/moa-sig into nightlybuild
Diffstat (limited to 'moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd')
-rw-r--r--moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd31
1 files changed, 31 insertions, 0 deletions
diff --git a/moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd b/moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd
new file mode 100644
index 0000000..76b82a2
--- /dev/null
+++ b/moaSig/common/src/main/resources/resources/schemas/eIDAS_saml_extensions.xsd
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:eidas="http://eidas.europa.eu/saml-extensions" targetNamespace="http://eidas.europa.eu/saml-extensions" elementFormDefault="qualified" attributeFormDefault="unqualified">
+
+ <xsd:element name="SPType" type="eidas:SPTypeType"/>
+ <xsd:simpleType name="SPTypeType">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="public"/>
+ <xsd:enumeration value="private"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="RequestedAttributes" type="eidas:RequestedAttributesType"/>
+ <xsd:complexType name="RequestedAttributesType">
+ <xsd:sequence>
+ <xsd:element minOccurs="0" maxOccurs="unbounded" ref="eidas:RequestedAttribute"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="RequestedAttribute" type="eidas:RequestedAttributeType"/>
+ <xsd:complexType name="RequestedAttributeType">
+ <xsd:sequence>
+ <xsd:element name="AttributeValue" minOccurs="0" maxOccurs="unbounded" type="xsd:anyType"/>
+ </xsd:sequence>
+ <xsd:attribute name="Name" type="xsd:string" use="required"/>
+ <xsd:attribute name="NameFormat" type="xsd:anyURI" use="required" />
+ <xsd:attribute name="isRequired" type="xsd:boolean" use="required"/>
+ <xsd:attribute name="FriendlyName" type="xsd:string" use="optional"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax" />
+ </xsd:complexType>
+
+</xsd:schema>