-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add schema for SAML V2.0 Metadata Extension for Entity Attributes Ver…
…sion 1.0.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <schema targetNamespace="urn:oasis:names:tc:SAML:metadata:attribute" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" xmlns:mdattr="urn:oasis:names:tc:SAML:metadata:attribute" elementFormDefault="unqualified" attributeFormDefault="unqualified" blockDefault="substitution" version="2.0"> | ||
|
|
||
| <annotation> | ||
| <documentation> | ||
| Document title: SAML V2.0 Metadata Extention for Entity Attributes Schema | ||
| Document identifier: sstc-metadata-attr.xsd | ||
| Location: http://www.oasis-open.org/committees/documents.php?wg_abbrev=security | ||
| Revision history: | ||
| V1.0 (November 2008): | ||
| Initial version. | ||
| </documentation> | ||
| </annotation> | ||
|
|
||
| <import namespace="urn:oasis:names:tc:SAML:2.0:assertion" schemaLocation="saml-schema-assertion-2.0.xsd"/> | ||
|
|
||
| <element name="EntityAttributes" type="mdattr:EntityAttributesType"/> | ||
| <complexType name="EntityAttributesType"> | ||
| <choice maxOccurs="unbounded"> | ||
| <element ref="saml:Attribute"/> | ||
| <element ref="saml:Assertion"/> | ||
| </choice> | ||
| </complexType> | ||
|
|
||
| </schema> |