/usr/share/xml/shibboleth/shibboleth-2.0-afp-mf-saml.xsd is in shibboleth-sp2-common 2.5.3+dfsg-2.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 | <?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:saml="urn:mace:shibboleth:2.0:afp:mf:saml" xmlns:afp="urn:mace:shibboleth:2.0:afp" targetNamespace="urn:mace:shibboleth:2.0:afp:mf:saml" elementFormDefault="qualified">
<import namespace="urn:mace:shibboleth:2.0:afp" schemaLocation="classpath:/schema/shibboleth-2.0-afp.xsd" />
<annotation>
<documentation>
A set of SAML specific match functions. These match functions only operate against a
SAMLFilterContext.
</documentation>
</annotation>
<complexType name="AttributeIssuerEntityAttributeExactMatch">
<annotation>
<documentation>
A match function that checks if the attribute issuer contains an entity attribute with the
specified value.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityAttributeExactMatchType"/>
</complexContent>
</complexType>
<complexType name="AttributeRequesterEntityAttributeExactMatch">
<annotation>
<documentation>
A match function that checks if the attribute requester contains an entity attribute with the
specified value.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityAttributeExactMatchType"/>
</complexContent>
</complexType>
<complexType name="EntityAttributeExactMatchType" abstract="true">
<complexContent>
<extension base="afp:MatchFunctorType">
<attribute name="attributeName" type="string" use="required">
<annotation>
<documentation>The name of the entity attribute to match.</documentation>
</annotation>
</attribute>
<attribute name="attributeNameFormat" type="string" use="optional">
<annotation>
<documentation>The name format of the entity attribute to match.</documentation>
</annotation>
</attribute>
<attribute name="attributeValue" type="string" use="required">
<annotation>
<documentation>The value of the entity attribute to match.</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AttributeIssuerEntityAttributeRegexMatch">
<annotation>
<documentation>
A match function that checks if the attribute issuer contains an entity attribute with a
value that matches the given regular expression.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityAttributeRegexMatchType"/>
</complexContent>
</complexType>
<complexType name="AttributeRequesterEntityAttributeRegexMatch">
<annotation>
<documentation>
A match function that checks if the attribute requester contains an entity attribute with a
value that matches the given regular expression.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityAttributeRegexMatchType"/>
</complexContent>
</complexType>
<complexType name="EntityAttributeRegexMatchType" abstract="true">
<complexContent>
<extension base="afp:MatchFunctorType">
<attribute name="attributeName" type="string" use="required">
<annotation>
<documentation>The name of the entity attribute to match.</documentation>
</annotation>
</attribute>
<attribute name="attributeNameFormat" type="string" use="optional">
<annotation>
<documentation>The name format of the entity attribute to match.</documentation>
</annotation>
</attribute>
<attribute name="attributeValueRegex" type="string" use="required">
<annotation>
<documentation>The regular expression that must match the value of the entity attribute to
match.</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AttributeIssuerNameIDFormatExactMatch">
<annotation>
<documentation>
A match function that evaluates to true if the attribute issuer supports a specified
NameID format.
</documentation>
</annotation>
<complexContent>
<extension base="saml:NameIDFormatExactMatchType"/>
</complexContent>
</complexType>
<complexType name="AttributeRequesterNameIDFormatExactMatch">
<annotation>
<documentation>
A match function that evaluates to true if the attribute requester supports a specified
NameID format.
</documentation>
</annotation>
<complexContent>
<extension base="saml:NameIDFormatExactMatchType"/>
</complexContent>
</complexType>
<complexType name="NameIDFormatExactMatchType" abstract="true">
<complexContent>
<extension base="afp:MatchFunctorType">
<attribute name="nameIdFormat" type="string" use="required">
<annotation>
<documentation>The NameID format that needs to be supported by the entity.</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AttributeRequesterInEntityGroup">
<annotation>
<documentation>
A match function that evaluates to true if the attribute requester is found in metadata and is a member
of the given entity group.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityGroupMatchType" />
</complexContent>
</complexType>
<complexType name="AttributeIssuerInEntityGroup">
<annotation>
<documentation>
A match function that evaluates to true if the attribute issuer is found in metadata and is a member
of the given entity group.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityGroupMatchType" />
</complexContent>
</complexType>
<complexType name="EntityGroupMatchType" abstract="true">
<complexContent>
<extension base="afp:MatchFunctorType">
<attribute name="groupID" type="string" use="required">
<annotation>
<documentation>The entity group ID that an entity must be in.</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AttributeScopeMatchesShibMDScope">
<annotation>
<documentation>
A match function that ensures that an attribute value's scope matches a scope given in metadata for the entity or role.
</documentation>
</annotation>
<complexContent>
<extension base="afp:MatchFunctorType" />
</complexContent>
</complexType>
<complexType name="NameIDQualifierString">
<annotation>
<documentation>
A match function that ensures that a NameID-valued attribute's qualifier(s), if set, match particular values.
</documentation>
</annotation>
<complexContent>
<extension base="afp:MatchFunctorType">
<attribute name="attributeID" type="string">
<annotation>
<documentation>
The ID of the attribute whose qualifiers should be matched. If no attribute ID is specified the
ID of the containing attribute rule is assumed.
</documentation>
</annotation>
</attribute>
<attribute name="NameQualifier" type="string">
<annotation>
<documentation>
A value to require in the NameQualifier field, or if omitted, require that it match the issuing IdP's entityID.
</documentation>
</annotation>
</attribute>
<attribute name="SPNameQualifier" type="string">
<annotation>
<documentation>
A value to require in the SPNameQualifier field, or if omitted, require that it match the SP's entityID.
</documentation>
</annotation>
</attribute>
</extension>
</complexContent>
</complexType>
<complexType name="AttributeIssuerEntityMatcher">
<annotation>
<documentation>
A match function that checks if the attribute issuer matches pluggable criteria.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityMatcherType"/>
</complexContent>
</complexType>
<complexType name="AttributeRequesterEntityMatcher">
<annotation>
<documentation>
A match function that checks if the attribute requester matches pluggable criteria.
</documentation>
</annotation>
<complexContent>
<extension base="saml:EntityMatcherType"/>
</complexContent>
</complexType>
<complexType name="EntityMatcherType" abstract="true">
<complexContent>
<extension base="afp:MatchFunctorType">
<sequence>
<any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="matcher" type="string" use="required">
<annotation>
<documentation>
The type of plugin to apply as a matching mechanism.
</documentation>
</annotation>
</attribute>
<anyAttribute namespace="##any" processContents="lax"/>
</extension>
</complexContent>
</complexType>
</schema>
|