soteria 1.0.0 → 1.0.2

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.
@@ -0,0 +1,1240 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:vips="https://schemas.vip.symantec.com/2006/08/vipservice" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="https://schemas.vip.symantec.com/2006/08/vipservice">
2
+
3
+ <!--
4
+ Copyright VeriSign, Inc. All rights reserved.
5
+ -->
6
+ <!--VIP Services Schema -->
7
+ <annotation>
8
+ <documentation xml:lang="en">XML Schema for VeriSign UA Web Services</documentation>
9
+ </annotation>
10
+ <!-- MessageAbstractType -->
11
+ <complexType abstract="true" name="MessageAbstractType">
12
+ <annotation>
13
+ <documentation xml:lang="en">
14
+ Abstract class for all messages that are part of the UA Web Service.
15
+ </documentation>
16
+ </annotation>
17
+ <attribute name="Version" type="vips:VersionType" use="required"/>
18
+ </complexType>
19
+ <!-- VersionType -->
20
+ <simpleType final="restriction" name="VersionType">
21
+ <restriction base="string">
22
+ <pattern value="\d{1,9}\.\d{0,9}"/>
23
+ </restriction>
24
+ </simpleType>
25
+ <!-- AccountIdType -->
26
+ <simpleType name="AccountIdType">
27
+ <restriction base="string">
28
+ <minLength value="1"/>
29
+ <maxLength value="32"/>
30
+ <pattern value="[a-zA-Z0-9]+"/>
31
+ </restriction>
32
+ </simpleType>
33
+ <!-- RequestAbstractType -->
34
+ <complexType abstract="true" name="RequestAbstractType">
35
+ <annotation>
36
+ <documentation xml:lang="en">
37
+ Abstract class for all request messages that are supported by the UA Web Service. Id is a pseudo-random number used for request-response matching.
38
+ </documentation>
39
+ </annotation>
40
+ <complexContent>
41
+ <extension base="vips:MessageAbstractType">
42
+ <sequence>
43
+
44
+ </sequence>
45
+ <attribute name="Id" type="vips:IdType" use="optional"/>
46
+ </extension>
47
+ </complexContent>
48
+ </complexType>
49
+ <!-- IdType -->
50
+ <simpleType name="IdType">
51
+ <restriction base="string">
52
+ <maxLength value="40"/>
53
+ </restriction>
54
+ </simpleType>
55
+ <!-- AccountRequestAbstractType -->
56
+ <complexType abstract="true" name="AccountRequestAbstractType">
57
+ <annotation>
58
+ <documentation xml:lang="en">
59
+ Abstract class for all request messages that are supported by the UA Web Service. Id is a pseudo-random number used for request-response matching.
60
+ </documentation>
61
+ </annotation>
62
+ <complexContent>
63
+ <extension base="vips:RequestAbstractType">
64
+ <sequence>
65
+ <element minOccurs="0" name="AuthorizerAccountId" type="vips:AccountIdType"/>
66
+ </sequence>
67
+ </extension>
68
+ </complexContent>
69
+ </complexType>
70
+ <!-- TokenRequestType -->
71
+ <complexType abstract="true" name="TokenRequestType">
72
+ <annotation>
73
+ <documentation xml:lang="en">
74
+ class for all request messages that have token id
75
+ </documentation>
76
+ </annotation>
77
+ <complexContent>
78
+ <extension base="vips:AccountRequestAbstractType">
79
+ <sequence>
80
+ <element ref="vips:TokenId"/>
81
+ </sequence>
82
+ </extension>
83
+ </complexContent>
84
+ </complexType>
85
+
86
+ <!-- MultipleTokensRequestType -->
87
+ <complexType abstract="true" name="MultipleTokensRequestType">
88
+ <annotation>
89
+ <documentation xml:lang="en">
90
+ class for all request messages that have token id
91
+ </documentation>
92
+ </annotation>
93
+ <complexContent>
94
+ <extension base="vips:AccountRequestAbstractType">
95
+ <sequence>
96
+ <element maxOccurs="5" minOccurs="1" name="TokenIds" type="vips:TokenIdType"/>
97
+ </sequence>
98
+ </extension>
99
+ </complexContent>
100
+ </complexType>
101
+
102
+ <!-- ResponseAbstractType -->
103
+ <complexType abstract="true" name="ResponseAbstractType">
104
+ <annotation>
105
+ <documentation xml:lang="en">
106
+ Abstract class for all responses sent by the UA Web Service.
107
+ RequestId contains the Id received in the request.
108
+ </documentation>
109
+ </annotation>
110
+ <complexContent>
111
+ <extension base="vips:MessageAbstractType">
112
+ <attribute name="RequestId" type="vips:IdType" use="optional"/>
113
+ </extension>
114
+ </complexContent>
115
+ </complexType>
116
+ <element name="ErrorResponse" type="vips:ResponseWithStatusType"/>
117
+ <!-- ResponseWithStatusType -->
118
+ <complexType name="ResponseWithStatusType">
119
+ <annotation>
120
+ <documentation xml:lang="en">
121
+ Generic Status response for the UA Web Service.
122
+ Status Response messages also contains a status indicating success or cause of failure.
123
+ </documentation>
124
+ </annotation>
125
+ <complexContent>
126
+ <extension base="vips:ResponseAbstractType">
127
+ <sequence>
128
+ <element name="Status" type="vips:StatusType"/>
129
+ </sequence>
130
+ </extension>
131
+ </complexContent>
132
+ </complexType>
133
+ <!-- StatusType -->
134
+ <complexType name="StatusType">
135
+ <annotation>
136
+ <documentation xml:lang="en">
137
+ Contains a status code indicating success or causes of failure and
138
+ also a status message that contains a brief description.
139
+ </documentation>
140
+ </annotation>
141
+ <sequence>
142
+ <element ref="vips:ReasonCode"/>
143
+ <element minOccurs="0" name="StatusMessage" type="string"/>
144
+ <element minOccurs="0" name="ErrorDetail" type="string"/>
145
+ </sequence>
146
+ </complexType>
147
+ <element name="ReasonCode" type="hexBinary"/>
148
+ <element name="TokenStatus" type="vips:TokenStatusType"/>
149
+ <!-- TokenStatusType -->
150
+ <simpleType name="TokenStatusType">
151
+ <annotation>
152
+ <documentation xml:lang="en">
153
+ Can contain one of the following token status values.
154
+ </documentation>
155
+ </annotation>
156
+ <restriction base="string">
157
+ <enumeration value="NEW"/>
158
+ <enumeration value="ENABLED"/>
159
+ <enumeration value="DISABLED"/>
160
+ <enumeration value="LOCKED"/>
161
+ <enumeration value="INACTIVE"/>
162
+ <enumeration value="UNKNOWN"/>
163
+ </restriction>
164
+ </simpleType>
165
+ <element name="TokenCategory" type="vips:TokenCategoryType"/>
166
+ <!-- TokenCategoryType -->
167
+ <simpleType name="TokenCategoryType">
168
+ <annotation>
169
+ <documentation xml:lang="en">
170
+ Can contain one of the following token category values.
171
+ </documentation>
172
+ </annotation>
173
+ <restriction base="string">
174
+ <enumeration value="OATH_EVENT"/>
175
+ <enumeration value="VASCO_TIME"/>
176
+ <enumeration value="SERVER_OTP"/>
177
+ <enumeration value="OATH_TIME"/>
178
+ <enumeration value="SMS_OTP"/>
179
+ </restriction>
180
+ </simpleType>
181
+ <element name="TokenStatusCount" type="vips:TokenStatusCountType"/>
182
+ <!-- TokenStatusCountType -->
183
+ <complexType name="TokenStatusCountType">
184
+ <annotation>
185
+ <documentation xml:lang="en">
186
+ Contains the counts of a tokens in a particular status.
187
+ </documentation>
188
+ </annotation>
189
+ <sequence>
190
+ <element ref="vips:TokenStatus"/>
191
+ <element name="Count" type="integer"/>
192
+ </sequence>
193
+ </complexType>
194
+ <element name="TokenInformation" type="vips:TokenInformationType"/>
195
+ <!-- TokenInformationType -->
196
+ <complexType name="TokenInformationType">
197
+ <annotation>
198
+ <documentation xml:lang="en">
199
+ Contains the information about a token.
200
+ </documentation>
201
+ </annotation>
202
+ <sequence>
203
+ <element ref="vips:TokenId"/>
204
+ <element minOccurs="0" name="TokenKind" type="string"/>
205
+ <element ref="vips:Adapter"/>
206
+ <element ref="vips:TokenStatus"/>
207
+ <element name="ExpirationDate" type="dateTime"/>
208
+ <element minOccurs="0" name="TempPasswordExpirationDate" type="dateTime"/>
209
+ <element minOccurs="0" name="TempPasswordOneTimeUse" type="boolean"/>
210
+ <element name="LastUpdate" type="dateTime"/>
211
+ <element minOccurs="0" name="ServerOTPExpires" type="integer"/>
212
+ <element minOccurs="0" name="TokenGroupId" type="string"/>
213
+ <element minOccurs="0" name="Owner" type="boolean"/>
214
+ <element minOccurs="0" name="ReportedReason" type="vips:ReasonType"/>
215
+ </sequence>
216
+ </complexType>
217
+
218
+ <!-- TokenInformationType -->
219
+ <complexType name="ChallengeResponseFormatType">
220
+ <annotation>
221
+ <documentation xml:lang="en">
222
+ Contains information on the challenge/response formats.
223
+ </documentation>
224
+ </annotation>
225
+ <sequence>
226
+ <element name="ChallengeFormat" type="vips:ChallengeFormatType"/>
227
+ <element name="ChallengeLength" type="int"/>
228
+ <element name="ResponseLength" type="int"/>
229
+ </sequence>
230
+ </complexType>
231
+
232
+ <simpleType name="ChallengeFormatType">
233
+ <annotation>
234
+ <documentation xml:lang="en">
235
+ Challenge format for challenge/response based authentication.
236
+ </documentation>
237
+ </annotation>
238
+ <restriction base="string">
239
+ <enumeration value="NUMERIC"/>
240
+ <enumeration value="HEX"/>
241
+ </restriction>
242
+ </simpleType>
243
+
244
+ <simpleType name="OCRAUsageType">
245
+ <restriction base="string">
246
+ <enumeration value="SIGNING"/>
247
+ </restriction>
248
+ </simpleType>
249
+
250
+ <element name="FeatureList" type="vips:FeatureListType"/>
251
+ <!-- AccountInformationType -->
252
+ <complexType name="FeatureListType">
253
+ <annotation>
254
+ <documentation xml:lang="en">
255
+ Contains the information of an account.
256
+ </documentation>
257
+ </annotation>
258
+ <sequence>
259
+ <element name="TokenShared" type="boolean"/>
260
+ </sequence>
261
+ </complexType>
262
+ <element name="AccountInformation" type="vips:AccountInformationType"/>
263
+ <!-- AccountInformationType -->
264
+ <complexType name="AccountInformationType">
265
+ <annotation>
266
+ <documentation xml:lang="en">
267
+ Contains the information of an account.
268
+ </documentation>
269
+ </annotation>
270
+ <sequence>
271
+ <element name="OrganizationName" type="string"/>
272
+ <element minOccurs="0" name="OrganizationUnit" type="string"/>
273
+ <element name="JurisdictionHash" type="string"/>
274
+ <element name="ServiceEndDate" type="dateTime"/>
275
+ </sequence>
276
+ </complexType>
277
+ <element name="Adapter" type="vips:AdapterType"/>
278
+ <!-- AdapterType -->
279
+ <simpleType name="AdapterType">
280
+ <annotation>
281
+ <documentation xml:lang="en">
282
+ Can contain one of the following adapter index values.
283
+ </documentation>
284
+ </annotation>
285
+ <restriction base="string">
286
+ <enumeration value="OATH_EVENT_BASIC"/>
287
+ <enumeration value="OATH_EVENT_ADVANCED_1"/>
288
+ <enumeration value="OATH_EVENT_ADVANCED_2"/>
289
+ <enumeration value="VASCO_TIME"/>
290
+ <enumeration value="SERVER_OTP"/>
291
+ <enumeration value="OATH_TIME"/>
292
+ <enumeration value="SMS_OTP"/>
293
+ <enumeration value="VOICE_OTP"/>
294
+ <enumeration value="SECURID"/>
295
+ <enumeration value="OCRA"/>
296
+ </restriction>
297
+ </simpleType>
298
+ <element name="AdapterInfoServerOTP" type="vips:AdapterInfoServerOTPType"/>
299
+ <!-- AdapterInfoServerOTPType -->
300
+ <complexType name="AdapterInfoServerOTPType">
301
+ <annotation>
302
+ <documentation xml:lang="en">
303
+ Contains the configuration information about the Server OTP Adapter Type.
304
+ </documentation>
305
+ </annotation>
306
+ <sequence>
307
+ <element minOccurs="0" name="MaxFailedAttempts">
308
+ <simpleType>
309
+ <restriction base="integer">
310
+ <minInclusive value="2"/>
311
+ <maxInclusive value="64"/>
312
+ </restriction>
313
+ </simpleType>
314
+ </element>
315
+ <element minOccurs="0" name="ValidityPeriod">
316
+ <simpleType>
317
+ <restriction base="integer">
318
+ <minInclusive value="60"/>
319
+ <maxInclusive value="600"/>
320
+ </restriction>
321
+ </simpleType>
322
+ </element>
323
+ </sequence>
324
+ </complexType>
325
+ <element name="AdapterInfoSMSOTP" type="vips:AdapterInfoSMSOTPType">
326
+ <unique name="uniqueMessageType">
327
+ <selector xpath=".//vips:Message"/>
328
+ <field xpath="@type"/>
329
+ </unique>
330
+ </element>
331
+ <!-- AdapterInfoSMSOTPType -->
332
+ <complexType name="AdapterInfoSMSOTPType">
333
+ <annotation>
334
+ <documentation xml:lang="en">
335
+ Contains the configuration information about the SMS OTP Adapter Type.
336
+ </documentation>
337
+ </annotation>
338
+ <complexContent>
339
+ <extension base="vips:AdapterInfoServerOTPType">
340
+ <sequence>
341
+ <element minOccurs="0" name="SMSFrom" type="vips:SMSFromType"/>
342
+ <element minOccurs="0" name="GatewayId" type="vips:GatewayIdType"/>
343
+ <element minOccurs="0" name="GatewayAcctInfo" type="vips:GatewayAcctInfoType"/>
344
+ <element maxOccurs="100" minOccurs="0" name="Message">
345
+ <complexType>
346
+ <simpleContent>
347
+ <extension base="string">
348
+ <attribute name="type" type="vips:MessageType" use="required"/>
349
+ </extension>
350
+ </simpleContent>
351
+ </complexType>
352
+ </element>
353
+ </sequence>
354
+ </extension>
355
+ </complexContent>
356
+ </complexType>
357
+
358
+ <simpleType name="GatewayIdType">
359
+ <restriction base="string">
360
+ <enumeration value="IMN"/>
361
+ <enumeration value="HKCSL"/>
362
+ <enumeration value="SINGTEL"/>
363
+ <enumeration value="TELESIGN"/>
364
+ <enumeration value="DEFAULT"/>
365
+ </restriction>
366
+ </simpleType>
367
+
368
+ <!-- Element AdapterInfoVoiceOTP-->
369
+ <element name="AdapterInfoVoiceOTP" type="vips:AdapterInfoVoiceOTPType"/>
370
+ <!-- AdapterInfoVoiceOTPType -->
371
+ <complexType name="AdapterInfoVoiceOTPType">
372
+ <annotation>
373
+ <documentation xml:lang="en">
374
+ Contains the configuration information about the Voice OTP Adapter Type.
375
+ </documentation>
376
+ </annotation>
377
+ <complexContent>
378
+ <extension base="vips:AdapterInfoServerOTPType">
379
+ <sequence/>
380
+ </extension>
381
+ </complexContent>
382
+ </complexType>
383
+ <element name="AdapterInfoEventBased" type="vips:AdapterInfoEventBasedType"/>
384
+ <!-- AdapterInfoEventBasedType -->
385
+ <complexType name="AdapterInfoEventBasedType">
386
+ <annotation>
387
+ <documentation xml:lang="en">
388
+ Contains the configuration information about the Event based Adapter Type.
389
+ </documentation>
390
+ </annotation>
391
+ <sequence>
392
+ <element minOccurs="0" name="MaxFailedAttempts">
393
+ <simpleType>
394
+ <restriction base="integer">
395
+ <minInclusive value="2"/>
396
+ <maxInclusive value="64"/>
397
+ </restriction>
398
+ </simpleType>
399
+ </element>
400
+ <element minOccurs="0" name="AllowGetNextOTP" type="boolean"/>
401
+ <element minOccurs="0" name="LookAheadWindow">
402
+ <simpleType>
403
+ <restriction base="integer">
404
+ <minInclusive value="2"/>
405
+ <maxInclusive value="64"/>
406
+ </restriction>
407
+ </simpleType>
408
+ </element>
409
+ <element minOccurs="0" name="SyncLookAheadWindow">
410
+ <simpleType>
411
+ <restriction base="integer">
412
+ <minInclusive value="4"/>
413
+ <maxInclusive value="1024"/>
414
+ </restriction>
415
+ </simpleType>
416
+ </element>
417
+ <element minOccurs="0" name="MaxGenNextOTP">
418
+ <simpleType>
419
+ <restriction base="integer">
420
+ <minInclusive value="1"/>
421
+ <maxInclusive value="20"/>
422
+ </restriction>
423
+ </simpleType>
424
+ </element>
425
+ <element minOccurs="0" name="AutoSyncEnable" type="boolean"/>
426
+ <element minOccurs="0" name="AutoSyncLookAheadWindow">
427
+ <simpleType>
428
+ <restriction base="integer">
429
+ <minInclusive value="3"/>
430
+ <maxInclusive value="128"/>
431
+ </restriction>
432
+ </simpleType>
433
+ </element>
434
+ <element minOccurs="0" name="AutoSyncThreshold">
435
+ <simpleType>
436
+ <restriction base="integer">
437
+ <minInclusive value="1"/>
438
+ <maxInclusive value="63"/>
439
+ </restriction>
440
+ </simpleType>
441
+ </element>
442
+ </sequence>
443
+ </complexType>
444
+ <element name="AdapterInfoTimeBased" type="vips:AdapterInfoTimeBasedType"/>
445
+ <!-- AdapterInfoTimeBasedType -->
446
+ <complexType name="AdapterInfoTimeBasedType">
447
+ <annotation>
448
+ <documentation xml:lang="en">
449
+ Contains the configuration information about the Time based Adapter Type.
450
+ </documentation>
451
+ </annotation>
452
+ <sequence>
453
+ <element minOccurs="0" name="MaxFailedAttempts">
454
+ <simpleType>
455
+ <restriction base="integer">
456
+ <minInclusive value="2"/>
457
+ <maxInclusive value="64"/>
458
+ </restriction>
459
+ </simpleType>
460
+ </element>
461
+ <element minOccurs="0" name="LookAheadWindow">
462
+ <simpleType>
463
+ <restriction base="integer">
464
+ <minInclusive value="2"/>
465
+ <maxInclusive value="64"/>
466
+ </restriction>
467
+ </simpleType>
468
+ </element>
469
+ <element minOccurs="0" name="DriftTime">
470
+ <simpleType>
471
+ <restriction base="integer">
472
+ <minInclusive value="1"/>
473
+ <maxInclusive value="2"/>
474
+ </restriction>
475
+ </simpleType>
476
+ </element>
477
+ <element minOccurs="0" name="AutoSyncEnable" type="boolean"/>
478
+ <element minOccurs="0" name="AutoSyncLookAheadWindow">
479
+ <simpleType>
480
+ <restriction base="integer">
481
+ <minInclusive value="4"/>
482
+ <maxInclusive value="128"/>
483
+ </restriction>
484
+ </simpleType>
485
+ </element>
486
+ <element minOccurs="0" name="AutoSyncThreshold">
487
+ <simpleType>
488
+ <restriction base="integer">
489
+ <minInclusive value="1"/>
490
+ <maxInclusive value="63"/>
491
+ </restriction>
492
+ </simpleType>
493
+ </element>
494
+ </sequence>
495
+ </complexType>
496
+ <element name="AdapterInfoHOTPTimeBased" type="vips:AdapterInfoHOTPTimeBasedType"/>
497
+ <!-- AdapterInfoHOTPTimeBasedType -->
498
+ <complexType name="AdapterInfoHOTPTimeBasedType">
499
+ <annotation>
500
+ <documentation xml:lang="en">
501
+ Contains the configuration information about the HOTP Time based Adapter Type.
502
+ </documentation>
503
+ </annotation>
504
+ <sequence>
505
+ <element minOccurs="0" name="MaxFailedAttempts">
506
+ <simpleType>
507
+ <restriction base="integer">
508
+ <minInclusive value="2"/>
509
+ <maxInclusive value="64"/>
510
+ </restriction>
511
+ </simpleType>
512
+ </element>
513
+ <element minOccurs="0" name="ValidationRuntimeWindow">
514
+ <simpleType>
515
+ <restriction base="integer">
516
+ <minInclusive value="2"/>
517
+ <maxInclusive value="64"/>
518
+ </restriction>
519
+ </simpleType>
520
+ </element>
521
+ <element minOccurs="0" name="RunTimeSyncWindow">
522
+ <simpleType>
523
+ <restriction base="integer">
524
+ <minInclusive value="16"/>
525
+ <maxInclusive value="256"/>
526
+ </restriction>
527
+ </simpleType>
528
+ </element>
529
+ <element minOccurs="0" name="AutoSyncEnable" type="boolean"/>
530
+ <element minOccurs="0" name="RunTimeAutoSyncWindow">
531
+ <simpleType>
532
+ <restriction base="integer">
533
+ <minInclusive value="4"/>
534
+ <maxInclusive value="128"/>
535
+ </restriction>
536
+ </simpleType>
537
+ </element>
538
+ <element minOccurs="0" name="AutoSyncThreshold">
539
+ <simpleType>
540
+ <restriction base="integer">
541
+ <minInclusive value="1"/>
542
+ <maxInclusive value="63"/>
543
+ </restriction>
544
+ </simpleType>
545
+ </element>
546
+ <element minOccurs="0" name="SuccessiveTimeStep">
547
+ <simpleType>
548
+ <restriction base="integer">
549
+ <minInclusive value="1"/>
550
+ <maxInclusive value="4"/>
551
+ </restriction>
552
+ </simpleType>
553
+ </element>
554
+ <element minOccurs="0" name="InitialValidationWindow">
555
+ <simpleType>
556
+ <restriction base="integer">
557
+ <minInclusive value="2"/>
558
+ <maxInclusive value="400"/>
559
+ </restriction>
560
+ </simpleType>
561
+ </element>
562
+ </sequence>
563
+ </complexType>
564
+
565
+ <!-- Element AdapterInfoVoiceOTP-->
566
+ <element name="AdapterInfoChallengeResponseBased" type="vips:AdapterInfoChallengeResponseBasedType"/>
567
+ <!-- AdapterInfoVoiceOTPType -->
568
+ <complexType name="AdapterInfoChallengeResponseBasedType">
569
+ <annotation>
570
+ <documentation xml:lang="en">
571
+ Contains the adapter configuration for Challenge/Response base adapters.
572
+ </documentation>
573
+ </annotation>
574
+ <sequence>
575
+ <element minOccurs="0" name="MaxFailedAttempts">
576
+ <simpleType>
577
+ <restriction base="integer">
578
+ <minInclusive value="2"/>
579
+ <maxInclusive value="64"/>
580
+ </restriction>
581
+ </simpleType>
582
+ </element>
583
+ </sequence>
584
+ </complexType>
585
+
586
+ <!-- RequestCodeType -->
587
+ <simpleType name="RequestCodeType">
588
+ <restriction base="string">
589
+ <pattern value="[a-fA-F0-9,]+"/>
590
+ </restriction>
591
+ </simpleType>
592
+ <element name="RequestCode" type="vips:RequestCodeType"/>
593
+ <!-- KeyType -->
594
+ <simpleType name="KeyType">
595
+ <restriction base="string">
596
+ <maxLength value="32"/>
597
+ </restriction>
598
+ </simpleType>
599
+ <element name="Key" type="vips:KeyType"/>
600
+ <!-- ActivationCodeType -->
601
+ <simpleType name="ActivationCodeType">
602
+ <annotation>
603
+ <documentation xml:lang="en">
604
+ Maximum length of activation code restricted to 20 bytes.
605
+ </documentation>
606
+ </annotation>
607
+ <restriction base="string">
608
+ <maxLength value="20"/>
609
+ </restriction>
610
+ </simpleType>
611
+ <element name="ActivationCode" type="vips:ActivationCodeType"/>
612
+ <element name="SecretContainer" type="vips:SecretContainerType"/>
613
+ <!-- SecretContainerType -->
614
+ <complexType name="SecretContainerType">
615
+ <sequence>
616
+ <element name="EncryptionMethod" type="vips:EncryptionMethodType"/>
617
+ <element maxOccurs="100" name="Device" type="vips:DeviceType"/>
618
+ </sequence>
619
+ <attribute name="Version" type="vips:VersionType" use="required"/>
620
+ </complexType>
621
+ <!-- EncryptionMethodType -->
622
+ <complexType name="EncryptionMethodType">
623
+ <sequence>
624
+ <element minOccurs="0" ref="vips:EncryptionAlgorithm"/>
625
+ <!-- Since VIPS 6.1 this element is made optional! -->
626
+ <choice>
627
+ <element minOccurs="0" name="EncKeyLabel" type="string"/>
628
+ <sequence>
629
+ <element name="PBESalt" type="base64Binary"/>
630
+ <element minOccurs="0" name="PBEIterationCount" type="integer"/>
631
+ <element minOccurs="0" name="IV" type="base64Binary"/>
632
+ </sequence>
633
+ </choice>
634
+ </sequence>
635
+ </complexType>
636
+ <element name="EncryptionAlgorithm" type="vips:EncryptionAlgorithmType"/>
637
+ <!-- DeviceType -->
638
+ <complexType name="DeviceType">
639
+ <sequence>
640
+ <element name="Secret" type="vips:SecretType"/>
641
+ </sequence>
642
+ </complexType>
643
+ <!-- SecretType -->
644
+ <complexType name="SecretType">
645
+ <sequence>
646
+ <element name="Issuer" type="string"/>
647
+ <element name="Usage" type="vips:UsageType"/>
648
+ <element name="FriendlyName" type="string"/>
649
+ <element name="Data" type="vips:DataType"/>
650
+ <element name="Expiry" type="dateTime"/>
651
+ <element minOccurs="0" ref="vips:IssuerLogo"/>
652
+ </sequence>
653
+ <attribute name="Id" type="string" use="optional"/>
654
+ <attribute name="type" use="required">
655
+ <simpleType>
656
+ <restriction base="string">
657
+ <enumeration value="HOTP"/>
658
+ <enumeration value="Certificate"/>
659
+ </restriction>
660
+ </simpleType>
661
+ </attribute>
662
+ </complexType>
663
+ <!-- UsageType -->
664
+ <complexType name="UsageType">
665
+ <annotation>
666
+ <documentation xml:lang="en">
667
+ Counter - is the Event counter
668
+ TimeStep (X) - time step in seconds
669
+ Time (T0) - UTC timestamp (number of seconds since epoch) when time step starts to count. T0 = 0 at epoch
670
+ </documentation>
671
+ </annotation>
672
+ <sequence>
673
+ <element minOccurs="0" name="AI" type="vips:OtpAlgorithmIdentifierType"/>
674
+ <element maxOccurs="4" minOccurs="0" name="CR" type="vips:OCRASuiteType"/>
675
+ <element default="0" minOccurs="0" name="Counter" type="integer"/>
676
+ <element default="30" minOccurs="0" name="TimeStep" type="integer"/>
677
+ <element default="0" minOccurs="0" name="Time" type="integer"/>
678
+ <element default="0" minOccurs="0" name="ClockDrift" type="integer"/>
679
+ </sequence>
680
+ <attribute default="false" name="otp" type="boolean" use="optional"/>
681
+ <attribute default="false" name="signing" type="boolean" use="optional"/>
682
+ </complexType>
683
+ <!-- OtpAlgorithmIdentifierType -->
684
+ <complexType name="OtpAlgorithmIdentifierType">
685
+ <attribute name="type" use="required">
686
+ <simpleType>
687
+ <restriction base="string">
688
+ <enumeration value="HMAC-SHA1-TRUNC-6DIGITS"/>
689
+ </restriction>
690
+ </simpleType>
691
+ </attribute>
692
+ </complexType>
693
+
694
+ <complexType name="OCRASuiteType">
695
+ <attribute name="type" use="required">
696
+ <simpleType>
697
+ <restriction base="string">
698
+ <enumeration value="OCRA-1:HOTP-SHA1-6:QN06"/>
699
+ <enumeration value="OCRA-1:HOTP-SHA1-8:QN06"/>
700
+ <enumeration value="OCRA-1:HOTP-SHA1-6:QN08"/>
701
+ <enumeration value="OCRA-1:HOTP-SHA1-8:QN08"/>
702
+ <enumeration value="OCRA-1:HOTP-SHA1-6:QH40"/>
703
+ <enumeration value="OCRA-1:HOTP-SHA1-8:QH40"/>
704
+ </restriction>
705
+ </simpleType>
706
+ </attribute>
707
+ </complexType>
708
+
709
+ <!-- DataType -->
710
+ <complexType name="DataType">
711
+ <sequence>
712
+ <element name="Cipher" type="base64Binary"/>
713
+ <element minOccurs="0" name="Digest" type="vips:DigestType"/>
714
+ </sequence>
715
+ </complexType>
716
+ <!-- DigestType -->
717
+ <complexType name="DigestType">
718
+ <simpleContent>
719
+ <extension base="base64Binary">
720
+ <attribute name="algorithm" use="required">
721
+ <simpleType>
722
+ <restriction base="string">
723
+ <enumeration value="HMAC-SHA1"/>
724
+ <enumeration value="HMAC-SHA256"/>
725
+ <enumeration value="HMAC-SHA512"/>
726
+ </restriction>
727
+ </simpleType>
728
+ </attribute>
729
+ </extension>
730
+ </simpleContent>
731
+ </complexType>
732
+ <element name="IssuerLogo" type="vips:LogoType"/>
733
+ <!-- LogoType -->
734
+ <complexType name="LogoType">
735
+ <annotation>
736
+ <documentation xml:lang="en">
737
+ Type to carry a logo image. Includes a mime-type to indicate the content type for the image.
738
+ </documentation>
739
+ </annotation>
740
+ <simpleContent>
741
+ <extension base="base64Binary">
742
+ <attribute name="MimeType" type="vips:MimeTypeType" use="required"/>
743
+ </extension>
744
+ </simpleContent>
745
+ </complexType>
746
+ <!-- MimeTypeType -->
747
+ <simpleType name="MimeTypeType">
748
+ <annotation>
749
+ <documentation xml:lang="en">
750
+ Can be one of the following supported image content types.
751
+ </documentation>
752
+ </annotation>
753
+ <restriction base="string">
754
+ <enumeration value="image/gif"/>
755
+ <enumeration value="image/jpeg"/>
756
+ <enumeration value="image/png"/>
757
+ </restriction>
758
+ </simpleType>
759
+ <!-- Issuer part of the spec -->
760
+ <element name="TokenId" type="vips:TokenIdType"/>
761
+ <!-- TokenIdType -->
762
+ <complexType name="TokenIdType">
763
+ <annotation>
764
+ <documentation xml:lang="en">
765
+ Token identifier. Limited to 40 bytes including the 4 byte token-prefix.
766
+ </documentation>
767
+ </annotation>
768
+ <simpleContent>
769
+ <extension base="string">
770
+ <attribute name="type" type="vips:TokenType" use="optional"/>
771
+ </extension>
772
+ </simpleContent>
773
+ </complexType>
774
+
775
+ <simpleType name="TokenType">
776
+ <restriction base="string">
777
+ <enumeration value="SMS"/>
778
+ <enumeration value="Voice"/>
779
+ <enumeration value="Service"/>
780
+ </restriction>
781
+ </simpleType>
782
+
783
+ <!-- OTPType -->
784
+ <simpleType name="OTPType">
785
+ <annotation>
786
+ <documentation xml:lang="en">
787
+ One Time Password. Between 6 to 10 bytes.
788
+ </documentation>
789
+ </annotation>
790
+ <restriction base="string">
791
+ <pattern value="[a-zA-Z0-9]{6,10}"/>
792
+ </restriction>
793
+ </simpleType>
794
+ <!-- TxnOTPType -->
795
+ <simpleType name="TxnOTPType">
796
+ <annotation>
797
+ <documentation xml:lang="en">
798
+ Txn OTP. Between 4 to 10 digits.
799
+ </documentation>
800
+ </annotation>
801
+ <restriction base="string">
802
+ <pattern value="[0-9]{4,10}"/>
803
+ </restriction>
804
+ </simpleType>
805
+
806
+ <!-- Numeric Challenge type -->
807
+ <simpleType name="NumericChallengeType">
808
+ <annotation>
809
+ <documentation xml:lang="en">
810
+ Numeric challenge for OCRA type of authentication.
811
+ </documentation>
812
+ </annotation>
813
+ <restriction base="string">
814
+ <pattern value="[0-9]{6,10}"/>
815
+ </restriction>
816
+ </simpleType>
817
+ <!-- Hex Challenge type -->
818
+ <simpleType name="HexChallengeType">
819
+ <annotation>
820
+ <documentation xml:lang="en">
821
+ Hex challenge for OCRA type of authentication.
822
+ </documentation>
823
+ </annotation>
824
+ <restriction base="string">
825
+ <pattern value="[a-fA-F0-9]{40}"/>
826
+ </restriction>
827
+ </simpleType>
828
+
829
+ <!-- TempPwdType -->
830
+ <simpleType name="TempPwdType">
831
+ <annotation>
832
+ <documentation xml:lang="en">
833
+ One Time Password. Limited to 6 bytes.
834
+ </documentation>
835
+ </annotation>
836
+ <restriction base="string">
837
+ <pattern value="[a-zA-Z0-9]{0,6}"/>
838
+ </restriction>
839
+ </simpleType>
840
+ <!-- OTPIndexType -->
841
+ <complexType name="OTPIndexType">
842
+ <sequence>
843
+ <element name="Index" type="integer"/>
844
+ <element name="OTP" type="vips:OTPType"/>
845
+ </sequence>
846
+ </complexType>
847
+ <element name="ACProfile" type="vips:ACProfileType"/>
848
+ <!-- ACProfileType -->
849
+ <simpleType name="ACProfileType">
850
+ <annotation>
851
+ <documentation xml:lang="en">
852
+ Can contain one of the following profile values.
853
+ </documentation>
854
+ </annotation>
855
+ <restriction base="string">
856
+ <enumeration value="MOBILEPHONE"/>
857
+ <enumeration value="COMPUTER"/>
858
+ <enumeration value="BREW"/>
859
+ <enumeration value="MOBILE_NUMERIC_MEDIUM"/>
860
+ </restriction>
861
+ </simpleType>
862
+ <element name="TokenModel" type="vips:TokenModelType"/>
863
+ <complexType name="DeviceIdType">
864
+ <sequence>
865
+ <element minOccurs="0" name="Manufacturer">
866
+ <simpleType>
867
+ <restriction base="string">
868
+ <maxLength value="100"/>
869
+ </restriction>
870
+ </simpleType>
871
+ </element>
872
+ <element minOccurs="0" name="SerialNo">
873
+ <simpleType>
874
+ <restriction base="string">
875
+ <maxLength value="100"/>
876
+ </restriction>
877
+ </simpleType>
878
+ </element>
879
+ <element minOccurs="0" name="Model">
880
+ <simpleType>
881
+ <restriction base="string">
882
+ <maxLength value="100"/>
883
+ </restriction>
884
+ </simpleType>
885
+ </element>
886
+ <element minOccurs="0" name="IssueNo">
887
+ <simpleType>
888
+ <restriction base="string">
889
+ <maxLength value="100"/>
890
+ </restriction>
891
+ </simpleType>
892
+ </element>
893
+ <element minOccurs="0" name="Expiry">
894
+ <simpleType>
895
+ <restriction base="string">
896
+ <maxLength value="100"/>
897
+ </restriction>
898
+ </simpleType>
899
+ </element>
900
+ </sequence>
901
+ </complexType>
902
+ <!-- Abstract extension type -->
903
+ <complexType abstract="true" name="AbstractExtensionType">
904
+ <attribute name="extVersion" type="string"/>
905
+ </complexType>
906
+ <!--BrandInfoType-->
907
+ <complexType name="BrandInfoType">
908
+ <annotation>
909
+ <documentation xml:lang="en">
910
+ Contains the branding information.
911
+ </documentation>
912
+ </annotation>
913
+ <sequence>
914
+ <element name="Name" type="string"/>
915
+ <element minOccurs="0" name="PrefixURL" type="string"/>
916
+ </sequence>
917
+ </complexType>
918
+ <!--DeliveryInfoForVendorType-->
919
+ <element abstract="true" name="DeliveryInfoForVendor" type="vips:DeliveryInfoForVendorType"/>
920
+ <complexType name="DeliveryInfoForVendorType"/>
921
+ <!--VoiceDeliveryInfoType-->
922
+ <complexType name="VoiceDeliveryInfoType">
923
+ <annotation>
924
+ <documentation xml:lang="en">Contains the elements for voice type</documentation>
925
+ </annotation>
926
+ <sequence>
927
+ <element ref="vips:DeliveryInfoForVendor"/>
928
+ </sequence>
929
+ </complexType>
930
+ <!--AuthentifyType-->
931
+ <element name="AuthentifyVoiceDeliveryInfo" substitutionGroup="vips:DeliveryInfoForVendor" type="vips:AuthentifyVoiceDeliveryInfoType"/>
932
+ <complexType name="AuthentifyVoiceDeliveryInfoType">
933
+ <complexContent>
934
+ <extension base="vips:DeliveryInfoForVendorType">
935
+ <sequence minOccurs="0">
936
+ <element minOccurs="0" name="Account" type="vips:AccountType"/>
937
+ <element minOccurs="0" name="Language" type="language"/>
938
+ </sequence>
939
+ </extension>
940
+ </complexContent>
941
+ </complexType>
942
+ <!--AccountType-->
943
+ <simpleType name="AccountType">
944
+ <restriction base="string">
945
+ <maxLength value="32"/>
946
+ </restriction>
947
+ </simpleType>
948
+ <!--SMSDeliveryInfoType-->
949
+ <complexType name="SMSDeliveryInfoType">
950
+ <annotation>
951
+ <documentation xml:lang="en">
952
+ Contains the branding information.
953
+ </documentation>
954
+ </annotation>
955
+ <sequence>
956
+ <element minOccurs="0" name="SMSFrom" type="vips:SMSFromType"/>
957
+ <!-- Message length check is done in the code to keep consistent with get/setAdapter for SMS -->
958
+ <element minOccurs="0" name="Message" type="string"/>
959
+ </sequence>
960
+ </complexType>
961
+ <!--GatewayAcctInfo-->
962
+ <complexType name="GatewayAcctInfoType">
963
+ <annotation>
964
+ <documentation xml:lang="en">
965
+ Contains the IMN gateway account information.
966
+ </documentation>
967
+ </annotation>
968
+ <sequence>
969
+ <element name="Id">
970
+ <simpleType>
971
+ <restriction base="string">
972
+ <minLength value="0"/>
973
+ <maxLength value="15"/>
974
+ <pattern value="[a-zA-Z0-9]*"/>
975
+ </restriction>
976
+ </simpleType>
977
+ </element>
978
+ <element minOccurs="0" name="Password">
979
+ <simpleType>
980
+ <restriction base="string">
981
+ <minLength value="0"/>
982
+ <maxLength value="64"/>
983
+ <pattern value="[a-zA-Z0-9]*"/>
984
+ </restriction>
985
+ </simpleType>
986
+ </element>
987
+ </sequence>
988
+ </complexType>
989
+ <!-- TokenModelType -->
990
+ <simpleType name="TokenModelType">
991
+ <annotation>
992
+ <documentation xml:lang="en">
993
+ Four letter prefix in the token-id.
994
+ </documentation>
995
+ </annotation>
996
+ <restriction base="string">
997
+ <minLength value="4"/>
998
+ <maxLength value="4"/>
999
+ </restriction>
1000
+ </simpleType>
1001
+ <element name="SharedSecretDeliveryMethod" type="vips:SharedSecretDeliveryMethodType"/>
1002
+ <!-- SharedSecretDeliveryMethodType -->
1003
+ <simpleType name="SharedSecretDeliveryMethodType">
1004
+ <annotation>
1005
+ <documentation xml:lang="en">
1006
+ Can be one of the following transports.
1007
+ </documentation>
1008
+ </annotation>
1009
+ <restriction base="string">
1010
+ <enumeration value="HTTPS"/>
1011
+ <enumeration value="SMS"/>
1012
+ </restriction>
1013
+ </simpleType>
1014
+ <element name="SupportedEncryptionAlgorithm" type="vips:EncryptionAlgorithmType"/>
1015
+ <!-- EncryptionAlgorithmType -->
1016
+ <simpleType name="EncryptionAlgorithmType">
1017
+ <annotation>
1018
+ <documentation xml:lang="en">
1019
+ Can be one of the following supported encryption algorithms.
1020
+ </documentation>
1021
+ </annotation>
1022
+ <restriction base="string">
1023
+ <enumeration value="NONE"/>
1024
+ <enumeration value="PBE-3DES112-CBC"/>
1025
+ <enumeration value="PBE-3DES168-CBC"/>
1026
+ <enumeration value="PBE-AES128-CBC"/>
1027
+ <enumeration value="AES128-CTR"/>
1028
+ <enumeration value="AES128-CBC"/>
1029
+ <enumeration value="RSA"/>
1030
+ </restriction>
1031
+ </simpleType>
1032
+ <element name="ActivationCodeStatus" type="vips:ActivationCodeStatusType"/>
1033
+ <!--ActivationCodeStatusType -->
1034
+ <simpleType name="ActivationCodeStatusType">
1035
+ <annotation>
1036
+ <documentation xml:lang="en">
1037
+ Activation Code status. Can take one of the following values.
1038
+ </documentation>
1039
+ </annotation>
1040
+ <restriction base="string">
1041
+ <enumeration value="NEW"/>
1042
+ <enumeration value="PROVISIONED"/>
1043
+ <enumeration value="DISABLED"/>
1044
+ <enumeration value="EXPIRED"/>
1045
+ </restriction>
1046
+ </simpleType>
1047
+ <element name="Reason" type="vips:ReasonType"/>
1048
+ <simpleType name="ReasonType">
1049
+ <annotation>
1050
+ <documentation xml:lang="en">
1051
+ Can contain one of the following reason code values.
1052
+ </documentation>
1053
+ </annotation>
1054
+ <restriction base="string">
1055
+ <enumeration value="Unspecified"/>
1056
+ <enumeration value="Stolen"/>
1057
+ <enumeration value="Lost"/>
1058
+ <enumeration value="Canceled"/>
1059
+ <enumeration value="Returned"/>
1060
+ <enumeration value="TemporarilyUnavailable"/>
1061
+ <enumeration value="Expired"/>
1062
+ <enumeration value="DeactivatedAsPerUnusedPolicy"/>
1063
+ </restriction>
1064
+ </simpleType>
1065
+ <element name="NetworkIntelligence" type="vips:NetworkIntelligenceType"/>
1066
+ <!-- NetworkIntelligenceType -->
1067
+ <complexType name="NetworkIntelligenceType">
1068
+ <annotation>
1069
+ <documentation xml:lang="en">
1070
+ Contains the network intelligence information for a specific token.
1071
+ </documentation>
1072
+ </annotation>
1073
+ <sequence>
1074
+ <element name="NumberOfParties" type="unsignedShort"/>
1075
+ <element maxOccurs="5" minOccurs="0" name="TokenState">
1076
+ <complexType>
1077
+ <sequence>
1078
+ <element name="Total" type="int"/>
1079
+ <element maxOccurs="100" minOccurs="0" name="Reason">
1080
+ <complexType>
1081
+ <simpleContent>
1082
+ <extension base="int">
1083
+ <attribute name="type" type="vips:ReasonType" use="required"/>
1084
+ </extension>
1085
+ </simpleContent>
1086
+ </complexType>
1087
+ </element>
1088
+ </sequence>
1089
+ <attribute name="type" type="vips:TokenStatusType" use="required"/>
1090
+ </complexType>
1091
+ <unique name="uniqueReasonType">
1092
+ <selector xpath=".//vips:Reason"/>
1093
+ <field xpath="@type"/>
1094
+ </unique>
1095
+ </element>
1096
+ <element name="GlobalFailureCount" type="unsignedShort"/>
1097
+ </sequence>
1098
+ </complexType>
1099
+ <simpleType name="MessageType">
1100
+ <annotation>
1101
+ <documentation xml:lang="en">
1102
+ Can contain one of the following message values.
1103
+ </documentation>
1104
+ </annotation>
1105
+ <restriction base="string">
1106
+ <enumeration value="REGISTER"/>
1107
+ <enumeration value="SERVICE"/>
1108
+ <enumeration value="TEMP_PASSWORD"/>
1109
+ <enumeration value="PIN_DELIVERY"/>
1110
+ </restriction>
1111
+ </simpleType>
1112
+ <simpleType name="PhoneNumberType">
1113
+ <restriction base="string">
1114
+ <pattern value="[0-9]{5,20}(x[0-9,#.*]{1,20})?"/>
1115
+ </restriction>
1116
+ </simpleType>
1117
+ <simpleType name="SMSFromType">
1118
+ <restriction base="string">
1119
+ <pattern value="[0-9]{3,20}"/>
1120
+ </restriction>
1121
+ </simpleType>
1122
+ <simpleType name="GatewayResponseType">
1123
+ <restriction base="string">
1124
+ <minLength value="0"/>
1125
+ <maxLength value="50"/>
1126
+ </restriction>
1127
+ </simpleType>
1128
+ <simpleType name="SMSOperationType">
1129
+ <annotation>
1130
+ <documentation xml:lang="en">
1131
+ Can contain one of the following message values.
1132
+ </documentation>
1133
+ </annotation>
1134
+ <restriction base="string">
1135
+ <enumeration value="REGISTER"/>
1136
+ <enumeration value="SEND_MESSAGE"/>
1137
+ <enumeration value="PASS_THROUGH"/>
1138
+ </restriction>
1139
+ </simpleType>
1140
+ <complexType name="NameValuePairType">
1141
+ <simpleContent>
1142
+ <extension base="string">
1143
+ <attribute name="name" type="string" use="required"/>
1144
+ </extension>
1145
+ </simpleContent>
1146
+ </complexType>
1147
+ <!-- DestinationType -->
1148
+ <complexType name="DestinationType">
1149
+ <annotation>
1150
+ <documentation xml:lang="en">
1151
+ Destination type
1152
+ </documentation>
1153
+ </annotation>
1154
+ <simpleContent>
1155
+ <extension base="string">
1156
+ <attribute name="type" type="vips:TokenType" use="required"/>
1157
+ </extension>
1158
+ </simpleContent>
1159
+ </complexType>
1160
+ <!-- Language - Specified in APIs like VerifyTxn. -->
1161
+ <simpleType name="LanguageType">
1162
+ <annotation>
1163
+ <documentation xml:lang="en">
1164
+ Used to specify the language in APIs used to send voice message or OTP.
1165
+ </documentation>
1166
+ </annotation>
1167
+ <restriction base="string">
1168
+ <pattern value="[a-zA-Z\-]{2,10}"/>
1169
+ </restriction>
1170
+ </simpleType>
1171
+ <simpleType name="TemplateNameType">
1172
+ <annotation>
1173
+ <documentation xml:lang="en">
1174
+ Used to specify the template that needs to be used to make the voice call.
1175
+ </documentation>
1176
+ </annotation>
1177
+ <restriction base="string">
1178
+ <minLength value="4"/>
1179
+ <maxLength value="25"/>
1180
+ </restriction>
1181
+ </simpleType>
1182
+ <!-- TrackingId - Used in APIs like VerifyTxn. -->
1183
+ <simpleType name="TxnIdType">
1184
+ <annotation>
1185
+ <documentation xml:lang="en">
1186
+ Sent as a part of a submit transaction verification response. This tracking Id can be
1187
+ used in subsequent polling requests to find the status of the voice call.
1188
+ </documentation>
1189
+ </annotation>
1190
+ <restriction base="string">
1191
+ <pattern value="[a-zA-Z0-9]{6,16}"/>
1192
+ </restriction>
1193
+ </simpleType>
1194
+
1195
+ <!-- VIP Server Info -->
1196
+ <element name="ServerInfo" type="vips:ServerInfoType"/>
1197
+
1198
+ <complexType name="ServerInfoType">
1199
+ <sequence>
1200
+ <element name="CurrentTime" type="long"/>
1201
+ </sequence>
1202
+ </complexType>
1203
+
1204
+ <element name="FormFactor" type="vips:FormFactorType"/>
1205
+ <simpleType final="restriction" name="FormFactorType">
1206
+ <restriction base="string">
1207
+ <minLength value="1"/>
1208
+ <maxLength value="64"/>
1209
+ </restriction>
1210
+ </simpleType>
1211
+
1212
+ <element name="MovingFactor" type="vips:MovingFactorType"/>
1213
+ <simpleType final="restriction" name="MovingFactorType">
1214
+ <restriction base="string">
1215
+ <enumeration value="NONE"/>
1216
+ <enumeration value="TIME"/>
1217
+ <enumeration value="EVENT"/>
1218
+ </restriction>
1219
+ </simpleType>
1220
+
1221
+ <element name="OtpGeneratedBy" type="vips:OtpGeneratedByType"/>
1222
+ <simpleType final="restriction" name="OtpGeneratedByType">
1223
+ <restriction base="string">
1224
+ <enumeration value="HARDWARE"/>
1225
+ <enumeration value="SOFTWARE"/>
1226
+ <enumeration value="SERVER"/>
1227
+ </restriction>
1228
+ </simpleType>
1229
+
1230
+ <element name="TokenCategoryDetails" type="vips:TokenCategoryDetailsType"/>
1231
+
1232
+ <complexType name="TokenCategoryDetailsType">
1233
+ <sequence>
1234
+ <element minOccurs="1" name="CategoryId" type="integer"/>
1235
+ <element minOccurs="1" name="FormFactor" type="vips:FormFactorType"/>
1236
+ <element minOccurs="1" name="MovingFactor" type="vips:MovingFactorType"/>
1237
+ <element minOccurs="1" name="OtpGeneratedBy" type="vips:OtpGeneratedByType"/>
1238
+ </sequence>
1239
+ </complexType>
1240
+ </schema>