summaryrefslogtreecommitdiff
path: root/schema/shibboleth-metadata-1.0.xsd
diff options
context:
space:
mode:
authorleifj <leifj@0878fbc5-a6f2-46f6-b174-cb7b08c221d1>2009-04-07 21:36:59 +0000
committerleifj <leifj@0878fbc5-a6f2-46f6-b174-cb7b08c221d1>2009-04-07 21:36:59 +0000
commit7f9d445fa14f0605426e8b4825a493dacaab6f77 (patch)
treeadfe1bb6e0f833f58b7f13ea5821ed868e3f776d /schema/shibboleth-metadata-1.0.xsd
parentc5dda43a8f95976409412c12e9e8a46248524794 (diff)
test and schema
git-svn-id: svn+ssh://svn.it.su.se/svn/swamid-metadata/trunk@101 0878fbc5-a6f2-46f6-b174-cb7b08c221d1
Diffstat (limited to 'schema/shibboleth-metadata-1.0.xsd')
-rw-r--r--schema/shibboleth-metadata-1.0.xsd42
1 files changed, 42 insertions, 0 deletions
diff --git a/schema/shibboleth-metadata-1.0.xsd b/schema/shibboleth-metadata-1.0.xsd
new file mode 100644
index 00000000..be1441dd
--- /dev/null
+++ b/schema/shibboleth-metadata-1.0.xsd
@@ -0,0 +1,42 @@
+<?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>