-
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.
XML Schema for Shibboleth SAML 2.0 metadata extensions
- Loading branch information
Showing
1 changed file
with
39 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,39 @@ | ||
| <?xml version="1.0" encoding="US-ASCII"?> | ||
| <schema targetNamespace="urn:mace:shibboleth:metadata:1.0" | ||
| xmlns="http://www.w3.org/2001/XMLSchema" | ||
| elementFormDefault="unqualified" | ||
| attributeFormDefault="unqualified" | ||
| version="1.0"> | ||
|
|
||
| <element name="Scope"> | ||
| <annotation> | ||
| <documentation> | ||
| SAML metadata extension used to regulate allowable attribute scopes. | ||
| </documentation> | ||
| </annotation> | ||
| <complexType> | ||
| <simpleContent> | ||
| <extension base="string"> | ||
| <attribute name="regexp" type="boolean" use="optional" default="false"/> | ||
| </extension> | ||
| </simpleContent> | ||
| </complexType> | ||
| </element> | ||
|
|
||
| <element name="KeyAuthority"> | ||
| <complexType> | ||
| <annotation> | ||
| <documentation> | ||
| Binds keying authorities to the system entity/entities to which the enclosing | ||
| metadata element applies. | ||
| </documentation> | ||
| </annotation> | ||
| <sequence> | ||
| <element ref="ds:KeyInfo" maxOccurs="unbounded"/> | ||
| </sequence> | ||
| <attribute name="VerifyDepth" type="unsignedByte" use="optional" default="1"/> | ||
| <anyAttribute namespace="##other" processContents="lax"/> | ||
| </complexType> | ||
| </element> | ||
|
|
||
| </schema> |