diff options
author | leifj <leifj@0878fbc5-a6f2-46f6-b174-cb7b08c221d1> | 2010-07-15 08:29:03 +0000 |
---|---|---|
committer | leifj <leifj@0878fbc5-a6f2-46f6-b174-cb7b08c221d1> | 2010-07-15 08:29:03 +0000 |
commit | 6f6e08cfd5987f4f6bf8f55775dfbbfa5926cbb0 (patch) | |
tree | 946330c6abc2700d416144694230911b5ee71340 /schema | |
parent | 88ba29cb35dcb60b144084ddffa9310b5605eecb (diff) |
metadata attributes schema - nice to have
git-svn-id: svn+ssh://svn.it.su.se/svn/swamid-metadata/trunk@371 0878fbc5-a6f2-46f6-b174-cb7b08c221d1
Diffstat (limited to 'schema')
-rw-r--r-- | schema/sstc-metadata-attr.xsd | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/schema/sstc-metadata-attr.xsd b/schema/sstc-metadata-attr.xsd new file mode 100644 index 00000000..f23e462a --- /dev/null +++ b/schema/sstc-metadata-attr.xsd @@ -0,0 +1,35 @@ +<?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> + |