saml-kit 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/saml-kit-decode-http-redirect +7 -0
- data/lib/saml/kit.rb +60 -0
- data/lib/saml/kit/authentication_request.rb +78 -0
- data/lib/saml/kit/binding.rb +40 -0
- data/lib/saml/kit/configuration.rb +36 -0
- data/lib/saml/kit/default_registry.rb +49 -0
- data/lib/saml/kit/document.rb +96 -0
- data/lib/saml/kit/fingerprint.rb +40 -0
- data/lib/saml/kit/http_post_binding.rb +27 -0
- data/lib/saml/kit/http_redirect_binding.rb +58 -0
- data/lib/saml/kit/identity_provider_metadata.rb +122 -0
- data/lib/saml/kit/invalid_document.rb +13 -0
- data/lib/saml/kit/locales/en.yml +25 -0
- data/lib/saml/kit/logout_request.rb +78 -0
- data/lib/saml/kit/logout_response.rb +63 -0
- data/lib/saml/kit/metadata.rb +171 -0
- data/lib/saml/kit/namespaces.rb +47 -0
- data/lib/saml/kit/requestable.rb +14 -0
- data/lib/saml/kit/respondable.rb +35 -0
- data/lib/saml/kit/response.rb +197 -0
- data/lib/saml/kit/self_signed_certificate.rb +30 -0
- data/lib/saml/kit/serializable.rb +31 -0
- data/lib/saml/kit/service_provider_metadata.rb +99 -0
- data/lib/saml/kit/signature.rb +75 -0
- data/lib/saml/kit/trustable.rb +62 -0
- data/lib/saml/kit/url_builder.rb +38 -0
- data/lib/saml/kit/version.rb +5 -0
- data/lib/saml/kit/xml.rb +57 -0
- data/lib/saml/kit/xsd/MetadataExchange.xsd +95 -0
- data/lib/saml/kit/xsd/oasis-200401-wss-wssecurity-secext-1.0.xsd +196 -0
- data/lib/saml/kit/xsd/oasis-200401-wss-wssecurity-utility-1.0.xsd +95 -0
- data/lib/saml/kit/xsd/saml-schema-assertion-2.0.xsd +283 -0
- data/lib/saml/kit/xsd/saml-schema-authn-context-2.0.xsd +23 -0
- data/lib/saml/kit/xsd/saml-schema-authn-context-types-2.0.xsd +821 -0
- data/lib/saml/kit/xsd/saml-schema-metadata-2.0.xsd +335 -0
- data/lib/saml/kit/xsd/saml-schema-protocol-2.0.xsd +302 -0
- data/lib/saml/kit/xsd/sstc-metadata-attr.xsd +35 -0
- data/lib/saml/kit/xsd/sstc-saml-attribute-ext.xsd +25 -0
- data/lib/saml/kit/xsd/sstc-saml-metadata-algsupport-v1.0.xsd +41 -0
- data/lib/saml/kit/xsd/sstc-saml-metadata-ui-v1.0.xsd +89 -0
- data/lib/saml/kit/xsd/ws-addr.xsd +120 -0
- data/lib/saml/kit/xsd/ws-authorization.xsd +145 -0
- data/lib/saml/kit/xsd/ws-federation.xsd +471 -0
- data/lib/saml/kit/xsd/ws-securitypolicy-1.2.xsd +900 -0
- data/lib/saml/kit/xsd/xenc-schema.xsd +136 -0
- data/lib/saml/kit/xsd/xml.xsd +287 -0
- data/lib/saml/kit/xsd/xmldsig-core-schema.xsd +309 -0
- data/lib/saml/kit/xsd_validatable.rb +19 -0
- data/saml-kit.gemspec +35 -0
- metadata +243 -0
@@ -0,0 +1,335 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<schema
|
3
|
+
targetNamespace="urn:oasis:names:tc:SAML:2.0:metadata"
|
4
|
+
xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata"
|
5
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
|
6
|
+
xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"
|
7
|
+
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
|
8
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
9
|
+
elementFormDefault="unqualified"
|
10
|
+
attributeFormDefault="unqualified"
|
11
|
+
blockDefault="substitution"
|
12
|
+
version="2.0">
|
13
|
+
<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
|
14
|
+
<import namespace="http://www.w3.org/2001/04/xmlenc#" schemaLocation="xenc-schema.xsd"/>
|
15
|
+
<import namespace="urn:oasis:names:tc:SAML:2.0:assertion" schemaLocation="saml-schema-assertion-2.0.xsd"/>
|
16
|
+
<import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
|
17
|
+
<import namespace="http://docs.oasis-open.org/wsfed/federation/200706" schemaLocation="ws-federation.xsd"/>
|
18
|
+
<import namespace="http://docs.oasis-open.org/wsfed/authorization/200706" schemaLocation="ws-authorization.xsd"/>
|
19
|
+
<annotation>
|
20
|
+
<documentation>
|
21
|
+
Document identifier: saml-schema-metadata-2.0
|
22
|
+
Location: http://docs.oasis-open.org/security/saml/v2.0/
|
23
|
+
Revision history:
|
24
|
+
V2.0 (March, 2005):
|
25
|
+
Schema for SAML metadata, first published in SAML 2.0.
|
26
|
+
</documentation>
|
27
|
+
</annotation>
|
28
|
+
|
29
|
+
<simpleType name="entityIDType">
|
30
|
+
<restriction base="anyURI">
|
31
|
+
<maxLength value="1024"/>
|
32
|
+
</restriction>
|
33
|
+
</simpleType>
|
34
|
+
<complexType name="localizedNameType">
|
35
|
+
<simpleContent>
|
36
|
+
<extension base="string">
|
37
|
+
<attribute ref="xml:lang" use="required"/>
|
38
|
+
</extension>
|
39
|
+
</simpleContent>
|
40
|
+
</complexType>
|
41
|
+
<complexType name="localizedURIType">
|
42
|
+
<simpleContent>
|
43
|
+
<extension base="anyURI">
|
44
|
+
<attribute ref="xml:lang" use="required"/>
|
45
|
+
</extension>
|
46
|
+
</simpleContent>
|
47
|
+
</complexType>
|
48
|
+
|
49
|
+
<element name="Extensions" type="md:ExtensionsType"/>
|
50
|
+
<complexType final="#all" name="ExtensionsType">
|
51
|
+
<sequence>
|
52
|
+
<any namespace="##other" processContents="lax" maxOccurs="unbounded"/>
|
53
|
+
</sequence>
|
54
|
+
</complexType>
|
55
|
+
|
56
|
+
<complexType name="EndpointType">
|
57
|
+
<sequence>
|
58
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
59
|
+
</sequence>
|
60
|
+
<attribute name="Binding" type="anyURI" use="required"/>
|
61
|
+
<attribute name="Location" type="anyURI" use="required"/>
|
62
|
+
<attribute name="ResponseLocation" type="anyURI" use="optional"/>
|
63
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
64
|
+
</complexType>
|
65
|
+
|
66
|
+
<complexType name="IndexedEndpointType">
|
67
|
+
<complexContent>
|
68
|
+
<extension base="md:EndpointType">
|
69
|
+
<attribute name="index" type="unsignedShort" use="required"/>
|
70
|
+
<attribute name="isDefault" type="boolean" use="optional"/>
|
71
|
+
</extension>
|
72
|
+
</complexContent>
|
73
|
+
</complexType>
|
74
|
+
|
75
|
+
<element name="EntitiesDescriptor" type="md:EntitiesDescriptorType"/>
|
76
|
+
<complexType name="EntitiesDescriptorType">
|
77
|
+
<sequence>
|
78
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
79
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
80
|
+
<choice minOccurs="1" maxOccurs="unbounded">
|
81
|
+
<element ref="md:EntityDescriptor"/>
|
82
|
+
<element ref="md:EntitiesDescriptor"/>
|
83
|
+
</choice>
|
84
|
+
</sequence>
|
85
|
+
<attribute name="validUntil" type="dateTime" use="optional"/>
|
86
|
+
<attribute name="cacheDuration" type="duration" use="optional"/>
|
87
|
+
<attribute name="ID" type="ID" use="optional"/>
|
88
|
+
<attribute name="Name" type="string" use="optional"/>
|
89
|
+
</complexType>
|
90
|
+
|
91
|
+
<element name="EntityDescriptor" type="md:EntityDescriptorType"/>
|
92
|
+
<complexType name="EntityDescriptorType">
|
93
|
+
<sequence>
|
94
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
95
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
96
|
+
<choice>
|
97
|
+
<choice maxOccurs="unbounded">
|
98
|
+
<element ref="md:RoleDescriptor"/>
|
99
|
+
<element ref="md:IDPSSODescriptor"/>
|
100
|
+
<element ref="md:SPSSODescriptor"/>
|
101
|
+
<element ref="md:AuthnAuthorityDescriptor"/>
|
102
|
+
<element ref="md:AttributeAuthorityDescriptor"/>
|
103
|
+
<element ref="md:PDPDescriptor"/>
|
104
|
+
</choice>
|
105
|
+
<element ref="md:AffiliationDescriptor"/>
|
106
|
+
</choice>
|
107
|
+
<element ref="md:Organization" minOccurs="0"/>
|
108
|
+
<element ref="md:ContactPerson" minOccurs="0" maxOccurs="unbounded"/>
|
109
|
+
<element ref="md:AdditionalMetadataLocation" minOccurs="0" maxOccurs="unbounded"/>
|
110
|
+
</sequence>
|
111
|
+
<attribute name="entityID" type="md:entityIDType" use="required"/>
|
112
|
+
<attribute name="validUntil" type="dateTime" use="optional"/>
|
113
|
+
<attribute name="cacheDuration" type="duration" use="optional"/>
|
114
|
+
<attribute name="ID" type="ID" use="optional"/>
|
115
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
116
|
+
</complexType>
|
117
|
+
|
118
|
+
<element name="Organization" type="md:OrganizationType"/>
|
119
|
+
<complexType name="OrganizationType">
|
120
|
+
<sequence>
|
121
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
122
|
+
<element ref="md:OrganizationName" maxOccurs="unbounded"/>
|
123
|
+
<element ref="md:OrganizationDisplayName" maxOccurs="unbounded"/>
|
124
|
+
<element ref="md:OrganizationURL" maxOccurs="unbounded"/>
|
125
|
+
</sequence>
|
126
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
127
|
+
</complexType>
|
128
|
+
<element name="OrganizationName" type="md:localizedNameType"/>
|
129
|
+
<element name="OrganizationDisplayName" type="md:localizedNameType"/>
|
130
|
+
<element name="OrganizationURL" type="md:localizedURIType"/>
|
131
|
+
<element name="ContactPerson" type="md:ContactType"/>
|
132
|
+
<complexType name="ContactType">
|
133
|
+
<sequence>
|
134
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
135
|
+
<element ref="md:Company" minOccurs="0"/>
|
136
|
+
<element ref="md:GivenName" minOccurs="0"/>
|
137
|
+
<element ref="md:SurName" minOccurs="0"/>
|
138
|
+
<element ref="md:EmailAddress" minOccurs="0" maxOccurs="unbounded"/>
|
139
|
+
<element ref="md:TelephoneNumber" minOccurs="0" maxOccurs="unbounded"/>
|
140
|
+
</sequence>
|
141
|
+
<attribute name="contactType" type="md:ContactTypeType" use="required"/>
|
142
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
143
|
+
</complexType>
|
144
|
+
<element name="Company" type="string"/>
|
145
|
+
<element name="GivenName" type="string"/>
|
146
|
+
<element name="SurName" type="string"/>
|
147
|
+
<element name="EmailAddress" type="anyURI"/>
|
148
|
+
<element name="TelephoneNumber" type="string"/>
|
149
|
+
<simpleType name="ContactTypeType">
|
150
|
+
<restriction base="string">
|
151
|
+
<enumeration value="technical"/>
|
152
|
+
<enumeration value="support"/>
|
153
|
+
<enumeration value="administrative"/>
|
154
|
+
<enumeration value="billing"/>
|
155
|
+
<enumeration value="other"/>
|
156
|
+
</restriction>
|
157
|
+
</simpleType>
|
158
|
+
|
159
|
+
<element name="AdditionalMetadataLocation" type="md:AdditionalMetadataLocationType"/>
|
160
|
+
<complexType name="AdditionalMetadataLocationType">
|
161
|
+
<simpleContent>
|
162
|
+
<extension base="anyURI">
|
163
|
+
<attribute name="namespace" type="anyURI" use="required"/>
|
164
|
+
</extension>
|
165
|
+
</simpleContent>
|
166
|
+
</complexType>
|
167
|
+
|
168
|
+
<element name="RoleDescriptor" type="md:RoleDescriptorType"/>
|
169
|
+
<complexType name="RoleDescriptorType" abstract="true">
|
170
|
+
<sequence>
|
171
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
172
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
173
|
+
<element ref="md:KeyDescriptor" minOccurs="0" maxOccurs="unbounded"/>
|
174
|
+
<element ref="md:Organization" minOccurs="0"/>
|
175
|
+
<element ref="md:ContactPerson" minOccurs="0" maxOccurs="unbounded"/>
|
176
|
+
</sequence>
|
177
|
+
<attribute name="ID" type="ID" use="optional"/>
|
178
|
+
<attribute name="validUntil" type="dateTime" use="optional"/>
|
179
|
+
<attribute name="cacheDuration" type="duration" use="optional"/>
|
180
|
+
<attribute name="protocolSupportEnumeration" type="md:anyURIListType" use="required"/>
|
181
|
+
<attribute name="errorURL" type="anyURI" use="optional"/>
|
182
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
183
|
+
</complexType>
|
184
|
+
<simpleType name="anyURIListType">
|
185
|
+
<list itemType="anyURI"/>
|
186
|
+
</simpleType>
|
187
|
+
|
188
|
+
<element name="KeyDescriptor" type="md:KeyDescriptorType"/>
|
189
|
+
<complexType name="KeyDescriptorType">
|
190
|
+
<sequence>
|
191
|
+
<element ref="ds:KeyInfo"/>
|
192
|
+
<element ref="md:EncryptionMethod" minOccurs="0" maxOccurs="unbounded"/>
|
193
|
+
</sequence>
|
194
|
+
<attribute name="use" type="md:KeyTypes" use="optional"/>
|
195
|
+
</complexType>
|
196
|
+
<simpleType name="KeyTypes">
|
197
|
+
<restriction base="string">
|
198
|
+
<enumeration value="encryption"/>
|
199
|
+
<enumeration value="signing"/>
|
200
|
+
</restriction>
|
201
|
+
</simpleType>
|
202
|
+
<element name="EncryptionMethod" type="xenc:EncryptionMethodType"/>
|
203
|
+
|
204
|
+
<complexType name="SSODescriptorType" abstract="true">
|
205
|
+
<complexContent>
|
206
|
+
<extension base="md:RoleDescriptorType">
|
207
|
+
<sequence>
|
208
|
+
<element ref="md:ArtifactResolutionService" minOccurs="0" maxOccurs="unbounded"/>
|
209
|
+
<element ref="md:SingleLogoutService" minOccurs="0" maxOccurs="unbounded"/>
|
210
|
+
<element ref="md:ManageNameIDService" minOccurs="0" maxOccurs="unbounded"/>
|
211
|
+
<element ref="md:NameIDFormat" minOccurs="0" maxOccurs="unbounded"/>
|
212
|
+
</sequence>
|
213
|
+
</extension>
|
214
|
+
</complexContent>
|
215
|
+
</complexType>
|
216
|
+
<element name="ArtifactResolutionService" type="md:IndexedEndpointType"/>
|
217
|
+
<element name="SingleLogoutService" type="md:EndpointType"/>
|
218
|
+
<element name="ManageNameIDService" type="md:EndpointType"/>
|
219
|
+
<element name="NameIDFormat" type="anyURI"/>
|
220
|
+
|
221
|
+
<element name="IDPSSODescriptor" type="md:IDPSSODescriptorType"/>
|
222
|
+
<complexType name="IDPSSODescriptorType">
|
223
|
+
<complexContent>
|
224
|
+
<extension base="md:SSODescriptorType">
|
225
|
+
<sequence>
|
226
|
+
<element ref="md:SingleSignOnService" maxOccurs="unbounded"/>
|
227
|
+
<element ref="md:NameIDMappingService" minOccurs="0" maxOccurs="unbounded"/>
|
228
|
+
<element ref="md:AssertionIDRequestService" minOccurs="0" maxOccurs="unbounded"/>
|
229
|
+
<element ref="md:AttributeProfile" minOccurs="0" maxOccurs="unbounded"/>
|
230
|
+
<element ref="saml:Attribute" minOccurs="0" maxOccurs="unbounded"/>
|
231
|
+
</sequence>
|
232
|
+
<attribute name="WantAuthnRequestsSigned" type="boolean" use="optional"/>
|
233
|
+
</extension>
|
234
|
+
</complexContent>
|
235
|
+
</complexType>
|
236
|
+
<element name="SingleSignOnService" type="md:EndpointType"/>
|
237
|
+
<element name="NameIDMappingService" type="md:EndpointType"/>
|
238
|
+
<element name="AssertionIDRequestService" type="md:EndpointType"/>
|
239
|
+
<element name="AttributeProfile" type="anyURI"/>
|
240
|
+
|
241
|
+
<element name="SPSSODescriptor" type="md:SPSSODescriptorType"/>
|
242
|
+
<complexType name="SPSSODescriptorType">
|
243
|
+
<complexContent>
|
244
|
+
<extension base="md:SSODescriptorType">
|
245
|
+
<sequence>
|
246
|
+
<element ref="md:AssertionConsumerService" maxOccurs="unbounded"/>
|
247
|
+
<element ref="md:AttributeConsumingService" minOccurs="0" maxOccurs="unbounded"/>
|
248
|
+
</sequence>
|
249
|
+
<attribute name="AuthnRequestsSigned" type="boolean" use="optional"/>
|
250
|
+
<attribute name="WantAssertionsSigned" type="boolean" use="optional"/>
|
251
|
+
</extension>
|
252
|
+
</complexContent>
|
253
|
+
</complexType>
|
254
|
+
<element name="AssertionConsumerService" type="md:IndexedEndpointType"/>
|
255
|
+
<element name="AttributeConsumingService" type="md:AttributeConsumingServiceType"/>
|
256
|
+
<complexType name="AttributeConsumingServiceType">
|
257
|
+
<sequence>
|
258
|
+
<element ref="md:ServiceName" maxOccurs="unbounded"/>
|
259
|
+
<element ref="md:ServiceDescription" minOccurs="0" maxOccurs="unbounded"/>
|
260
|
+
<element ref="md:RequestedAttribute" maxOccurs="unbounded"/>
|
261
|
+
</sequence>
|
262
|
+
<attribute name="index" type="unsignedShort" use="required"/>
|
263
|
+
<attribute name="isDefault" type="boolean" use="optional"/>
|
264
|
+
</complexType>
|
265
|
+
<element name="ServiceName" type="md:localizedNameType"/>
|
266
|
+
<element name="ServiceDescription" type="md:localizedNameType"/>
|
267
|
+
<element name="RequestedAttribute" type="md:RequestedAttributeType"/>
|
268
|
+
<complexType name="RequestedAttributeType">
|
269
|
+
<complexContent>
|
270
|
+
<extension base="saml:AttributeType">
|
271
|
+
<attribute name="isRequired" type="boolean" use="optional"/>
|
272
|
+
</extension>
|
273
|
+
</complexContent>
|
274
|
+
</complexType>
|
275
|
+
|
276
|
+
<element name="AuthnAuthorityDescriptor" type="md:AuthnAuthorityDescriptorType"/>
|
277
|
+
<complexType name="AuthnAuthorityDescriptorType">
|
278
|
+
<complexContent>
|
279
|
+
<extension base="md:RoleDescriptorType">
|
280
|
+
<sequence>
|
281
|
+
<element ref="md:AuthnQueryService" maxOccurs="unbounded"/>
|
282
|
+
<element ref="md:AssertionIDRequestService" minOccurs="0" maxOccurs="unbounded"/>
|
283
|
+
<element ref="md:NameIDFormat" minOccurs="0" maxOccurs="unbounded"/>
|
284
|
+
</sequence>
|
285
|
+
</extension>
|
286
|
+
</complexContent>
|
287
|
+
</complexType>
|
288
|
+
<element name="AuthnQueryService" type="md:EndpointType"/>
|
289
|
+
|
290
|
+
<element name="PDPDescriptor" type="md:PDPDescriptorType"/>
|
291
|
+
<complexType name="PDPDescriptorType">
|
292
|
+
<complexContent>
|
293
|
+
<extension base="md:RoleDescriptorType">
|
294
|
+
<sequence>
|
295
|
+
<element ref="md:AuthzService" maxOccurs="unbounded"/>
|
296
|
+
<element ref="md:AssertionIDRequestService" minOccurs="0" maxOccurs="unbounded"/>
|
297
|
+
<element ref="md:NameIDFormat" minOccurs="0" maxOccurs="unbounded"/>
|
298
|
+
</sequence>
|
299
|
+
</extension>
|
300
|
+
</complexContent>
|
301
|
+
</complexType>
|
302
|
+
<element name="AuthzService" type="md:EndpointType"/>
|
303
|
+
|
304
|
+
<element name="AttributeAuthorityDescriptor" type="md:AttributeAuthorityDescriptorType"/>
|
305
|
+
<complexType name="AttributeAuthorityDescriptorType">
|
306
|
+
<complexContent>
|
307
|
+
<extension base="md:RoleDescriptorType">
|
308
|
+
<sequence>
|
309
|
+
<element ref="md:AttributeService" maxOccurs="unbounded"/>
|
310
|
+
<element ref="md:AssertionIDRequestService" minOccurs="0" maxOccurs="unbounded"/>
|
311
|
+
<element ref="md:NameIDFormat" minOccurs="0" maxOccurs="unbounded"/>
|
312
|
+
<element ref="md:AttributeProfile" minOccurs="0" maxOccurs="unbounded"/>
|
313
|
+
<element ref="saml:Attribute" minOccurs="0" maxOccurs="unbounded"/>
|
314
|
+
</sequence>
|
315
|
+
</extension>
|
316
|
+
</complexContent>
|
317
|
+
</complexType>
|
318
|
+
<element name="AttributeService" type="md:EndpointType"/>
|
319
|
+
|
320
|
+
<element name="AffiliationDescriptor" type="md:AffiliationDescriptorType"/>
|
321
|
+
<complexType name="AffiliationDescriptorType">
|
322
|
+
<sequence>
|
323
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
324
|
+
<element ref="md:Extensions" minOccurs="0"/>
|
325
|
+
<element ref="md:AffiliateMember" maxOccurs="unbounded"/>
|
326
|
+
<element ref="md:KeyDescriptor" minOccurs="0" maxOccurs="unbounded"/>
|
327
|
+
</sequence>
|
328
|
+
<attribute name="affiliationOwnerID" type="md:entityIDType" use="required"/>
|
329
|
+
<attribute name="validUntil" type="dateTime" use="optional"/>
|
330
|
+
<attribute name="cacheDuration" type="duration" use="optional"/>
|
331
|
+
<attribute name="ID" type="ID" use="optional"/>
|
332
|
+
<anyAttribute namespace="##other" processContents="lax"/>
|
333
|
+
</complexType>
|
334
|
+
<element name="AffiliateMember" type="md:entityIDType"/>
|
335
|
+
</schema>
|
@@ -0,0 +1,302 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<schema
|
3
|
+
targetNamespace="urn:oasis:names:tc:SAML:2.0:protocol"
|
4
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol"
|
6
|
+
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
|
7
|
+
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
|
8
|
+
elementFormDefault="unqualified"
|
9
|
+
attributeFormDefault="unqualified"
|
10
|
+
blockDefault="substitution"
|
11
|
+
version="2.0">
|
12
|
+
<import namespace="urn:oasis:names:tc:SAML:2.0:assertion"
|
13
|
+
schemaLocation="saml-schema-assertion-2.0.xsd"/>
|
14
|
+
<import namespace="http://www.w3.org/2000/09/xmldsig#"
|
15
|
+
schemaLocation="xmldsig-core-schema.xsd"/>
|
16
|
+
<annotation>
|
17
|
+
<documentation>
|
18
|
+
Document identifier: saml-schema-protocol-2.0
|
19
|
+
Location: http://docs.oasis-open.org/security/saml/v2.0/
|
20
|
+
Revision history:
|
21
|
+
V1.0 (November, 2002):
|
22
|
+
Initial Standard Schema.
|
23
|
+
V1.1 (September, 2003):
|
24
|
+
Updates within the same V1.0 namespace.
|
25
|
+
V2.0 (March, 2005):
|
26
|
+
New protocol schema based in a SAML V2.0 namespace.
|
27
|
+
</documentation>
|
28
|
+
</annotation>
|
29
|
+
<complexType name="RequestAbstractType" abstract="true">
|
30
|
+
<sequence>
|
31
|
+
<element ref="saml:Issuer" minOccurs="0"/>
|
32
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
33
|
+
<element ref="samlp:Extensions" minOccurs="0"/>
|
34
|
+
</sequence>
|
35
|
+
<attribute name="ID" type="ID" use="required"/>
|
36
|
+
<attribute name="Version" type="string" use="required"/>
|
37
|
+
<attribute name="IssueInstant" type="dateTime" use="required"/>
|
38
|
+
<attribute name="Destination" type="anyURI" use="optional"/>
|
39
|
+
<attribute name="Consent" type="anyURI" use="optional"/>
|
40
|
+
</complexType>
|
41
|
+
<element name="Extensions" type="samlp:ExtensionsType"/>
|
42
|
+
<complexType name="ExtensionsType">
|
43
|
+
<sequence>
|
44
|
+
<any namespace="##other" processContents="lax" maxOccurs="unbounded"/>
|
45
|
+
</sequence>
|
46
|
+
</complexType>
|
47
|
+
<complexType name="StatusResponseType">
|
48
|
+
<sequence>
|
49
|
+
<element ref="saml:Issuer" minOccurs="0"/>
|
50
|
+
<element ref="ds:Signature" minOccurs="0"/>
|
51
|
+
<element ref="samlp:Extensions" minOccurs="0"/>
|
52
|
+
<element ref="samlp:Status"/>
|
53
|
+
</sequence>
|
54
|
+
<attribute name="ID" type="ID" use="required"/>
|
55
|
+
<attribute name="InResponseTo" type="NCName" use="optional"/>
|
56
|
+
<attribute name="Version" type="string" use="required"/>
|
57
|
+
<attribute name="IssueInstant" type="dateTime" use="required"/>
|
58
|
+
<attribute name="Destination" type="anyURI" use="optional"/>
|
59
|
+
<attribute name="Consent" type="anyURI" use="optional"/>
|
60
|
+
</complexType>
|
61
|
+
<element name="Status" type="samlp:StatusType"/>
|
62
|
+
<complexType name="StatusType">
|
63
|
+
<sequence>
|
64
|
+
<element ref="samlp:StatusCode"/>
|
65
|
+
<element ref="samlp:StatusMessage" minOccurs="0"/>
|
66
|
+
<element ref="samlp:StatusDetail" minOccurs="0"/>
|
67
|
+
</sequence>
|
68
|
+
</complexType>
|
69
|
+
<element name="StatusCode" type="samlp:StatusCodeType"/>
|
70
|
+
<complexType name="StatusCodeType">
|
71
|
+
<sequence>
|
72
|
+
<element ref="samlp:StatusCode" minOccurs="0"/>
|
73
|
+
</sequence>
|
74
|
+
<attribute name="Value" type="anyURI" use="required"/>
|
75
|
+
</complexType>
|
76
|
+
<element name="StatusMessage" type="string"/>
|
77
|
+
<element name="StatusDetail" type="samlp:StatusDetailType"/>
|
78
|
+
<complexType name="StatusDetailType">
|
79
|
+
<sequence>
|
80
|
+
<any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
81
|
+
</sequence>
|
82
|
+
</complexType>
|
83
|
+
<element name="AssertionIDRequest" type="samlp:AssertionIDRequestType"/>
|
84
|
+
<complexType name="AssertionIDRequestType">
|
85
|
+
<complexContent>
|
86
|
+
<extension base="samlp:RequestAbstractType">
|
87
|
+
<sequence>
|
88
|
+
<element ref="saml:AssertionIDRef" maxOccurs="unbounded"/>
|
89
|
+
</sequence>
|
90
|
+
</extension>
|
91
|
+
</complexContent>
|
92
|
+
</complexType>
|
93
|
+
<element name="SubjectQuery" type="samlp:SubjectQueryAbstractType"/>
|
94
|
+
<complexType name="SubjectQueryAbstractType" abstract="true">
|
95
|
+
<complexContent>
|
96
|
+
<extension base="samlp:RequestAbstractType">
|
97
|
+
<sequence>
|
98
|
+
<element ref="saml:Subject"/>
|
99
|
+
</sequence>
|
100
|
+
</extension>
|
101
|
+
</complexContent>
|
102
|
+
</complexType>
|
103
|
+
<element name="AuthnQuery" type="samlp:AuthnQueryType"/>
|
104
|
+
<complexType name="AuthnQueryType">
|
105
|
+
<complexContent>
|
106
|
+
<extension base="samlp:SubjectQueryAbstractType">
|
107
|
+
<sequence>
|
108
|
+
<element ref="samlp:RequestedAuthnContext" minOccurs="0"/>
|
109
|
+
</sequence>
|
110
|
+
<attribute name="SessionIndex" type="string" use="optional"/>
|
111
|
+
</extension>
|
112
|
+
</complexContent>
|
113
|
+
</complexType>
|
114
|
+
<element name="RequestedAuthnContext" type="samlp:RequestedAuthnContextType"/>
|
115
|
+
<complexType name="RequestedAuthnContextType">
|
116
|
+
<choice>
|
117
|
+
<element ref="saml:AuthnContextClassRef" maxOccurs="unbounded"/>
|
118
|
+
<element ref="saml:AuthnContextDeclRef" maxOccurs="unbounded"/>
|
119
|
+
</choice>
|
120
|
+
<attribute name="Comparison" type="samlp:AuthnContextComparisonType" use="optional"/>
|
121
|
+
</complexType>
|
122
|
+
<simpleType name="AuthnContextComparisonType">
|
123
|
+
<restriction base="string">
|
124
|
+
<enumeration value="exact"/>
|
125
|
+
<enumeration value="minimum"/>
|
126
|
+
<enumeration value="maximum"/>
|
127
|
+
<enumeration value="better"/>
|
128
|
+
</restriction>
|
129
|
+
</simpleType>
|
130
|
+
<element name="AttributeQuery" type="samlp:AttributeQueryType"/>
|
131
|
+
<complexType name="AttributeQueryType">
|
132
|
+
<complexContent>
|
133
|
+
<extension base="samlp:SubjectQueryAbstractType">
|
134
|
+
<sequence>
|
135
|
+
<element ref="saml:Attribute" minOccurs="0" maxOccurs="unbounded"/>
|
136
|
+
</sequence>
|
137
|
+
</extension>
|
138
|
+
</complexContent>
|
139
|
+
</complexType>
|
140
|
+
<element name="AuthzDecisionQuery" type="samlp:AuthzDecisionQueryType"/>
|
141
|
+
<complexType name="AuthzDecisionQueryType">
|
142
|
+
<complexContent>
|
143
|
+
<extension base="samlp:SubjectQueryAbstractType">
|
144
|
+
<sequence>
|
145
|
+
<element ref="saml:Action" maxOccurs="unbounded"/>
|
146
|
+
<element ref="saml:Evidence" minOccurs="0"/>
|
147
|
+
</sequence>
|
148
|
+
<attribute name="Resource" type="anyURI" use="required"/>
|
149
|
+
</extension>
|
150
|
+
</complexContent>
|
151
|
+
</complexType>
|
152
|
+
<element name="AuthnRequest" type="samlp:AuthnRequestType"/>
|
153
|
+
<complexType name="AuthnRequestType">
|
154
|
+
<complexContent>
|
155
|
+
<extension base="samlp:RequestAbstractType">
|
156
|
+
<sequence>
|
157
|
+
<element ref="saml:Subject" minOccurs="0"/>
|
158
|
+
<element ref="samlp:NameIDPolicy" minOccurs="0"/>
|
159
|
+
<element ref="saml:Conditions" minOccurs="0"/>
|
160
|
+
<element ref="samlp:RequestedAuthnContext" minOccurs="0"/>
|
161
|
+
<element ref="samlp:Scoping" minOccurs="0"/>
|
162
|
+
</sequence>
|
163
|
+
<attribute name="ForceAuthn" type="boolean" use="optional"/>
|
164
|
+
<attribute name="IsPassive" type="boolean" use="optional"/>
|
165
|
+
<attribute name="ProtocolBinding" type="anyURI" use="optional"/>
|
166
|
+
<attribute name="AssertionConsumerServiceIndex" type="unsignedShort" use="optional"/>
|
167
|
+
<attribute name="AssertionConsumerServiceURL" type="anyURI" use="optional"/>
|
168
|
+
<attribute name="AttributeConsumingServiceIndex" type="unsignedShort" use="optional"/>
|
169
|
+
<attribute name="ProviderName" type="string" use="optional"/>
|
170
|
+
</extension>
|
171
|
+
</complexContent>
|
172
|
+
</complexType>
|
173
|
+
<element name="NameIDPolicy" type="samlp:NameIDPolicyType"/>
|
174
|
+
<complexType name="NameIDPolicyType">
|
175
|
+
<attribute name="Format" type="anyURI" use="optional"/>
|
176
|
+
<attribute name="SPNameQualifier" type="string" use="optional"/>
|
177
|
+
<attribute name="AllowCreate" type="boolean" use="optional"/>
|
178
|
+
</complexType>
|
179
|
+
<element name="Scoping" type="samlp:ScopingType"/>
|
180
|
+
<complexType name="ScopingType">
|
181
|
+
<sequence>
|
182
|
+
<element ref="samlp:IDPList" minOccurs="0"/>
|
183
|
+
<element ref="samlp:RequesterID" minOccurs="0" maxOccurs="unbounded"/>
|
184
|
+
</sequence>
|
185
|
+
<attribute name="ProxyCount" type="nonNegativeInteger" use="optional"/>
|
186
|
+
</complexType>
|
187
|
+
<element name="RequesterID" type="anyURI"/>
|
188
|
+
<element name="IDPList" type="samlp:IDPListType"/>
|
189
|
+
<complexType name="IDPListType">
|
190
|
+
<sequence>
|
191
|
+
<element ref="samlp:IDPEntry" maxOccurs="unbounded"/>
|
192
|
+
<element ref="samlp:GetComplete" minOccurs="0"/>
|
193
|
+
</sequence>
|
194
|
+
</complexType>
|
195
|
+
<element name="IDPEntry" type="samlp:IDPEntryType"/>
|
196
|
+
<complexType name="IDPEntryType">
|
197
|
+
<attribute name="ProviderID" type="anyURI" use="required"/>
|
198
|
+
<attribute name="Name" type="string" use="optional"/>
|
199
|
+
<attribute name="Loc" type="anyURI" use="optional"/>
|
200
|
+
</complexType>
|
201
|
+
<element name="GetComplete" type="anyURI"/>
|
202
|
+
<element name="Response" type="samlp:ResponseType"/>
|
203
|
+
<complexType name="ResponseType">
|
204
|
+
<complexContent>
|
205
|
+
<extension base="samlp:StatusResponseType">
|
206
|
+
<choice minOccurs="0" maxOccurs="unbounded">
|
207
|
+
<element ref="saml:Assertion"/>
|
208
|
+
<element ref="saml:EncryptedAssertion"/>
|
209
|
+
</choice>
|
210
|
+
</extension>
|
211
|
+
</complexContent>
|
212
|
+
</complexType>
|
213
|
+
<element name="ArtifactResolve" type="samlp:ArtifactResolveType"/>
|
214
|
+
<complexType name="ArtifactResolveType">
|
215
|
+
<complexContent>
|
216
|
+
<extension base="samlp:RequestAbstractType">
|
217
|
+
<sequence>
|
218
|
+
<element ref="samlp:Artifact"/>
|
219
|
+
</sequence>
|
220
|
+
</extension>
|
221
|
+
</complexContent>
|
222
|
+
</complexType>
|
223
|
+
<element name="Artifact" type="string"/>
|
224
|
+
<element name="ArtifactResponse" type="samlp:ArtifactResponseType"/>
|
225
|
+
<complexType name="ArtifactResponseType">
|
226
|
+
<complexContent>
|
227
|
+
<extension base="samlp:StatusResponseType">
|
228
|
+
<sequence>
|
229
|
+
<any namespace="##any" processContents="lax" minOccurs="0"/>
|
230
|
+
</sequence>
|
231
|
+
</extension>
|
232
|
+
</complexContent>
|
233
|
+
</complexType>
|
234
|
+
<element name="ManageNameIDRequest" type="samlp:ManageNameIDRequestType"/>
|
235
|
+
<complexType name="ManageNameIDRequestType">
|
236
|
+
<complexContent>
|
237
|
+
<extension base="samlp:RequestAbstractType">
|
238
|
+
<sequence>
|
239
|
+
<choice>
|
240
|
+
<element ref="saml:NameID"/>
|
241
|
+
<element ref="saml:EncryptedID"/>
|
242
|
+
</choice>
|
243
|
+
<choice>
|
244
|
+
<element ref="samlp:NewID"/>
|
245
|
+
<element ref="samlp:NewEncryptedID"/>
|
246
|
+
<element ref="samlp:Terminate"/>
|
247
|
+
</choice>
|
248
|
+
</sequence>
|
249
|
+
</extension>
|
250
|
+
</complexContent>
|
251
|
+
</complexType>
|
252
|
+
<element name="NewID" type="string"/>
|
253
|
+
<element name="NewEncryptedID" type="saml:EncryptedElementType"/>
|
254
|
+
<element name="Terminate" type="samlp:TerminateType"/>
|
255
|
+
<complexType name="TerminateType"/>
|
256
|
+
<element name="ManageNameIDResponse" type="samlp:StatusResponseType"/>
|
257
|
+
<element name="LogoutRequest" type="samlp:LogoutRequestType"/>
|
258
|
+
<complexType name="LogoutRequestType">
|
259
|
+
<complexContent>
|
260
|
+
<extension base="samlp:RequestAbstractType">
|
261
|
+
<sequence>
|
262
|
+
<choice>
|
263
|
+
<element ref="saml:BaseID"/>
|
264
|
+
<element ref="saml:NameID"/>
|
265
|
+
<element ref="saml:EncryptedID"/>
|
266
|
+
</choice>
|
267
|
+
<element ref="samlp:SessionIndex" minOccurs="0" maxOccurs="unbounded"/>
|
268
|
+
</sequence>
|
269
|
+
<attribute name="Reason" type="string" use="optional"/>
|
270
|
+
<attribute name="NotOnOrAfter" type="dateTime" use="optional"/>
|
271
|
+
</extension>
|
272
|
+
</complexContent>
|
273
|
+
</complexType>
|
274
|
+
<element name="SessionIndex" type="string"/>
|
275
|
+
<element name="LogoutResponse" type="samlp:StatusResponseType"/>
|
276
|
+
<element name="NameIDMappingRequest" type="samlp:NameIDMappingRequestType"/>
|
277
|
+
<complexType name="NameIDMappingRequestType">
|
278
|
+
<complexContent>
|
279
|
+
<extension base="samlp:RequestAbstractType">
|
280
|
+
<sequence>
|
281
|
+
<choice>
|
282
|
+
<element ref="saml:BaseID"/>
|
283
|
+
<element ref="saml:NameID"/>
|
284
|
+
<element ref="saml:EncryptedID"/>
|
285
|
+
</choice>
|
286
|
+
<element ref="samlp:NameIDPolicy"/>
|
287
|
+
</sequence>
|
288
|
+
</extension>
|
289
|
+
</complexContent>
|
290
|
+
</complexType>
|
291
|
+
<element name="NameIDMappingResponse" type="samlp:NameIDMappingResponseType"/>
|
292
|
+
<complexType name="NameIDMappingResponseType">
|
293
|
+
<complexContent>
|
294
|
+
<extension base="samlp:StatusResponseType">
|
295
|
+
<choice>
|
296
|
+
<element ref="saml:NameID"/>
|
297
|
+
<element ref="saml:EncryptedID"/>
|
298
|
+
</choice>
|
299
|
+
</extension>
|
300
|
+
</complexContent>
|
301
|
+
</complexType>
|
302
|
+
</schema>
|