Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
inc-meta/mdx/schema/shibboleth-metadata-1.0.xsd
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (38 sloc)
1.46 KB
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
<?xml version="1.0" encoding="US-ASCII"?> | |
<schema targetNamespace="urn:mace:shibboleth:metadata:1.0" | |
xmlns="http://www.w3.org/2001/XMLSchema" | |
xmlns:ds="http://www.w3.org/2000/09/xmldsig#" | |
elementFormDefault="unqualified" | |
attributeFormDefault="unqualified" | |
version="1.0"> | |
<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/> | |
<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"> | |
<annotation> | |
<documentation> | |
Binds keying authorities to the system entity/entities to which the enclosing | |
metadata element applies. | |
</documentation> | |
</annotation> | |
<complexType> | |
<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> |