diff options
author | Leif Johansson <leifj@sunet.se> | 2010-11-23 16:04:27 +0100 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2010-11-23 16:04:27 +0100 |
commit | c5ad28f17d9adb218e10f23b88e6fe62402ab81c (patch) | |
tree | b4e13a5df91c1f5c206637993c5d869bef3c7354 /schema/mdui-schema.xsd | |
parent | 0bc15dc34ffe92804a49599c7244da0c00e04b60 (diff) |
new schema files and aggregated schema files
Diffstat (limited to 'schema/mdui-schema.xsd')
-rw-r--r-- | schema/mdui-schema.xsd | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/schema/mdui-schema.xsd b/schema/mdui-schema.xsd new file mode 100644 index 00000000..03ca32a5 --- /dev/null +++ b/schema/mdui-schema.xsd @@ -0,0 +1,48 @@ +<schema targetNamespace="urn:oasis:names:tc:SAML:2.0:metadata:ui" + xmlns:mdui="urn:oasis:names:tc:SAML:2.0:metadata:ui" + xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" + xmlns="http://www.w3.org/2001/XMLSchema" + elementFormDefault="unqualified" + attributeFormDefault="unqualified" + blockDefault="substitution" + version="2.0" > + + <import namespace="urn:oasis:names:tc:SAML:2.0:assertion" schemaLocation="sstc-saml-schema-assertion-2.0.xsd"/> + <import namespace="urn:oasis:names:tc:SAML:2.0:metadata" schemaLocation="sstc-saml-schema-metadata-2.0.xsd"/> + <import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/> + + <annotation> + <documentation> + Document identifier: TODO + Location: TODO + Revision history: TODO + </documentation> + </annotation> + + <element name="DisplayName" type="md:localizedNameType" /> + + <element name="Description" type="md:localizedNameType" /> + + <element name="Logo" type="mdui:LogoType" /> + <complexType name="LogoType"> + <simpleContent> + <extension base="string"> + <attribute ref="xml:lang" use="optional"/> + <attribute name="href" type="anyURI" use="optional"/> + <attribute name="height" type="positiveInteger" use="optional" /> + <attribute name="width" type="positiveInteger" use="optional" /> + </extension> + </simpleContent> + </complexType> + + <element name="InformationURL" type="md:localizedURIType" /> + + <element name="PrivacyStatementURL" type="md:localizedURIType" /> + + <element name="IPHint" type="string" /> + + <element name="DomainHint" type="string" /> + + <element name="GeolocationHint" type="string" /> + +</schema> |