source: aai/check-saml-metadata/saml-schema/sstc-saml-metadata-algsupport-v1.0.xsd @ 5962

Last change on this file since 5962 was 5962, checked in by Sander Maijers, 9 years ago
  • Add a schema relevant to SAML metadata.
  • Modify mime-type of schemas.
  • Refer to SAML metadata guidelines at

https://www.clarin.eu/content/guidelines-saml-metadata-about-your-sp in SAML metadata about
SPF SPs in document header.

  • Remove extraneous whitespace, erroneous newlines, reformat XML and improve punctuation and

spelling in SAML metadata about SPF SPs.

  • Remove signature from BAS EntityDescriptor? to allow modification and reduce technical issues

(the SAML metadata guidelines will be updated to reflect this measure).

  • Improve metadata about CMU SPs (ticket #732).
  • Property svn:mime-type set to text/xml
File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<schema 
3  targetNamespace="urn:oasis:names:tc:SAML:metadata:algsupport"
4  xmlns="http://www.w3.org/2001/XMLSchema"
5  xmlns:alg="urn:oasis:names:tc:SAML:metadata:algsupport"
6  elementFormDefault="unqualified"
7  attributeFormDefault="unqualified"
8  blockDefault="substitution"
9  version="1.0">
10
11  <annotation>
12    <documentation>
13      Document title: Metadata Extension Schema for SAML V2.0 Metadata Profile for Algorithm Support Version 1.0
14      Document identifier: sstc-saml-metadata-algsupport.xsd
15      Location: http://docs.oasis-open.org/security/saml/Post2.0/
16      Revision history:
17      V1.0 (June 2010):
18        Initial version.
19    </documentation>
20  </annotation>
21
22  <element name="DigestMethod" type="alg:DigestMethodType"/>
23  <complexType name="DigestMethodType">
24    <sequence>
25      <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
26    </sequence>
27    <attribute name="Algorithm" type="anyURI" use="required"/>
28  </complexType>
29
30  <element name="SigningMethod" type="alg:SigningMethodType"/>
31  <complexType name="SigningMethodType">
32    <sequence>
33      <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
34    </sequence>
35    <attribute name="Algorithm" type="anyURI" use="required"/>
36    <attribute name="MinKeySize" type="positiveInteger"/>
37    <attribute name="MaxKeySize" type="positiveInteger"/>
38  </complexType>
39
40</schema>
41
Note: See TracBrowser for help on using the repository browser.