~roadmr/canonical-identity-provider/u2f-db-fields

« back to all changes in this revision

Viewing changes to saml-schema-xsd/sstc-saml-attribute-ext.xsd

  • Committer: Daniel Manrique
  • Date: 2017-11-06 18:02:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1585.
  • Revision ID: roadmr@ubuntu.com-20171106180222-2ztzun9fm04gf4cm
Validate produced SAML responses against the SAML XSD.

With this commit, the tests actually fail because we *are* producing invalid
SAML.

This will be fixed in a subsequent commit (though the fix may involve a
newer version of django-saml2-idp)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<schema 
 
3
  targetNamespace="urn:oasis:names:tc:SAML:attribute:ext"
 
4
  xmlns="http://www.w3.org/2001/XMLSchema"
 
5
  elementFormDefault="unqualified"
 
6
  attributeFormDefault="unqualified"
 
7
  blockDefault="substitution"
 
8
  version="2.0">
 
9
 
 
10
  <annotation>
 
11
    <documentation>
 
12
      Document title: SAML V2.0 Attribute Extension Schema
 
13
      Document identifier: sstc-saml-attribute-ext.xsd
 
14
      Location: http://www.oasis-open.org/committees/documents.php?wg_abbrev=security
 
15
      Revision history:
 
16
      V1.0 (October 2008):
 
17
        Initial version.
 
18
    </documentation>
 
19
  </annotation>
 
20
 
 
21
  <attribute name="OriginalIssuer" type="anyURI"/>
 
22
  <attribute name="LastModified" type="dateTime"/>
 
23
 
 
24
</schema>
 
25