diff options
author | Leif Johansson <leifj@sunet.se> | 2010-11-23 16:04:27 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2010-11-23 16:04:27 +0100 |
commit | c5ad28f17d9adb218e10f23b88e6fe62402ab81c (patch) | |
tree | b4e13a5df91c1f5c206637993c5d869bef3c7354 /schema/sstc-saml-metadata-algsupport.xsd | |
parent | 0bc15dc34ffe92804a49599c7244da0c00e04b60 (diff) |
new schema files and aggregated schema files
Diffstat (limited to 'schema/sstc-saml-metadata-algsupport.xsd')
-rw-r--r-- | schema/sstc-saml-metadata-algsupport.xsd | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/schema/sstc-saml-metadata-algsupport.xsd b/schema/sstc-saml-metadata-algsupport.xsd new file mode 100644 index 00000000..6c7167df --- /dev/null +++ b/schema/sstc-saml-metadata-algsupport.xsd @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<schema
+ targetNamespace="urn:oasis:names:tc:SAML:metadata:algsupport"
+ xmlns="http://www.w3.org/2001/XMLSchema"
+ xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport"
+ elementFormDefault="unqualified"
+ attributeFormDefault="unqualified"
+ blockDefault="substitution"
+ version="2.0">
+
+ <annotation>
+ <documentation>
+ Document title: Metadata Extension Schema for SAML V2.0 Metadata Profile for Algorithm Support Version 1.0
+ Document identifier: sstc-saml-metadata-algsupport.xsd
+ Location: http://docs.oasis-open.org/security/saml/Post2.0/
+ Revision history:
+ V1.0 (June 2010):
+ Initial version.
+ </documentation>
+ </annotation>
+
+ <element name="DigestMethod" type="alg:DigestMethodType"/>
+ <complexType name="DigestMethodType">
+ <sequence>
+ <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ </complexType>
+
+ <element name="SigningMethod" type="alg:SigningMethodType"/>
+ <complexType name="SigningMethodType">
+ <sequence>
+ <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ <attribute name="MinKeySize" type="positiveInteger"/>
+ <attribute name="MaxKeySize" type="positiveInteger"/>
+ </complexType>
+
+</schema>
+
|