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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
|
<?xml version="1.0" encoding="utf-8"?>
<!--
OASIS takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the
implementation or use of the technology described in this document or the extent to which any license under such rights might or might not be available;
neither does it represent that it has made any effort to identify any such rights. Information on OASIS's procedures with respect to rights in OASIS
specifications can be found at the OASIS website. Copies of claims of rights made available for publication and any assurances of licenses to be made
available, or the result of an attempt made to obtain a general license or permission for the use of such proprietary rights by implementors or users
of this specification, can be obtained from the OASIS Executive Director.
OASIS invites any interested party to bring to its attention any copyrights, patents or patent applications, or other proprietary rights which may
cover technology that may be required to implement this specification. Please address the information to the OASIS Executive Director.
Copyright © OASIS Open 2002-2007. All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist
in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the
above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself does not be modified
in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications,
in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate
it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
This document and the information contained herein is provided on an AS IS basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
-->
<xs:schema
targetNamespace='http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702'
xmlns:tns='http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702'
xmlns:wsa="http://www.w3.org/2005/08/addressing"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified"
blockDefault="#all" >
<xs:import namespace="http://www.w3.org/2005/08/addressing" schemaLocation="ws-addr.xsd" />
<!--
4. Protection Assertions
-->
<xs:element name="SignedParts" type="tns:SePartsType">
<xs:annotation>
<xs:documentation xml:lang="en">
4.1.1 SignedParts Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EncryptedParts" type="tns:SePartsType" >
<xs:annotation>
<xs:documentation xml:lang="en">
4.2.1 EncryptedParts Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SePartsType">
<xs:sequence>
<xs:element name="Body" type="tns:EmptyType" minOccurs="0" />
<xs:element name="Header" type="tns:HeaderType" minOccurs="0" maxOccurs="unbounded" />
<xs:element name="Attachments" type="tns:EmptyType" minOccurs="0" />
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
</xs:sequence>
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:complexType name="EmptyType" />
<xs:complexType name="HeaderType" >
<xs:attribute name="Name" type="xs:QName" use="optional" />
<xs:attribute name="Namespace" type="xs:anyURI" use="required" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="SignedElements" type="tns:SerElementsType" >
<xs:annotation>
<xs:documentation xml:lang="en" >
4.1.2 SignedElements Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EncryptedElements" type="tns:SerElementsType" >
<xs:annotation>
<xs:documentation xml:lang="en">
4.2.2 EncryptedElements Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequiredElements" type="tns:SerElementsType" >
<xs:annotation>
<xs:documentation xml:lang="en" >
4.3.1 RequiredElements Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SerElementsType">
<xs:sequence>
<xs:element name="XPath" type="xs:string" minOccurs="1" maxOccurs="unbounded" />
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
</xs:sequence>
<xs:attribute name="XPathVersion" type="xs:anyURI" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<!--
5. Token Assertions
-->
<xs:attribute name="IncludeToken" type="tns:IncludeTokenOpenType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.1 Token Inclusion
</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:simpleType name="IncludeTokenOpenType">
<xs:union memberTypes="tns:IncludeTokenType xs:anyURI" />
</xs:simpleType>
<xs:simpleType name="IncludeTokenType">
<xs:restriction base="xs:anyURI" >
<xs:enumeration value="http://docs.oasis-open.org/ws-sx/ws-trust/200702/ws-securitypolicy/IncludeToken/Never" />
<xs:enumeration value="http://docs.oasis-open.org/ws-sx/ws-trust/200702/ws-securitypolicy/IncludeToken/Once" />
<xs:enumeration value="http://docs.oasis-open.org/ws-sx/ws-trust/200702/ws-securitypolicy/IncludeToken/AlwaysToRecipient" />
<xs:enumeration value="http://docs.oasis-open.org/ws-sx/ws-trust/200702/ws-securitypolicy/IncludeToken/AlwaysToInitiator" />
<xs:enumeration value="http://docs.oasis-open.org/ws-sx/ws-trust/200702/ws-securitypolicy/IncludeToken/Always" />
</xs:restriction>
</xs:simpleType>
<xs:element name="UsernameToken" type="tns:TokenAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en" >
5.4.1 UsernameToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="TokenAssertionType">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="Issuer" type="wsa:EndpointReferenceType" />
<xs:element name="IssuerName" type="xs:anyURI" />
</xs:choice>
<!--
Actual content model is non-deterministic, hence wildcard. The following shows intended content model:
<xs:element ref="wsp:Policy" minOccurs="0" />
-->
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
</xs:sequence>
<xs:attribute ref="tns:IncludeToken" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="NoPassword" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.1 UsernameToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HashPassword" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.1 UsernameToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssUsernameToken10" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.1 UsernameToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssUsernameToken11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.1 UsernameToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined below. -->
<!-- RequireImpliedDerivedKeys defined below. -->
<!-- RequireExplicitDerivedKeys defined below. -->
<xs:complexType name="QNameAssertionType">
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="IssuedToken" type="tns:IssuedTokenType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="IssuedTokenType">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="Issuer" type="wsa:EndpointReferenceType" />
<xs:element name="IssuerName" type="xs:anyURI" />
</xs:choice>
<xs:element name="RequestSecurityTokenTemplate" type="tns:RequestSecurityTokenTemplateType" />
<!--
Actual content model is non-deterministic, hence wildcard. The following shows intended content model:
<xs:element ref="wsp:Policy" minOccurs="0" />
-->
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax" />
</xs:sequence>
<xs:attribute ref="tns:IncludeToken" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:complexType name="RequestSecurityTokenTemplateType">
<xs:sequence>
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax" />
</xs:sequence>
<xs:attribute name="TrustVersion" type="xs:anyURI" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="RequireDerivedKeys" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireImpliedDerivedKeys" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireExplicitDerivedKeys" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireExternalReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireInternalReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.2 IssuedToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="X509Token" type="tns:TokenAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<xs:element name="RequireKeyIdentifierReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireIssuerSerialReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireEmbeddedTokenReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireThumbprintReference" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509V3Token10" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509Pkcs7Token10" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509PkiPathV1Token10" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509V1Token11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509V3Token11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509Pkcs7Token11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssX509PkiPathV1Token11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.3 X509Token Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KerberosToken" type="tns:TokenAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.4 KerberosToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<!-- RequireKeyIdentifierReference defined above. -->
<xs:element name="WssKerberosV5ApReqToken11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.4 KerberosToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssGssKerberosV5ApReqToken11" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.4 KerberosToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SpnegoContextToken" type="tns:SpnegoContextTokenType" >
<xs:annotation>
<xs:documentation xml:lang="en" >
5.4.5 SpnegoContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SpnegoContextTokenType">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="Issuer" type="wsa:EndpointReferenceType" />
<xs:element name="IssuerName" type="xs:anyURI" />
</xs:choice>
<!--
Actual content model is non-deterministic, hence wildcard. The following shows intended content model:
<xs:element ref="wsp:Policy" minOccurs="0" />
-->
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax" />
</xs:sequence>
<xs:attribute ref="tns:IncludeToken" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<xs:element name="MustNotSendCancel" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.5 SpnegoContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustNotSendAmend" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.5 SpnegoContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustNotSendRenew" type="tns:QNameAssertionType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.5 SpnegoContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SecurityContextToken" type="tns:TokenAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.6 SecurityContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<xs:element name="RequireExternalUriReference" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.6 SecurityContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SC13SecurityContextToken" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.6 SecurityContextToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SecureConversationToken" type="tns:SecureConversationTokenType" >
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.7 SecureConversationToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="SecureConversationTokenType">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="Issuer" type="wsa:EndpointReferenceType" />
<xs:element name="IssuerName" type="xs:anyURI" />
</xs:choice>
<!--
Actual content model is non-deterministic, hence wildcard. The following shows intended content model:
<xs:element ref="wsp:Policy" minOccurs="0" />
-->
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax" />
</xs:sequence>
<xs:attribute ref="tns:IncludeToken" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<!-- RequireExternalUriReference defined above. -->
<!-- SC13SecurityContextToken defined above. -->
<!-- MustNotSendCancel defined above. -->
<!-- MustNotSendAmend defined above. -->
<!-- MustNotSendRenew defined above. -->
<xs:element name="BootstrapPolicy" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.7 SecureConversationToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SamlToken" type="tns:TokenAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en" >
5.4.8 SamlToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<!-- RequireKeyIdentifierReference defined above. -->
<xs:element name="WssSamlV11Token10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.8 SamlToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssSamlV11Token11" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.8 SamlToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssSamlV20Token11" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.8 SamlToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RelToken" type="tns:TokenAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.9 RelToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- RequireDerivedKeys defined above. -->
<!-- RequireImpliedDerivedKeys defined above. -->
<!-- RequireExplicitDerivedKeys defined above. -->
<!-- RequireKeyIdentifierReference defined above. -->
<xs:element name="WssRelV10Token10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.9 RelToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssRelV20Token10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.9 RelToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssRelV10Token11" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.9 RelToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="WssRelV20Token11" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.9 RelToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HttpsToken" type="tns:TokenAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.10 HttpsToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HttpBasicAuthentication" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.10 HttpsToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HttpDigestAuthentication" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.10 HttpsToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireClientCertificate" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.10 HttpsToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="KeyValueToken" type="tns:KeyValueTokenType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.11 KeyValueToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="KeyValueTokenType">
<xs:sequence>
<!--
Actual content model is non-deterministic, hence wildcard. The following shows intended content model:
<xs:element ref="wsp:Policy" minOccurs="0" />
-->
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax" />
</xs:sequence>
<xs:attribute ref="tns:IncludeToken" use="optional" />
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="RsaKeyValue" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
5.4.11 KeyValueToken Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!--
7. Security Binding Assertions
-->
<xs:element name="AlgorithmSuite" type="tns:NestedPolicyType" >
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="NestedPolicyType">
<xs:sequence>
<xs:any minOccurs="0" maxOccurs="unbounded" namespace="##other" processContents="lax"/>
</xs:sequence>
<xs:anyAttribute namespace="##any" processContents="lax" />
</xs:complexType>
<xs:element name="Basic256" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic192" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic128" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TripleDes" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic256Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic192Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic128Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TripleDesRsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic256Sha256" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic192Sha256" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic128Sha256" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TripleDesSha256" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic256Sha256Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic192Sha256Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Basic128Sha256Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TripleDesSha256Rsa15" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InclusiveC14N" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SOAPNormalization10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="STRTransform10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="XPath10" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="XPathFilter20" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AbsXPath" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.1 AlgorithmSuite Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Layout" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.2 Layout Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Strict" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.2 Layout Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Lax" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.2 Layout Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LaxTsFirst" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.2 Layout Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="LaxTsLast" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.2 Layout Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TransportBinding" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.3 TransportBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TransportToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.3 TransportBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- Layout defined above. -->
<xs:element name="IncludeTimestamp" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.3 TransportBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SymmetricBinding" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EncryptionToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="SignatureToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8=7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProtectionToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- Layout defined above. -->
<!-- IncludeTimestamp defined above. -->
<xs:element name="EncryptBeforeSigning" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="EncryptSignature" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProtectTokens" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="OnlySignEntireHeadersAndBody" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.4 SymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AsymmetricBinding" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InitiatorToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InitiatorSignatureToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="InitiatorEncryptionToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RecipientToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RecipientSignatureToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RecipientEncryptionToken" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
7.5 AsymmetricBinding Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- Layout defined above. -->
<!-- IncludeTimestamp defined above. -->
<!-- EncryptBeforeSigning defined above. -->
<!-- EncryptSignature defined above. -->
<!-- ProtectTokens defined above. -->
<!-- OnlySignEntireHeadersAndBody defined above. -->
<!--
8. Supporting Tokens
-->
<xs:element name="SupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.1 SupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="SignedSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.2 SignedSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="EndorsingSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.3 EndorsingSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="SignedEndorsingSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.4 SignedEndorsingSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="SignedEncryptedSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.5 SignedEncryptedSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="EncryptedSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.6 EncryptedSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="EndorsingEncryptedSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.7 EndorsingEncryptedSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<xs:element name="SignedEndorsingEncryptedSupportingTokens" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
8.8 SignedEndorsingEncryptedSupportingTokens Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- AlgorithmSuite defined above. -->
<!-- SignedParts defined above. -->
<!-- SignedElements defined above. -->
<!-- EncryptedParts defined above. -->
<!-- EncryptedElements defined above. -->
<!--
9. WSS: SOAP Message Security Options
-->
<xs:element name="Wss10" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.1 Wss10 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportRefKeyIdentifier" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.1 Wss10 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportRefIssuerSerial" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.1 Wss10 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportRefExternalURI" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.1 Wss10 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportRefEmbeddedToken" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.1 Wss10 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Wss11" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.2 Wss11 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!-- MustSupportRefKeyIdentifier defined above. -->
<!-- MustSupportRefIssuerSerial defined above. -->
<!-- MustSupportRefExternalURI defined above. -->
<!-- MustSupportRefEmbeddedToken defined above. -->
<xs:element name="MustSupportRefThumbprint" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.2 Wss11 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportRefEncryptedKey" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.2 Wss11 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireSignatureConfirmation" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
9.2 Wss11 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<!--
10. WS-Trust Options
-->
<xs:element name="Trust13" type="tns:NestedPolicyType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportClientChallenge" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportServerChallenge" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireClientEntropy" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireServerEntropy" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="MustSupportIssuedTokens" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireRequestSecurityTokenCollection" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="RequireAppiesTo" type="tns:QNameAssertionType">
<xs:annotation>
<xs:documentation xml:lang="en">
10.1 Trust13 Assertion
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:schema>
|