-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkntrl.schema.json
1847 lines (1847 loc) · 71.2 KB
/
kntrl.schema.json
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
{
"type": "object",
"properties": {
"http": {
"type": "object",
"properties": {
"port": {
"type": "integer",
"description": "A port that the server will use to accept http requests\n",
"format": "int32",
"default": 9876,
"minimum": -2147483648,
"maximum": 2147483647
},
"bind": {
"type": "string",
"description": "IP address to bind to. Usually 0.0.0.0 to accept for any connection or 127.0.0.1 to accept only localhost\n",
"default": "0.0.0.0"
},
"proxy": {
"type": "boolean",
"description": "If true, X-Forwarded-For header is used to get client's IP address",
"default": false
}
},
"description": "Http server config",
"x-order": "-1414553603-1"
},
"logins": {
"description": "Types of logins that can be used for identification.\n\nIf the login type is not specified in the auth config - it will be considered a simple login:\nthe user can set any name. E.g. username.\n\nIf the login type is specified in the auth config, this login will be generated by\nthe corresponding authenticator. E.g. email, phone or facebook account id.\n\n",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"loginRequirements": {
"type": "object",
"additionalProperties": {
"type": "string",
"x-additionalPropertiesName": "login type"
},
"description": "Regexes to validate logins.\n"
},
"auths": {
"type": "object",
"additionalProperties": {
"anyOf": [
{
"required": [
"remote"
],
"type": "object",
"properties": {
"remote": {
"type": "string",
"description": "Path to the API that implements plugin."
},
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"query": {
"type": "object",
"additionalProperties": {
"type": "string",
"x-additionalPropertiesName": "queryParam"
},
"description": "Add query params after `?` symbol in url.\n"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string",
"x-additionalPropertiesName": "header"
},
"description": "Add headers to request.\n"
},
"code": {
"type": "object",
"properties": {
"length": {
"type": "integer",
"description": "Length of code to be generated",
"format": "int32",
"default": 4,
"minimum": -2147483648,
"maximum": 2147483647
},
"ttl": {
"type": "string",
"description": "Generated code lifetime. e.g. 1m, 60s, 1d, etc."
},
"alphabet": {
"type": "string",
"description": "Symbols used to generate a code. By default `a-z + A-Z + 0-9`."
},
"easyToRemember": {
"type": "boolean",
"description": "If true, every second letter will be the same, that allows the codes to rhyme.",
"default": true
},
"maxAttempts": {
"type": "integer",
"description": "Max attempts to enter the code.",
"format": "int32",
"default": 3,
"minimum": -2147483648,
"maximum": 2147483647
}
},
"description": "If specified - app generates code and requires auth to be confirmed",
"x-order": "377338786-1"
}
},
"description": "Authentication implementation config",
"x-order": "658063406-0",
"x-super": "#/components/schemas/AuthAppCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
}
},
"x-order": "791325901-3",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"codeTtl": {
"type": "string",
"description": "Authorization code lifetime.\n",
"default": "10m"
},
"scopes": {
"description": "Allowed oauth2 scopes.",
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"x-order": "-1836982696-3",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"required": [
"sender",
"server"
],
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"server": {
"type": "string",
"description": "Email server address/IP."
},
"sender": {
"type": "string",
"description": "Email address of sender."
},
"username": {
"type": "string",
"description": "SMTP username.",
"x-nullable": true
},
"password": {
"type": "string",
"description": "SMTP password.",
"x-nullable": true
},
"confirmationUrl": {
"type": "string",
"description": "If not null, server will create template param `confirmationUrl` that will contain query parameters with\nconfirmation code, session id, etc.",
"x-nullable": true
},
"templates": {
"type": "object",
"additionalProperties": {
"type": "string",
"x-additionalPropertiesName": "templateName"
},
"description": "List of email templates. Key - is name of a template (can be used lately on frontend), value - is path to the template.\nApp uses handlebars templates to generate emails. See docs here https://handlebarsjs.com\n\nEmail templates receives `confirmationUrl`, `action`, `user`, `session`, `codeId`, `code`, `codeExpiresInMinutes`,\n`lang`, `headers` as template params, e.g. you can print user id as `{{user.id}}`.\n\nTemplate engine also provides `i18n` helper for localisation. E.g. `{{i18n 'confirmationButton' default='Confirm'}}`\nsearches key `confirmationButton` in files specified by `i18n.dir` config.\n\nUse `{{err ERR_CODE msg='Localised message (if null, will be taken from i18n file)' devMsg='dev message'}}` to\nraise an error in a template.\n\nIt allows setting subject of email using `title` html tag, e.g. `<title>Email subject</title>`.\n\n"
},
"templateParams": {
"type": "object",
"additionalProperties": {
"type": "object",
"x-additionalPropertiesName": "paramName"
},
"description": "Additional params for templates that can be passed in request. Key - is a name of additional parameter, value - is\na default value for this parameter (when no value present in request)\n"
},
"code": {
"type": "object",
"properties": {
"length": {
"type": "integer",
"description": "Length of code to be generated",
"format": "int32",
"default": 4,
"minimum": -2147483648,
"maximum": 2147483647
},
"ttl": {
"type": "string",
"description": "Generated code lifetime. e.g. 1m, 60s, 1d, etc."
},
"alphabet": {
"type": "string",
"description": "Symbols used to generate a code. By default `a-z + A-Z + 0-9`."
},
"easyToRemember": {
"type": "boolean",
"description": "If true, every second letter will be the same, that allows the codes to rhyme.",
"default": true
},
"maxAttempts": {
"type": "integer",
"description": "Max attempts to enter the code.",
"format": "int32",
"default": 3,
"minimum": -2147483648,
"maximum": 2147483647
}
},
"description": "If specified - app generates code and requires auth to be confirmed",
"x-order": "377338786-1"
}
},
"x-order": "-1025321515-0",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"ipBytesToIgnore": {
"type": "integer",
"description": "This allows to drop last bytes of IP. So it allows to authenticate factor when ip has rough match, e.g.\nthe same country, same city, or same internet provider.",
"format": "int32",
"default": 0,
"minimum": -2147483648,
"maximum": 2147483647
},
"historySize": {
"type": "integer",
"description": "History of IP addresses user used to sign-in. Authenticated when user attempts to sign in with one of stored\nIPs.",
"format": "int32",
"default": 10,
"minimum": -2147483648,
"maximum": 2147483647
}
},
"x-order": "2116983897-3",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
}
},
"x-order": "-1247144074-1",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"required": [
"extractLogin"
],
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"exchangeAuthCode": {
"type": "object",
"properties": {
"tokenUrl": {
"type": "string",
"description": "Url to get access token by authorisation code.\n"
},
"clientId": {
"type": "string",
"description": "OAuth client id. Client must be registered on OAuth provider (e.g. facebook, google)",
"x-nullable": true
},
"clientSecret": {
"type": "string",
"description": "OAuth client secret.",
"x-nullable": true
}
},
"description": "If specified, app is able to handle authorizationCode from auth request; exchanges it for\n`access_token` or/and `id_token`",
"x-nullable": true,
"x-super": "#/components/schemas/ExchangeAuthCodeCfg"
},
"userInfo": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "If access token provided in request, app tries to extract user id from user-info endpoint.\nIf null, user info will be extracted from access token\n",
"x-nullable": true
},
"sendTokenInQuery": {
"type": "string",
"description": "While executing user-info request, access-token will be sent in query param.",
"x-nullable": true
},
"sendTokenInHeader": {
"type": "boolean",
"description": "While executing user-info request, access-token will be sent in Authorisation header."
}
},
"description": "If specified, app will use received access token",
"x-nullable": true,
"x-super": "#/components/schemas/TokenHandlerCfg"
},
"extractLogin": {
"type": "string",
"description": "Json path for login in the exchangeAuthCode or userInfo endpoint response.\ne.g. `access_token.user.id` extracts user login from `{ \"access_token\": { \"user\": { \"id\": \"...\" } } }`\n"
},
"extractPublicData": {
"type": "object",
"additionalProperties": {
"type": "string",
"x-additionalPropertiesName": "public data key"
},
"description": "Can fill public data from the exchangeAuthCode or userInfo endpoint response.\n"
}
},
"x-order": "-1532051357-0",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"maxLength": {
"type": "integer",
"description": "Max allowed Length of the password.",
"format": "int32",
"default": 256,
"minimum": -2147483648,
"maximum": 2147483647
},
"minLength": {
"type": "integer",
"description": "Minimal length of password",
"format": "int32",
"default": 6,
"minimum": -2147483648,
"maximum": 2147483647
},
"requireNumber": {
"type": "boolean",
"description": "Require password to contain at least one digit.",
"default": false
},
"requireSymbol": {
"type": "boolean",
"description": "Require password to contain at least one symbol e.g. @, !, &...",
"default": false
},
"requireUpperCase": {
"type": "boolean",
"description": "This requires password to contain both lowercase and uppercase letters.",
"default": false
},
"forbidCommonPasswords": {
"type": "boolean",
"description": "Password will be checked against table 1,000,000 of most overused passwords.",
"default": false
},
"forbidLoginAsPassword": {
"type": "boolean",
"description": "Rejects passwords that match username, email, anything that used as a login according to logins config.",
"default": false
},
"forbidReusingPassword": {
"type": "object",
"properties": {
"passwordHistorySize": {
"type": "integer",
"description": "Number of current user passwords to store in database.",
"format": "int32",
"default": 3,
"minimum": -2147483648,
"maximum": 2147483647
},
"passwordHistoryTtl": {
"type": "string",
"description": "Lifetime for the password. Accepts time string e.g. 1y, 3m, 2y 6m, etc."
}
},
"description": "Forbids user to change password to the old one. Useful if you force user to change password regularly.",
"x-order": "378192899-2"
},
"strength": {
"type": "object",
"additionalProperties": {
"x-additionalPropertiesName": "PASSWORD_STRENGTH",
"type": "object",
"properties": {
"minLength": {
"type": "integer",
"description": "Minimal length of password",
"format": "int32",
"default": 6,
"minimum": -2147483648,
"maximum": 2147483647
},
"requireNumber": {
"type": "boolean",
"description": "Require password to contain at least one digit.",
"default": false
},
"requireSymbol": {
"type": "boolean",
"description": "Require password to contain at least one symbol e.g. @, !, &...",
"default": false
},
"requireUpperCase": {
"type": "boolean",
"description": "This requires password to contain both lowercase and uppercase letters.",
"default": false
},
"forbidCommonPasswords": {
"type": "boolean",
"description": "Password will be checked against table 1,000,000 of most overused passwords.",
"default": false
},
"forbidLoginAsPassword": {
"type": "boolean",
"description": "Rejects passwords that match username, email, anything that used as a login according to logins config.",
"default": false
}
},
"description": "Requirements for password",
"x-order": "-49430021-1"
},
"description": "Allows to calculate password strength based on mentioned criteria. Requirements will be checked one by one\nuntil first failed.\n"
}
},
"description": "Password authentication. To enable this auth set auth name to \"password\" or use \"builtin\": \"password\" param.",
"x-order": "-49430021-0",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"lowercase": {
"type": "boolean",
"description": "Transform user answer to lowercase letters. This allows user still pass a check when he wrote name or city\nwith different cases. `false` means strict match, so \"John\" != \"john\"",
"default": true
},
"removeSymbols": {
"type": "boolean",
"description": "Remove all non-letters from user answer.",
"default": true
},
"removeSpaces": {
"type": "boolean",
"description": "Remove all spaces from user answer.",
"default": true
},
"minLength": {
"type": "integer",
"description": "Min length of answer. Length are checked after all answer transformation.",
"format": "int32",
"default": 3,
"minimum": -2147483648,
"maximum": 2147483647
},
"maxLength": {
"type": "integer",
"description": "Max length of answer.",
"format": "int32",
"default": 256,
"minimum": -2147483648,
"maximum": 2147483647
},
"answersRequired": {
"type": "integer",
"description": "Min number of answers required to pass this check.",
"format": "int32",
"default": 2,
"minimum": -2147483648,
"maximum": 2147483647
},
"maxAnswers": {
"type": "integer",
"description": "Max answers that user can save.",
"format": "int32",
"default": 10,
"minimum": -2147483648,
"maximum": 2147483647
}
},
"x-order": "545691127-0",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"scopes": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
},
"x-order": "2741601-2",
"x-super": "#/components/schemas/BuiltInAuthCfg"
},
{
"type": "object",
"properties": {
"requiresAuth": {
"description": "If this is not null, app forbids to add this auth until listed auth enabled.\n- if this a string -> require specified auth to be enabled before this.\n- array of strings -> require any of listed auths to be enabled\n- array of arrays of strings -> works as `[ [ \"auth1\" and \"auth2\" ] or [ \"auth1\" and \"auth2\" ] ]`",
"x-nullable": true,
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
]
},
"skipOnFail": {
"type": "boolean",
"description": "When this is set to true app will attempt next auth in case of error on current.\nIt's works good with IP auth. User can provide both IP auth request and SMS auth request. And SMS will be\nexecuted only when IP auth is failed.\nIf set to false any error on this auth will stop the whole request execution.",
"default": false
},
"rateLimiter": {
"type": "string",
"description": "Apply rate limiter for this auth.",
"x-nullable": true
},
"burnQuota": {
"type": "number",
"description": "Every auth execution will burn this amount of quota. Takes place only when rate limiter is specified",
"format": "double",
"default": 0,
"minimum": -1.7976931348623157e+308,
"maximum": 1.7976931348623157e+308
},
"encryptKey": {