· 6 years ago · Nov 05, 2019, 01:46 PM
1{
2
3 "account": {
4 "formValidationRules": {
5 "email": {
6 "required": true,
7 "emailFull": true
8 }
9 },
10 "formValidationMessages": {
11 "email": {
12 "required": "Email Address is Required",
13 "emailFull": "Email Address must be in the format user@domain.com"
14 }
15 }
16 },
17
18
19 "banks": {
20 "formValidationRules": {
21 "id": {
22 "required": true,
23 "number": true
24 },
25 "name": {
26 "required": true
27 }
28 },
29 "formValidationMessages": {
30 "id": {
31 "required": "Bank Name is Required",
32 "number": "Bank ID must be Numeric"
33 },
34 "name": {
35 "required": "Bank Name is Required"
36 }
37 }
38 },
39
40 "barcodes": {
41 "formValidationRules": {
42 "device": {
43 "required": true,
44 "minlength": 1,
45 "maxlength": 50
46 },
47 "barcodes_requested": {
48 "required": true,
49 "number": true
50 }
51
52 },
53 "formValidationMessages": {
54 "device": "Device is Required",
55 "barcodes_requested": "Barcodes is Required and Must be Numeric"
56
57 }
58 },
59
60 "enrollment": {
61 "formValidationRules": {
62
63 "device": {
64 "minlength": 2,
65 "maxlength": 50
66 },
67
68 "id_number": {
69 "required": true,
70 "minlength": 3,
71 "maxlength": 20
72 },
73
74 "dob": {
75 "required": true,
76 "minlength": 6,
77 "maxlength": 8
78 },
79
80 "mailing_address": {
81 "required": true,
82 "minlength": 1,
83 "maxlength": 50
84 },
85 "apartment_number": {
86 "required": false,
87 "minlength": 0,
88 "maxlength": 50
89 },
90 "city": {
91 "required": true,
92 "minlength": 1,
93 "maxlength": 50
94 },
95 "state": {
96 "required": true,
97 "minlength": 2,
98 "maxlength": 2
99 },
100 "zip": {
101 "required": true,
102 "minlength": 5,
103 "maxlength": 11
104 },
105
106 "home_phone_number": {
107 "required": true,
108 "phoneUS": true
109 },
110 "mobile_phone_number": {
111 "phoneUS": true
112 },
113
114 "fname": {
115 "required": true,
116 "minlength": 1,
117 "maxlength": 30
118 },
119 "mname": {
120 "required": false,
121 "minlength": 0,
122 "maxlength": 30
123 },
124 "lname": {
125 "required": true,
126 "minlength": 1,
127 "maxlength": 30
128 },
129
130 "bank_id": {
131 "required": true,
132 "digits": true
133 },
134
135 "id_type": {
136 "required": true,
137 "minlength": 2,
138 "maxlength": 2
139 },
140 "id_state": {
141 "required": true,
142 "minlength": 2,
143 "maxlength": 2
144 },
145
146 "email_address": {
147 "required": false,
148 "emailFull": true,
149 "minlength": 5,
150 "maxlength": 50
151 },
152
153 "merchant_id": {
154 "required": false,
155 "digits": true
156 },
157
158 "LOGIN": {
159 "required": true
160 },
161
162 "PASSWORD": {
163 "required": true
164 },
165
166 "aba": {
167 "required": true,
168 "digits": true,
169 "maxlength": 9,
170 "minlength": 9
171 },
172
173 "dda": {
174 "required": true,
175 "digits": true,
176 "maxlength": 30,
177 "minlength": 1
178 },
179
180 "depositAmount": {
181 "required": true,
182 "number": true
183 },
184
185 "withdrawalAmount": {
186 "required": true,
187 "number": true
188 },
189
190 "bankaccount_guid": {
191 "required": true,
192 "minlength": 1,
193 "maxlength": 40
194 },
195
196 "role": {
197 "required": true,
198 "minlength": 1,
199 "maxlength": 30
200 },
201
202 "api_method_name": {
203 "required": true,
204 "minlength": 6,
205 "maxlength": 50
206 },
207 "proxy_request_data": {}
208
209 },
210 "formValidationMessages": {
211
212 "device": {
213 "minlength": "ID Number Must be at Least 1 Digits",
214 "maxlength": "ID Number Must be no Longer than 50 Digits"
215 },
216
217 "bank_id": {
218 "required": "Bank is Required",
219 "digits": "Bank invalid"
220 },
221
222 "id_number": {
223 "required": "ID Number is Required",
224 "minlength": "ID Number Must be at Least 3 Digits",
225 "maxlength": "ID Number Must be no Longer than 20 Digits"
226 },
227
228 "dob": "Date of Birth is Required",
229
230 "mailing_address": {
231 "required": "Mailing Address is Required",
232 "maxlength": "Mailing Address Must be no Longer Than 50 Characters"
233 },
234 "apartment_number": {
235 "maxlength": "Apartment Number Must be no Longer Than 50 Characters"
236 },
237 "city": {
238 "required": "City is Required",
239 "maxlength": "City Must be no Longer Than 50 Characters"
240 },
241 "state": {
242 "required": "State is Required",
243 "maxlength": "State Must be no Longer Than 2 Characters"
244 },
245 "zip": {
246 "required": "Zip is Required",
247 "maxlength": "Zip Must be no Longer Than 11 Characters"
248 },
249
250 "home_phone_number": {
251 "required": "Home or Mobile Phone Number is Required",
252 "phoneUS": "Home Phone Number Must be a Valid Phone Number"
253 },
254 "mobile_phone_number": {
255 "phoneUS": "Mobile Phone Number Must be a Valid Phone Number"
256 },
257
258 "fname": {
259 "required": "First name is Required",
260 "maxlength": "First name must be no Longer Than 30 Characters"
261 },
262 "mname": "Middle name must be no Longer Than 30 Characters",
263 "lname": {
264 "required": "Last name is Required",
265 "maxlength": "Last name must be no Longer Than 30 Characters"
266 },
267
268 "id_type": "ID Type is Required",
269 "id_state": "ID State is Required",
270
271 "email_address": {
272 "emailFull": "Email Address must be in the format user@domain.com"
273 },
274
275 "merchant_id": {
276 "digits": "Merchant ID must be numeric"
277 },
278
279 "LOGIN": "Login is Required",
280 "PASSWORD": "Password is Required",
281
282 "aba": {
283 "required": "Routing Number is Required",
284 "digits": "Routing Number must be numeric",
285 "minlength": "Routing Number must be 9 Digits",
286 "maxlength": "Routing Number must be 9 Digits"
287 },
288 "dda": {
289 "required": "DDA is Required",
290 "digits": "DDA must be numeric",
291 "minlength": "DDA must be at least 1 Digit",
292 "maxlength": "DDA must be less than 30 Digits"
293 },
294
295 "depositAmount": "Please Enter a Valid Deposit Amount",
296 "withdrawalAmount": "Please Enter a Valid Withdrawal Amount",
297
298 "bankaccount_guid": "Please Enter a Valid Bank Account GUID",
299
300 "role": "Invalid role",
301
302 "api_method_name": "API Method Name is Required",
303 "proxy_request_data": ""
304
305 }
306 },
307
308 "embed": {
309 "formValidationRules": {
310
311 "partner_customer_number": {
312 "maxlength": 50
313 },
314 "embed_token": {
315 "maxlength": 40
316 }
317
318 },
319 "formValidationMessages": {
320 "partner_customer_number": "Partner Customer Number must be less or equal to 50 Characters",
321 "embed_token": "Embed Token must be less than or equal to 40 Characters"
322 }
323 },
324
325 "internalservices": {
326 "formValidationRules": {
327 "PassKey": {
328 "required": true,
329 "emailFull": true
330 },
331 "PassPhrase": {
332 "maxlength": "40"
333 },
334 "PartnerId": {
335 "digits": true,
336 "maxlength": "10"
337 },
338 "FraudPolicyOverrideName": {
339 "maxlength": "50"
340 }
341 },
342 "formValidationMessages": {
343 "PassKey": {
344 "required": "PassKey is Required",
345 "emailFull": "PassKey must be in the format user@domain.com"
346 },
347 "PassPhrase": {
348 "maxlength": "PassPhrase maximum length is 40 characters"
349 },
350 "PartnerId": {
351 "digits": "Partner ID must be numeric",
352 "maxlength": "Partner ID maximum length is 10 digits"
353 },
354 "FraudPolicyOverrideName": {
355 "maxlength": "Override Policy Name maximum length is 50 characters"
356 }
357 }
358 },
359
360 "internalservices\/merchanttimeoutvoid": {
361 "formValidationRules": {
362 "PassKey": {
363 "required": true,
364 "emailFull": true
365 },
366 "PassPhrase": {
367 "maxlength": "40"
368 },
369 "reference_number": {
370 "required": true,
371 "minlength": 20,
372 "maxlength": 20
373 }
374 },
375 "formValidationMessages": {
376 "PassKey": {
377 "required": "PassKey is Required",
378 "emailFull": "PassKey must be in the format user@domain.com"
379 },
380 "PassPhrase": {
381 "maxlength": "PassPhrase maximum length is 40 characters"
382 },
383 "reference_number": {
384 "required": "Reference Number is Required",
385 "minlength": "Reference Number Must be at Least 20 Digits",
386 "maxlength": "Reference Number Must be no Longer than 20 Digits"
387 }
388 }
389 },
390
391 "internalservices\/fraudPolicies": {
392 "formValidationRules": {
393 "PassKey": {
394 "required": true,
395 "emailFull": true
396 },
397 "PassPhrase": {
398 "maxlength": "40"
399 },
400 "partner_id": {
401 "required": true
402 }
403 },
404 "formValidationMessages": {
405 "PassKey": {
406 "required": "PassKey is Required",
407 "emailFull": "PassKey must be in the format user@domain.com"
408 },
409 "PassPhrase": {
410 "maxlength": "PassPhrase maximum length is 40 characters"
411 },
412 "partner_id": {
413 "required": "Partner Id is Required"
414 }
415 }
416 },
417
418 "partner": {
419 "formValidationRules": {
420
421 "partner_customer_number": {
422 "required": true,
423 "maxlength": 50
424 },
425 "consumer_email": {
426 "required": true,
427 "emailFull": true
428 },
429 "consumer_password": {
430 "required": true
431 },
432 "consumer_PIN": {
433 "required": true,
434 "digits": true,
435 "maxlength": 4,
436 "minlength": 4,
437 "consecutiveDigits": true,
438 "atLeast3DifferentDigits": true
439 },
440
441 "mailing_address": {
442 "minlength": 1,
443 "maxlength": 50
444 },
445 "apartment_number": {
446 "minlength": 0,
447 "maxlength": 50
448 },
449 "city": {
450 "minlength": 1,
451 "maxlength": 50
452 },
453 "state": {
454 "minlength": 2,
455 "maxlength": 2
456 },
457 "zip": {
458 "minlength": 5,
459 "maxlength": 11
460 },
461
462 "home_phone_number": {
463 "phoneUS": true
464 },
465 "mobile_phone_number": {
466 "phoneUS": true
467 },
468
469 "fname": {
470 "minlength": 1,
471 "maxlength": 30
472 },
473 "mname": {
474 "minlength": 0,
475 "maxlength": 30
476 },
477 "lname": {
478 "minlength": 1,
479 "maxlength": 30
480 }
481
482 },
483 "formValidationMessages": {
484 "partner_customer_number": "Partner Customer Number is Required",
485 "consumer_email": {
486 "required": "Email Address is Required",
487 "emailFull": "Email Address must be in the format user@domain.com"
488 },
489 "consumer_password": "Password is Required",
490 "consumer_PIN": "PIN is Required, 4 Digits Long, Non-consecutive, and 3 Unique Digits",
491
492 "mailing_address": {
493 "maxlength": "Mailing Address Must be no Longer Than 50 Characters"
494 },
495 "apartment_number": {
496 "maxlength": "Apartment Number Must be no Longer Than 50 Characters"
497 },
498 "city": {
499 "maxlength": "City Must be no Longer Than 50 Characters"
500 },
501 "state": {
502 "maxlength": "State Must be no Longer Than 2 Characters"
503 },
504 "zip": {
505 "maxlength": "Zip Must be no Longer Than 11 Characters"
506 },
507
508 "home_phone_number": {
509 "phoneUS": "Home Phone Number Must be a Valid Phone Number"
510 },
511 "mobile_phone_number": {
512 "phoneUS": "Mobile Phone Number Must be a Valid Phone Number"
513 },
514
515 "fname": "First name must be no Longer Than 30 Characters",
516 "mname": "Middle name must be no Longer Than 30 Characters",
517 "lname": "Last name must be no Longer Than 30 Characters"
518
519 }
520 },
521
522 "payments": {
523 "formValidationRules": {
524 "amount": {
525 "required": true,
526 "number": true
527 },
528 "device": {
529 "required": true,
530 "minlength": 1,
531 "maxlength": 50
532 },
533 "hashed_pin": {
534 "required": true,
535 "minlength": 20,
536 "maxlength": 1024
537 },
538 "terminal_id": {
539 "required": true,
540 "number": true
541 },
542 "barcode": {
543 "required": true,
544 "number": true,
545 "maxlength": 16
546 },
547 "connectCode": {
548 "required": true,
549 "number": true,
550 "maxlength": 16
551 },
552 "reference_number": {
553 },
554 "auth_code": {
555 },
556 "allow_retry": {
557 "required": true
558 },
559 "rewardcode": {
560 "maxlength": 10
561 },
562 "clerk_id": {
563 "required": false,
564 "maxlength": 50
565 },
566 "batch_id": {
567 "required": false,
568 "maxlength": 50
569 },
570 "shift_id": {
571 "required": false,
572 "maxlength": 50
573 },
574 "cdf1": {
575 "maxlength": 50,
576 "stringLettersNumbersDashes": true
577 },
578 "cdf2": {
579 "maxlength": 50,
580 "stringLettersNumbersDashes": true
581 }
582 },
583 "formValidationMessages": {
584 "amount": "Amount is Required and Must be Numeric",
585 "device": "Device is Required",
586 "hashed_pin": "PIN is Required",
587 "terminal_id": "Terminal ID is Required and Must be Numeric",
588 "barcode": "Barcode is Required and Must be Numeric",
589 "connectCode": "Connect Code is Required and Must be Numeric",
590 "reference_number": "Reference Number is Required",
591 "auth_code": "Auth Code is Required",
592 "allow_retry": "Allow Retry flag is Required",
593 "rewardcode": "Rewardcode is alphanumeric and max length is 10 characters",
594 "clerk_id": "Clerk ID Must be a Maximum of 50 Characters",
595 "batch_id": "Batch ID Must be a Maximum of 50 Characters",
596 "shift_id": "Shift ID Must be a Maximum of 50 Characters",
597 "cdf1": "Customer Defined Field 1 may contain letters, numbers, and dashes",
598 "cdf2": "Customer Defined Field 2 may contain letters, numbers, and dashes"
599 }
600 },
601
602 "pin": {
603 "formValidationRules": {
604 "consumer_id": {
605 "required": true,
606 "digits": true
607 },
608 "hashed_pin": {
609 "required": true
610 },
611 "role": {
612 "required": true,
613 "minlength": 1
614 }
615 },
616 "formValidationMessages": {
617 "consumer_id": {
618 "required": "Consumer ID is Required and Must Be Numeric",
619 "digits": "Consumer ID Must Be Numeric"
620 },
621 "hashed_pin": "PIN Is Required",
622 "role": "Invalid role"
623 }
624 },
625
626 "portal": {
627 "formValidationRules": {
628 "ach_statement_id": {
629 "maxlength": 15
630 },
631 "location_number": {
632 "required": true,
633 "digits": true
634 },
635 "email": {
636 "required": true,
637 "emailFull": true
638 },
639 "email_address": {
640 "emailFull": true
641 },
642 "gridSearchPhrase": {
643 "maxlength": 50
644 },
645 "password": {
646 "required": true,
647 "passwordfield76549834": true
648 }
649 },
650 "formValidationMessages": {
651 "ach_statement_id": "ACH Statement Title max length is 15 characters",
652 "location_number": {
653 "required": "Location Number is Required and Must Be Numeric",
654 "digits": "Location Number Must Be Numeric"
655 },
656 "email": {
657 "required": "Email Address is Required",
658 "emailFull": "Email Address must be in the format user@domain.com"
659 },
660 "email_address": {
661 "emailFull": "Email Address must be in the format user@domain.com"
662 },
663 "gridSearchPhrase": "Search Phrase max length is 50 characters",
664 "password": "Password is Required and should contain 6 to 10 characters with at least one uppercase alpha, one lowercase alpha, one numeric character, and a special character ( ! - + @ # $ % )"
665 }
666 },
667
668 "processor": {
669 "formValidationRules": {
670 "role": {
671 "required": true,
672 "minlength": 1
673 },
674 "message_type": {
675 "required": true
676 },
677 "consumer_account_number": {
678 "required": true
679 },
680 "processing_code": {
681 "required": true
682 },
683 "amount": {
684 "required": true
685 },
686 "system_trace_number": {
687 "required": true
688 },
689 "consumer_account_expiry": {
690 "required": false
691 },
692 "mcc": {
693 "required": true
694 },
695 "institution_id": {
696 "required": false
697 },
698 "retrieval_reference_number": {
699 "required": true
700 },
701 "terminal_id": {
702 "required": false
703 },
704 "merchant_id": {
705 "required": false
706 },
707 "terminal_location": {
708 "required": false
709 },
710 "terminal_location_address": {
711 "required": false
712 },
713 "terminal_location_city": {
714 "required": false
715 },
716 "terminal_location_state": {
717 "required": false
718 },
719 "merchant_name": {
720 "required": true
721 },
722 "additional_amounts": {
723 "required": false
724 },
725 "private_data": {
726 "required": true
727 },
728 "pseudo_intercept_terminal_id": {
729 "required": true
730 },
731 "acquirer_trace_data": {
732 "required": false
733 },
734 "switch_date": {
735 "required": true
736 },
737 "local_time": {
738 "required": true
739 },
740 "local_date": {
741 "required": true
742 },
743 "settlement_date": {
744 "required": false
745 },
746 "pos_entry_mode": {
747 "required": true
748 },
749 "transaction_currency_code": {
750 "required": true
751 },
752 "auth_life_cycle": {
753 "required": false
754 },
755 "reversal_reason_code": {
756 "required": false
757 },
758 "original_message_type": {
759 "required": false
760 },
761 "original_system_trace_number": {
762 "required": false
763 },
764 "original_date": {
765 "required": false
766 },
767 "auth_agent_institution_id": {
768 "required": false
769 },
770 "original_merchant_rrn": {
771 "required": false
772 },
773 "checkout_token": {
774 "required": false
775 },
776 "tender_id": {
777 "required": false
778 },
779 "cdf1": {
780 "maxlength": 50,
781 "stringLettersNumbersDashes": true
782 },
783 "cdf2": {
784 "maxlength": 50,
785 "stringLettersNumbersDashes": true
786 }
787 },
788 "formValidationMessages": {
789 "role": "Invalid role",
790 "message_type": "Message Type required",
791 "consumer_account_number": "Consumer Account Number required",
792 "processing_code": "Processing Code required",
793 "amount": "Amount required",
794 "system_trace_number": "System Trace Number required",
795 "consumer_account_expiry": "Customer Account Expiry required",
796 "mcc": "Merchant Category Code required",
797 "institution_id": "Institution ID required",
798 "retrieval_reference_number": "Retrieval Reference Number required",
799 "terminal_id": "Terminal ID required",
800 "merchant_id": "Merchant ID required",
801 "terminal_location": "Terminal Location required",
802 "terminal_location_address": "Terminal Location Address required",
803 "terminal_location_city": "Terminal Location City required",
804 "terminal_location_state": "Terminal Location State required",
805 "merchant_name": "Merchant Name required",
806 "additional_amounts": "Additional Amounts required",
807 "private_data": "Private Data required",
808 "pseudo_intercept_terminal_id": "Pseudo Intercept Terminal ID Required",
809 "acquirer_trace_data": "Acquirer Data required",
810 "switch_date": "Transaction switch date DE7 required",
811 "local_time": "Local transaction time DE12 required",
812 "local_date": "Local transaction date DE13 required",
813 "settlement_date": "Transaction settlement date DE15 required",
814 "pos_entry_mode": "POS entry mode DE22 required",
815 "transaction_currency_code": "Transaction currency code DE49 required",
816 "auth_life_cycle": "Authorization life cycle DE57 required",
817 "reversal_reason_code": "Reversal reason code DE60 required",
818 "original_message_type": "Original transaction message type DE90.1 required",
819 "original_system_trace_number": "Original transaction system trace audit number DE90.2 required",
820 "original_date": "Original transaction date DE90.3 required",
821 "auth_agent_institution_id": "Authorizing agent institution ID DE113 required",
822 "original_merchant_rrn": "Original Merchant retrieval reference number DE127.2 required",
823 "checkout_token": "Checkout token DE127.3 required",
824 "tender_id": "Tender ID DE127.4 required",
825 "cdf1": "Customer Defined Field 1 may contain letters, numbers, and dashes",
826 "cdf2": "Customer Defined Field 2 may contain letters, numbers, and dashes"
827 }
828 },
829
830 "user": {
831 "formValidationRules": {
832
833 "name": {
834 "required": true
835 },
836 "email": {
837 "required": true,
838 "emailFull": true
839 },
840
841 "bankname": {
842 "required": false,
843 "minlength": 0,
844 "maxlength": 50
845 },
846
847 "consumer_email": {
848 "required": true,
849 "emailFull": true
850 },
851 "signupEmail": {
852 "required": true,
853 "emailFull": true
854 },
855
856
857 "id_number": {
858 "required": true,
859 "minlength": 3,
860 "maxlength": 20
861 },
862
863
864 "dob_month": {
865 "required": true,
866 "minlength": 2,
867 "maxlength": 2,
868 "digits": true
869 },
870 "dob_day": {
871 "required": true,
872 "minlength": 2,
873 "maxlength": 2,
874 "digits": true
875 },
876 "dob_year": {
877 "required": true,
878 "date_year4": true,
879 "digits": true
880 },
881
882
883 "home_mailing_address": {
884 "required": true,
885 "minlength": 1,
886 "maxlength": 50
887 },
888 "home_apartment_number": {
889 "required": false,
890 "minlength": 0,
891 "maxlength": 50
892 },
893 "home_city": {
894 "required": true,
895 "minlength": 1,
896 "maxlength": 50
897 },
898 "home_state": {
899 "required": true
900 },
901 "home_zip": {
902 "required": true,
903 "minlength": 5,
904 "maxlength": 11
905 },
906
907 "home_phone": {
908 "phoneUS": true,
909 "require_from_group": [1, ".phone-group"]
910 },
911 "mobile_phone": {
912 "phoneUS": true,
913 "require_from_group": [1, ".phone-group"]
914 },
915
916
917 "accept_terms": {
918 "required": true
919 },
920 "consumer_id": {
921 "required": true
922 },
923 "password": {
924 "required": true
925 },
926 "consumer_password": {
927 "required": true
928 },
929 "signupPassword": {
930 "required": true,
931 "passwordfield76549834": true
932 },
933 "confirmPassword": {
934 "required": true,
935 "equalTo": "#signupPassword"
936 },
937
938 "consumer_PIN": {
939 "required": true,
940 "digits": true,
941 "maxlength": 4,
942 "minlength": 4,
943 "consecutiveDigits": true,
944 "atLeast3DifferentDigits": true
945 },
946 "signupPIN": {
947 "required": true,
948 "digits": true,
949 "maxlength": 4,
950 "minlength": 4,
951 "consecutiveDigits": true,
952 "atLeast3DifferentDigits": true
953 },
954 "confirmPIN": {
955 "required": true,
956 "digits": true,
957 "maxlength": 4,
958 "minlength": 4,
959 "equalTo": "#signupPIN",
960 "consecutiveDigits": true,
961 "atLeast3DifferentDigits": true
962 },
963
964 "verifyPIN": {
965 "required": true,
966 "digits": true,
967 "maxlength": 4,
968 "minlength": 4,
969 "consecutiveDigits": true,
970 "atLeast3DifferentDigits": true
971 },
972
973 "firstName": {
974 "required": true,
975 "minlength": 1,
976 "maxlength": 30
977 },
978 "middleName": {
979 "minlength": 0,
980 "maxlength": 30
981 },
982 "lastName": {
983 "required": true,
984 "minlength": 1,
985 "maxlength": 30
986 },
987
988
989 "deposit_amount": {
990 "required": true,
991 "number": true
992 },
993 "withdrawal_amount": {
994 "required": true,
995 "number": true
996 },
997 "chkrtg": {
998 "required": true,
999 "minlength": 9,
1000 "maxlength": 9,
1001 "digits": true
1002 },
1003 "chkact": {
1004 "required": true,
1005 "minlength": 1,
1006 "maxlength": 30,
1007 "digits": true
1008 },
1009 "resetPassword": {
1010 "required": true,
1011 "passwordfield76549834": true
1012 },
1013 "confirmResetPassword": {
1014 "required": true,
1015 "equalTo": "#resetPassword"
1016 },
1017 "bank_id": {
1018 "required": true,
1019 "digits": true
1020 },
1021 "id_type": {
1022 "required": true
1023 },
1024 "id_state": {
1025 "required": true
1026 },
1027
1028
1029 "email_address": {
1030 "required": false,
1031 "emailFull": true
1032 },
1033 "merchant_id": {
1034 "required": false,
1035 "digits": true
1036 },
1037
1038 "LOGIN": {
1039 "required": true
1040 },
1041 "PASSWORD": {
1042 "required": true
1043 },
1044
1045 "bankaccount": {
1046 "required": true
1047 },
1048
1049 "partner_id": {
1050 "digits": true,
1051 "maxlength": "10"
1052 }
1053
1054 },
1055 "formValidationMessages": {
1056 "name": {
1057 "required": "Name is Required"
1058 },
1059 "email": {
1060 "required": "Email Address is Required",
1061 "emailFull": "Email Address must be in the format user@domain.com"
1062 },
1063
1064 "bankname": {
1065 "required": "Bank name is Required"
1066 },
1067
1068 "bank_id": {
1069 "required": "Bank is Required",
1070 "digits": "Bank invalid"
1071 },
1072 "id_number": {
1073 "required": "ID Number is Required",
1074 "minlength": "ID Number Must be at Least 3 Digits",
1075 "maxlength": "ID Number Must be no Longer than 20 Digits"
1076 },
1077
1078 "dob_month": "Date of Birth Month Required",
1079 "dob_day": "Date of Birth Day Required",
1080 "dob_year": "Date of Birth Year Required",
1081
1082 "home_mailing_address": "Street Address is Required",
1083 "home_apartment_number": {
1084 "maxlength": "Apartment Number Must be no Longer Than 50 Characters"
1085 },
1086 "home_city": "City is Required",
1087 "home_state": "State is Required",
1088 "home_zip": "Zip Code is Required",
1089
1090 "home_phone": {
1091 "phoneUS": "Please Enter a Valid Home Phone Number",
1092 "require_from_group": "Either Home Phone Number or Mobile Phone Number Required"
1093 },
1094 "mobile_phone": {
1095 "phoneUS": "Please Enter a Valid Mobile Phone Number",
1096 "require_from_group": "Either Home Phone Number or Mobile Phone Number Required"
1097 },
1098
1099 "accept_terms": "Please Accept the Terms",
1100 "consumer_id": "Consumer ID is required",
1101 "password": "Password is Required",
1102 "consumer_password": "Password is Required",
1103 "signupPassword": "Password is Required and should contain 6 to 10 characters with at least one uppercase alpha, one lowercase alpha, one numeric character, and a special character ( ! - + @ # $ % )",
1104 "confirmPassword": "Password Confirmation is Required",
1105
1106 "consumer_PIN": "PIN is Required, 4 Digits Long, Non-consecutive, and 3 Unique Digits",
1107 "signupPIN": "PIN is Required, 4 Digits Long, Non-consecutive, and 3 Unique Digits",
1108 "confirmPIN": "PIN Confirmation is required",
1109
1110 "verifyPIN": "PIN is Required, 4 Digits Long, Non-consecutive, and 3 Unique Digits",
1111
1112 "firstName": "First Name is Required",
1113 "middleName": "",
1114 "lastName": "Last Name is Required",
1115
1116 "consumer_email": {
1117 "required": "Email Address is Required",
1118 "emailFull": "Email Address must be in the format user@domain.com"
1119 },
1120 "signupEmail": {
1121 "required": "Email Address is Required",
1122 "emailFull": "Email Address must be in the format user@domain.com"
1123 },
1124
1125 "deposit_amount": "Please Enter a Valid Deposit Amount",
1126 "withdrawal_amount": "Please Enter a Valid Withdrawal Amount",
1127 "chkact": "Please Enter a Valid Bank Account Number",
1128 "chkrtg": "Please Enter a Valid Bank Routing Number",
1129 "id_type": "ID Type is Required",
1130 "id_state": "ID State is Required",
1131
1132 "email_address": {
1133 "emailFull": "Email Address must be in the format user@domain.com"
1134 },
1135 "merchant_id": {
1136 "digits": "Merchant ID must be numeric"
1137 },
1138 "LOGIN": "Login is Required",
1139 "PASSWORD": "Password is Required",
1140
1141 "bankaccount": "Please Select An Account",
1142
1143 "resetPassword": "Password is Required and should contain 6 to 10 characters with at least one uppercase alpha, one lowercase alpha, one numeric character, and a special character ( ! - + @ # $ % )",
1144 "resetConfirmPassword": "Password Confirmation is Required",
1145
1146 "partner_id": {
1147 "digits": "Partner ID must be numeric",
1148 "maxlength": "Partner ID maximum length is 10 digits"
1149 }
1150
1151 }
1152 },
1153
1154 "reports": {
1155 "formValidationRules": {
1156 "terminal_id": {
1157 "required": true,
1158 "number": true
1159 },
1160 "clerk_id": {
1161 "required": false,
1162 "maxlength": 50
1163 },
1164 "batch_id": {
1165 "required": false,
1166 "maxlength": 50
1167 },
1168 "shift_id": {
1169 "required": false,
1170 "maxlength": 50
1171 },
1172 "current_page": {
1173 "required": true,
1174 "number": true,
1175 "min": 0
1176 },
1177 "row_count": {
1178 "required": true,
1179 "number": true,
1180 "min": 1,
1181 "max": 20
1182 },
1183 "role": {
1184 "required": true,
1185 "minlength": 1
1186 }
1187 },
1188 "formValidationMessages": {
1189 "terminal_id": "Terminal ID is Required and Must be Numeric",
1190 "clerk_id": "Clerk ID Must be a Maximum of 50 Characters",
1191 "batch_id": "Batch ID Must be a Maximum of 50 Characters",
1192 "shift_id": "Shift ID Must be a Maximum of 50 Characters",
1193 "current_page": "Current Page is Required and Must be Numeric",
1194 "row_count": "Row Count is Required and Must be a Numeric Value Between 1 and 20",
1195 "role": "Invalid Role"
1196 }
1197 },
1198
1199 "portal\/accountinquiry": {
1200 "formValidationRules": {
1201 "consumer_id": {
1202 "digits": true,
1203 "maxlength": "10"
1204 }
1205 },
1206 "formValidationMessages": {
1207 "consumer_id": {
1208 "digits": "Consumer ID must be numeric",
1209 "maxlength": "Consumer ID maximum length is 10 digits"
1210 }
1211 }
1212 },
1213
1214 "portal\/consumercdwmanager": {
1215 "formValidationRules": {},
1216 "formValidationMessages": {}
1217 },
1218
1219 "portal\/consumerpersonalinfo": {
1220 "formValidationRules": {
1221
1222 "id_number": {
1223 "maxlength": 20
1224 },
1225
1226 "dob": {
1227 "maxlength": 8
1228 },
1229
1230 "address1": {
1231 "required": true,
1232 "minlength": 1,
1233 "maxlength": 100
1234 },
1235 "address2": {
1236 "required": false,
1237 "minlength": 0,
1238 "maxlength": 100
1239 },
1240 "city": {
1241 "required": true,
1242 "minlength": 1,
1243 "maxlength": 50
1244 },
1245 "state": {
1246 "required": true,
1247 "minlength": 2,
1248 "maxlength": 2
1249 },
1250 "zip": {
1251 "required": true,
1252 "minlength": 5,
1253 "maxlength": 11
1254 },
1255
1256 "home_phone": {
1257 "required": true,
1258 "phoneUS": true
1259 },
1260 "mobile_phone": {
1261 "phoneUS": true
1262 },
1263
1264 "fname": {
1265 "required": true,
1266 "minlength": 1,
1267 "maxlength": 30
1268 },
1269 "mname": {
1270 "required": false,
1271 "minlength": 0,
1272 "maxlength": 30
1273 },
1274 "lname": {
1275 "required": true,
1276 "minlength": 1,
1277 "maxlength": 30
1278 },
1279
1280 "id_type": {
1281 "maxlength": 2
1282 },
1283 "id_state": {
1284 "maxlength": 2
1285 }
1286
1287 },
1288 "formValidationMessages": {
1289
1290 "id_number": {
1291 "maxlength": "ID Number Must be no Longer than 20 Digits"
1292 },
1293
1294 "dob": {
1295 "maxlength": "Date of Birth Must be no Longer than 8 Digits"
1296 },
1297
1298 "address1": {
1299 "required": "Address1 is Required",
1300 "maxlength": "Address1 Must be no Longer Than 100 Characters"
1301 },
1302 "address2": {
1303 "maxlength": "Apartment Number Must be no Longer Than 100 Characters"
1304 },
1305 "city": {
1306 "required": "City is Required",
1307 "maxlength": "City Must be no Longer Than 50 Characters"
1308 },
1309 "state": {
1310 "required": "State is Required",
1311 "maxlength": "State Must be no Longer Than 2 Characters"
1312 },
1313 "zip": {
1314 "required": "Zip is Required",
1315 "maxlength": "Zip Must be no Longer Than 11 Characters"
1316 },
1317
1318 "home_phone": {
1319 "required": "Home or Mobile Phone Number is Required",
1320 "phoneUS": "Home Phone Number Must be a Valid Phone Number"
1321 },
1322 "mobile_phone": {
1323 "phoneUS": "Mobile Phone Number Must be a Valid Phone Number"
1324 },
1325
1326 "fname": {
1327 "required": "First name is Required",
1328 "maxlength": "First name must be no Longer Than 30 Characters"
1329 },
1330 "mname": "Middle name must be no Longer Than 30 Characters",
1331 "lname": {
1332 "required": "Last name is Required",
1333 "maxlength": "Last name must be no Longer Than 30 Characters"
1334 },
1335
1336 "id_type": {
1337 "maxlength": "ID Type Must be no Longer than 2 characters"
1338 },
1339 "id_state": {
1340 "id_state": "ID State Must be no Longer than 2 characters"
1341 }
1342
1343 }
1344 },
1345
1346 "portal\/consumercancel": {
1347 "formValidationRules": {},
1348 "formValidationMessages": {}
1349 },
1350
1351 "portal\/consumerstatus": {
1352 "formValidationRules": {},
1353 "formValidationMessages": {}
1354 },
1355
1356 "portal\/merchantbanking": {
1357 "formValidationRules": {
1358 "tax_id": {
1359 "required": true,
1360 "maxlength": 30,
1361 "minlength": 1
1362 },
1363 "funding_aba": {
1364 "required": true,
1365 "digits": true,
1366 "maxlength": 9,
1367 "minlength": 9
1368 },
1369 "funding_dda": {
1370 "required": true,
1371 "digits": true,
1372 "maxlength": 30,
1373 "minlength": 1
1374 },
1375 "billing_aba": {
1376 "required": true,
1377 "digits": true,
1378 "maxlength": 9,
1379 "minlength": 9
1380 },
1381 "billing_dda": {
1382 "required": true,
1383 "digits": true,
1384 "maxlength": 30,
1385 "minlength": 1
1386 }
1387
1388 },
1389 "formValidationMessages": {
1390 "tax_id": {
1391 "required": "Tax ID is Required",
1392 "minlength": "Tax ID must be at least 1 Digit",
1393 "maxlength": "Tax ID must be less than 30 Digits"
1394 },
1395 "funding_aba": {
1396 "required": "Funding Routing Number is Required",
1397 "digits": "Funding Routing Number must be numeric",
1398 "minlength": "Funding Routing Number must be 9 Digits",
1399 "maxlength": "Funding Routing Number must be 9 Digits"
1400 },
1401 "funding_dda": {
1402 "required": "Funding DDA is Required",
1403 "digits": "Funding DDA must be numeric",
1404 "minlength": "Funding DDA must be at least 1 Digit",
1405 "maxlength": "Funding DDA must be less than 30 Digits"
1406 },
1407 "billing_aba": {
1408 "required": "Billing Routing Number is Required",
1409 "digits": "Billing Routing Number must be numeric",
1410 "minlength": "Billing Routing Number must be 9 Digits",
1411 "maxlength": "Billing Routing Number must be 9 Digits"
1412 },
1413 "billing_dda": {
1414 "required": "Billing DDA is Required",
1415 "digits": "Billing DDA must be numeric",
1416 "minlength": "Billing DDA must be at least 1 Digit",
1417 "maxlength": "Billing DDA must be less than 30 Digits"
1418 }
1419
1420 }
1421 },
1422
1423 "portal\/enrollmenttraceflow": {
1424 "formValidationRules": {
1425 "consumer_id": {
1426 "digits": true,
1427 "maxlength": "10"
1428 }
1429 },
1430 "formValidationMessages": {
1431 "consumer_id": {
1432 "digits": "Consumer ID must be numeric",
1433 "maxlength": "Consumer ID maximum length is 10 digits"
1434 }
1435 }
1436 },
1437
1438 "portal\/fraudsimulation": {
1439 "formValidationRules": {
1440 "partner_id": {
1441 "digits": true,
1442 "maxlength": "10"
1443 },
1444 "institution_id": {
1445 "digits": true,
1446 "maxlength": 9
1447 },
1448 "override_policy_name": {
1449 "maxlength": "50"
1450 },
1451 "consumer_ids": {
1452 "maxlength": "1024"
1453 }
1454 },
1455 "formValidationMessages": {
1456 "partner_id": {
1457 "digits": "Partner ID must be numeric",
1458 "maxlength": "Partner ID maximum length is 10 digits"
1459 },
1460 "institution_id": {
1461 "digits": "Institution ID must be numeric",
1462 "maxlength": "Institution ID maximum length is 9 digits"
1463 },
1464 "override_policy_name": {
1465 "maxlength": "Override Policy Name maximum length is 50 characters"
1466 },
1467 "consumer_ids": {
1468 "maxlength": "Consumer ID's list maximum length is 1024 characters"
1469 }
1470 }
1471 },
1472
1473 "portal\/transactionadjust": {
1474 "formValidationRules": {},
1475 "formValidationMessages": {}
1476 },
1477
1478 "portal\/clientcertinvite": {
1479 "formValidationRules": {
1480 "email": {
1481 "required": true,
1482 "emailFull": true
1483 },
1484 "app-note": {
1485 "required": true,
1486 "minlength": 1,
1487 "maxlength": 50
1488 }
1489 },
1490 "formValidationMessages": {
1491 "email": {
1492 "required": "Email Address is Required",
1493 "emailFull": "Email Address must be in the format user@domain.com"
1494 },
1495 "app-note": "App Note is required"
1496 }
1497 },
1498
1499 "portal\/clientboardingwizard": {
1500 "formValidationRules": {
1501
1502 "cbw-wizard-1000-network-id": {
1503 "required": true,
1504 "minlength": 1,
1505 "maxlength": 5,
1506 "number": true
1507 },
1508 "cbw-wizard-1020-partner-name": {
1509 "required": true,
1510 "minlength": 1,
1511 "maxlength": 100
1512 },
1513 "cbw-wizard-1020-partner-address1": {
1514 "required": true,
1515 "minlength": 1,
1516 "maxlength": 100
1517 },
1518 "cbw-wizard-1020-partner-address2": {
1519 "maxlength": 100
1520 },
1521 "cbw-wizard-1020-partner-city": {
1522 "required": true,
1523 "minlength": 1,
1524 "maxlength": 50
1525 },
1526 "cbw-wizard-1020-partner-state": {
1527 "required": true,
1528 "minlength": 2,
1529 "maxlength": 2
1530 },
1531 "cbw-wizard-1020-partner-zipcode": {
1532 "required": true,
1533 "minlength": 5,
1534 "maxlength": 5,
1535 "number": true
1536 },
1537 "cbw-wizard-1030-institution-frdaba": {
1538 "required": true,
1539 "minlength": 9,
1540 "maxlength": 9,
1541 "number": true
1542 },
1543 "cbw-wizard-1030-institution-desc": {
1544 "required": true,
1545 "minlength": 1,
1546 "maxlength": 50
1547 },
1548 "cbw-wizard-1030-institution-intercept-tid": {
1549 "minlength": 6,
1550 "maxlength": 6
1551 },
1552 "cbw-wizard-1030-select-pseudo-terminal-format": {
1553 "required": true
1554 },
1555 "cbw-wizard-1040-merchant-name": {
1556 "required": true,
1557 "minlength": 1,
1558 "maxlength": 100
1559 },
1560 "cbw-wizard-1040-merchant-location-number": {
1561 "required": true,
1562 "minlength": 1,
1563 "maxlength": 5,
1564 "number": true
1565 },
1566 "cbw-wizard-1040-merchant-lightspeed-account-number": {
1567 "required": true,
1568 "minlength": 15,
1569 "maxlength": 20,
1570 "stringUppercaseLettersNumbers": true
1571 },
1572 "cbw-wizard-1040-merchant-address1": {
1573 "required": true,
1574 "minlength": 1,
1575 "maxlength": 100
1576 },
1577 "cbw-wizard-1040-merchant-address2": {
1578 "maxlength": 100
1579 },
1580 "cbw-wizard-1040-merchant-city": {
1581 "required": true,
1582 "minlength": 1,
1583 "maxlength": 50
1584 },
1585 "cbw-wizard-1040-merchant-state": {
1586 "required": true,
1587 "minlength": 2,
1588 "maxlength": 2
1589 },
1590 "cbw-wizard-1040-merchant-zipcode": {
1591 "required": true,
1592 "minlength": 5,
1593 "maxlength": 5,
1594 "number": true
1595 },
1596 "cbw-wizard-1050-contact-name": {
1597 "required": true,
1598 "minlength": 1,
1599 "maxlength": 30
1600 },
1601 "cbw-wizard-1050-contact-email": {
1602 "required": true,
1603 "emailFull": true,
1604 "minlength": 5,
1605 "maxlength": 50
1606 },
1607 "cbw-wizard-1050-contact-mobile": {
1608 "required": true,
1609 "phoneUS": true
1610 },
1611 "cbw-wizard-1070-embed-host-url": {
1612 "required": true,
1613 "url": true
1614 },
1615 "cbw-wizard-1070-embed-style-url": {
1616 "required": true,
1617 "url": true
1618 },
1619 "cbw-wizard-1070-embed-redirect-url": {
1620 "required": true,
1621 "url": true
1622 },
1623 "cbw-wizard-1200-connect-code-prefix": {
1624 "required": true,
1625 "minlength": 6,
1626 "maxlength": 6,
1627 "number": true
1628 },
1629 "cbw-wizard-1600-app-id": {
1630 "required": true,
1631 "minlength": 1,
1632 "maxlength": 80,
1633 "stringLettersNumbersDashes": true
1634 },
1635 "cbw-wizard-1600-app-name": {
1636 "required": true,
1637 "minlength": 1,
1638 "maxlength": 80
1639 },
1640 "cbw-wizard-1600-app-desc": {
1641 "required": true,
1642 "minlength": 1,
1643 "maxlength": 240
1644 },
1645 "cbw-wizard-1610-web-hook-url": {
1646 "url": true
1647 }
1648
1649 },
1650 "formValidationMessages": {
1651
1652 "cbw-wizard-1000-network-id": "Network ID must be numeric and is required",
1653 "cbw-wizard-1020-partner-name": "Partner Name is required",
1654 "cbw-wizard-1020-partner-address1": "Address 1 is required",
1655 "cbw-wizard-1020-partner-address2": "Address 2 maximum length is 100 characters",
1656 "cbw-wizard-1020-partner-city": "City is required",
1657 "cbw-wizard-1020-partner-state": "State is required",
1658 "cbw-wizard-1000-partner-zipcode": "Zipcode must be numeric and is required",
1659 "cbw-wizard-1030-institution-frdaba": "Institution ID / FRDABA must be numeric and is required",
1660 "cbw-wizard-1030-institution-desc": "Institution description is required",
1661 "cbw-wizard-1030-institution-intercept-tid": "If provided, the Institution Intercept Terminal ID must be 6 characters",
1662 "cbw-wizard-1030-select-pseudo-terminal-format": "Pseudo Terminal ID Format selection is required",
1663 "cbw-wizard-1040-merchant-name": "Merchant Name is required",
1664 "cbw-wizard-1040-merchant-location-number": "Location Number must be numeric and is required",
1665 "cbw-wizard-1040-merchant-lightspeed-account-number": "Account Number may contact uppercase letters and numbers",
1666 "cbw-wizard-1040-merchant-address1": "Address 1 is required",
1667 "cbw-wizard-1040-merchant-address2": "Address 2 maximum length is 100 characters",
1668 "cbw-wizard-1040-merchant-city": "City is required",
1669 "cbw-wizard-1040-merchant-state": "State is required",
1670 "cbw-wizard-1040-merchant-zipcode": "Zipcode must be numeric and is required",
1671 "cbw-wizard-1050-contact-name": "Contact Name is required",
1672 "cbw-wizard-1050-contact-email": "Valid email is required",
1673 "cbw-wizard-1050-contact-mobile": "Valid Mobile Phone Number is required",
1674 "cbw-wizard-1070-embed-host-url": "Valid Embed Host URL is required",
1675 "cbw-wizard-1070-embed-style-url": "Valid Embed Style URL is required",
1676 "cbw-wizard-1070-embed-redirect-url": "Valid Embed Redirect URL is required",
1677 "cbw-wizard-1200-connect-code-prefix": "Connect Code Prefix must be numeric and is required",
1678 "cbw-wizard-1600-app-id": "App ID is required, maximum length is 80 characters, and may contain letters, numbers, and dashes",
1679 "cbw-wizard-1600-app-name": "App Name is required",
1680 "cbw-wizard-1600-app-desc": "App Description is required",
1681 "cbw-wizard-1610-web-hook-url": "Account Status Webhook URL must be valid. (optional)"
1682
1683 }
1684 },
1685
1686 "portal\/clientcredentialsbuilder": {
1687 "formValidationRules": {
1688
1689 "ccb-technical-contact-contact-name": {
1690 "required": true,
1691 "minlength": 1,
1692 "maxlength": 30
1693 },
1694 "ccb-technical-contact-contact-email": {
1695 "required": true,
1696 "emailFull": true,
1697 "minlength": 5,
1698 "maxlength": 50
1699 },
1700 "ccb-technical-contact-contact-mobile": {
1701 "required": true,
1702 "phoneUS": true
1703 }
1704
1705 },
1706 "formValidationMessages": {
1707
1708 "ccb-technical-contact-contact-name": "Contact Name is required",
1709 "ccb-technical-contact-contact-email": "Valid email is required",
1710 "ccb-technical-contact-contact-mobile": "Valid Mobile Phone Number is required"
1711
1712 }
1713 },
1714
1715 "portal\/consumerdeclinereview": {
1716 "formValidationRules": {
1717 "consumer_id": {
1718 "digits": true,
1719 "maxlength": "10"
1720 },
1721 "enrollment_id": {
1722 "digits": true,
1723 "maxlength": "10"
1724 },
1725 "account_status": {
1726 "maxlength": "3"
1727 },
1728 "consumer_account_status_desc": {
1729 "maxlength": "100"
1730 },
1731 "scoring_id": {
1732 "digits": true,
1733 "maxlength": "10"
1734 },
1735 "decline_review_decision": {
1736 "maxlength": "3"
1737 },
1738 "fraud_policy_override": {
1739 "maxlength": "30"
1740 },
1741 "network_id": {
1742 "digits": true,
1743 "maxlength": "10"
1744 },
1745 "partner_id": {
1746 "digits": true,
1747 "maxlength": "10"
1748 },
1749 "email_address": {
1750 "emailFull": true,
1751 "maxlength": "255"
1752 },
1753 "fname": {
1754 "maxlength": "30"
1755 },
1756 "lname": {
1757 "maxlength": "30"
1758 },
1759 "address1": {
1760 "maxlength": "100"
1761 },
1762 "address2": {
1763 "maxlength": "100"
1764 },
1765 "city": {
1766 "maxlength": "100"
1767 },
1768 "state": {
1769 "maxlength": "3"
1770 },
1771 "home_phone": {
1772 "phoneUS": true
1773 },
1774 "mobile_phone": {
1775 "phoneUS": true
1776 },
1777 "zip": {
1778 "maxlength": "10"
1779 },
1780 "enrollment_type": {
1781 "maxlength": "3"
1782 },
1783 "active": {
1784 "checkbox": true
1785 },
1786 "activated_on": {
1787 "maxlength": 20
1788 },
1789 "deactivated_on": {
1790 "maxlength": 20
1791 },
1792 "deactivate_reason": {
1793 "maxlength": "3"
1794 },
1795 "reactivate_reason": {
1796 "maxlength": "3"
1797 },
1798 "cdw_transaction_requested": {
1799 "checkbox": true
1800 },
1801 "cdw_transaction_rejected": {
1802 "checkbox": true
1803 },
1804 "cdw_user_confirmed": {
1805 "checkbox": true
1806 },
1807 "cdw_user_attempts": {
1808 "digits": true,
1809 "maxlength": "5"
1810 },
1811 "compare_score": {
1812 "digits": true,
1813 "maxlength": "10"
1814 },
1815 "compare_log": {
1816 "maxlength": "1024"
1817 }
1818 },
1819 "formValidationMessages": {
1820 "consumer_id": {
1821 "digits": "Consumer ID must be numeric",
1822 "maxlength": "Consumer ID maximum length is 10 digits"
1823 },
1824 "enrollment_id": {
1825 "digits": "Enrollment ID must be numeric",
1826 "maxlength": "Enrollment ID maximum length is 10 digits"
1827 },
1828 "account_status": {
1829 "maxlength": "Account Status Code maximum length is 3 characters"
1830 },
1831 "consumer_account_status_desc": {
1832 "maxlength": "Account Status Code Desc maximum length is 100 characters"
1833 },
1834 "scoring_id": {
1835 "digits": "Scoring ID must be numeric",
1836 "maxlength": "Scoring ID maximum length is 10 digits"
1837 },
1838 "decline_review_decision": {
1839 "maxlength": "Decision maximum length is 3 characters"
1840 },
1841 "fraud_policy_override": {
1842 "maxlength": "Fraud Policy - Override maximum length is 30 characters"
1843 },
1844 "network_id": {
1845 "digits": "Network ID must be numeric",
1846 "maxlength": "Network ID maximum length is 10 digits"
1847 },
1848 "partner_id": {
1849 "digits": "Partner ID must be numeric",
1850 "maxlength": "Partner ID maximum length is 10 digits"
1851 },
1852 "email_address": {
1853 "emailFull": "Email Address must be in the format user@domain.com",
1854 "maxlength": "Email Address maximum length is 255 characters"
1855 },
1856 "fname": {
1857 "maxlength": "First Name maximum length is 30 characters"
1858 },
1859 "lname": {
1860 "maxlength": "Last Name maximum length is 30 characters"
1861 },
1862 "address1": {
1863 "maxlength": "Address 1 maximum length is 100 characters"
1864 },
1865 "address2": {
1866 "maxlength": "Address 2 maximum length is 100 characters"
1867 },
1868 "city": {
1869 "maxlength": "City maximum length is 100 characters"
1870 },
1871 "state": {
1872 "maxlength": "State maximum length is 3 characters"
1873 },
1874 "home_phone": {
1875 "phoneUS": "Home Phone Number must be valid US phone number"
1876 },
1877 "mobile_phone": {
1878 "phoneUS": "Mobile Phone Number must be valid US phone number"
1879 },
1880 "zip": {
1881 "maxlength": "Zip Code maximum length is 10 characters"
1882 },
1883 "enrollment_type": {
1884 "maxlength": "Enrollment Type maximum length is 3 characters"
1885 },
1886 "active": {
1887 "digits": "Active must be checked or unchecked"
1888 },
1889 "activated_on": {
1890 "maxlength": "Activated On maximum length is 20 characters"
1891 },
1892 "deactivated_on": {
1893 "maxlength": "Deactivated On maximum length is 20 characters"
1894 },
1895 "deactivate_reason": {
1896 "maxlength": "Deactivate Reason Code maximum length is 3 characters"
1897 },
1898 "reactivate_reason": {
1899 "maxlength": "Reactivate Reason Code maximum length is 3 characters"
1900 },
1901 "cdw_transaction_requested": {
1902 "digits": "CDW Requested must be checked or unchecked"
1903 },
1904 "cdw_transaction_rejected": {
1905 "digits": "CDW Rejected must be checked or unchecked"
1906 },
1907 "cdw_user_confirmed": {
1908 "digits": "CDW User Confirmed must be checked or unchecked"
1909 },
1910 "cdw_user_attempts": {
1911 "digits": "CDW Attempts must be numeric",
1912 "maxlength": "CDW Attempts maximum length is 5 digits"
1913 },
1914 "compare_score": {
1915 "digits": "Compare Score must be numeric",
1916 "maxlength": "Compare Score maximum length is 10 digits"
1917 },
1918 "compare_log": {
1919 "maxlength": "Compare Desc maximum length is 1024 characters"
1920 }
1921 }
1922 },
1923 "portal\/institutions": {
1924 "formValidationRules": {
1925 "institution_id": {
1926 "digits": true,
1927 "maxlength": 9
1928 },
1929 "partner_id": {
1930 "digits": true,
1931 "maxlength": "10"
1932 },
1933 "desc": {
1934 "maxlength": "50"
1935 },
1936 "intercept_terminal_id": {
1937 "maxlength": "6"
1938 },
1939 "acquiring": {
1940 "checkbox": true
1941 },
1942 "pseudo_terminal_format": {
1943 "digits": true,
1944 "maxlength": "5"
1945 }
1946 },
1947 "formValidationMessages": {
1948 "institution_id": {
1949 "digits": "Institution ID must be numeric",
1950 "maxlength": "Institution ID maximum length is 9 digits"
1951 },
1952 "partner_id": {
1953 "digits": "Partner ID must be numeric",
1954 "maxlength": "Partner ID maximum length is 10 digits"
1955 },
1956 "desc": {
1957 "maxlength": "Name maximum length is 50 characters"
1958 },
1959 "intercept_terminal_id": {
1960 "maxlength": "DE-063.1 Pseudo Intercept Terminal ID maximum length is 6 characters"
1961 },
1962 "acquiring": {
1963 "digits": "Acquirer must be checked or unchecked"
1964 },
1965 "pseudo_terminal_format": {
1966 "digits": "Pseudo Terminal ID Type must be numeric",
1967 "maxlength": "Pseudo Terminal ID Type maximum length is 5 digits"
1968 }
1969 }
1970 },
1971 "portal\/partners": {
1972 "formValidationRules": {
1973 "partner_id": {
1974 "digits": true,
1975 "maxlength": "10"
1976 },
1977 "network_id": {
1978 "digits": true,
1979 "maxlength": "10"
1980 },
1981 "name": {
1982 "required": true,
1983 "minlength": "3",
1984 "maxlength": "100"
1985 },
1986 "address1": {
1987 "required": true,
1988 "minlength": 1,
1989 "maxlength": 100
1990 },
1991 "address2": {
1992 "required": false,
1993 "minlength": 0,
1994 "maxlength": 100
1995 },
1996 "city": {
1997 "required": true,
1998 "minlength": 1,
1999 "maxlength": 50
2000 },
2001 "state": {
2002 "required": true,
2003 "minlength": 2,
2004 "maxlength": 2
2005 },
2006 "zipcode": {
2007 "required": true,
2008 "minlength": 5,
2009 "maxlength": 11
2010 },
2011 "connectcode_prefix": {
2012 "digits": true,
2013 "maxlength": "6"
2014 },
2015 "feature_set": {
2016 "maxlength": "512"
2017 },
2018 "branding_legal_name": {
2019 "maxlength": "50"
2020 },
2021 "branding_card_brand": {
2022 "maxlength": "50"
2023 },
2024 "branding_card_brand_image": {
2025 "pngOnly": true,
2026 "maxlength": "250"
2027 },
2028 "branding_support_phone": {
2029 "phoneUS": true
2030 },
2031 "branding_support_email": {
2032 "emailFull": true,
2033 "maxlength": "50"
2034 },
2035 "branding_service_phone": {
2036 "phoneUS": true
2037 },
2038 "branding_service_email": {
2039 "emailFull": true,
2040 "maxlength": "50"
2041 },
2042 "branding_product_website_url": {
2043 "maxlength": "250"
2044 },
2045 "active": {
2046 "checkbox": true
2047 },
2048 "webhook_url": {
2049 "maxlength": "1024"
2050 },
2051 "autovoid_timer": {
2052 "min": 0,
2053 "max": 300
2054 }
2055 },
2056 "formValidationMessages": {
2057 "partner_id": {
2058 "digits": "Partner ID must be numeric",
2059 "maxlength": "Partner ID maximum length is 10 digits"
2060 },
2061 "network_id": {
2062 "digits": "Network ID must be numeric",
2063 "maxlength": "Network ID maximum length is 10 digits"
2064 },
2065 "name": {
2066 "required": "Name is required",
2067 "minlength": "Name minimum length is 3 characters",
2068 "maxlength": "Name maximum length is 100 characters"
2069 },
2070 "address1": {
2071 "required": "Address1 is Required",
2072 "maxlength": "Address1 Must be no Longer Than 100 Characters"
2073 },
2074 "address2": {
2075 "maxlength": "Apartment Number Must be no Longer Than 100 Characters"
2076 },
2077 "city": {
2078 "required": "City is Required",
2079 "maxlength": "City Must be no Longer Than 50 Characters"
2080 },
2081 "state": {
2082 "required": "State is Required",
2083 "maxlength": "State Must be no Longer Than 2 Characters"
2084 },
2085 "zipcode": {
2086 "required": "Zip Code is Required",
2087 "maxlength": "Zip Code Must be no Longer Than 11 Characters"
2088 },
2089 "connectcode_prefix": {
2090 "digits": "Connect Code Prefix must be numeric",
2091 "maxlength": "Connect Code Prefix maximum length is 6 characters"
2092 },
2093 "feature_set": {
2094 "maxlength": "Feature Set maximum length is 512 characters"
2095 },
2096 "branding_legal_name": {
2097 "maxlength": "Branding: Legal Name maximum length is 50 characters"
2098 },
2099 "branding_card_brand": {
2100 "maxlength": "Branding: Card Brand maximum length is 50 characters"
2101 },
2102 "branding_card_brand_image": {
2103 "maxlength": "Branding: Card Brand Image must be a valid png filename"
2104 },
2105 "branding_support_phone": {
2106 "phoneUS": "Branding: Support Phone must be valid US phone number"
2107 },
2108 "branding_support_email": {
2109 "emailFull": "Branding: Support Email must be in the format user@domain.com",
2110 "maxlength": "Branding: Support Email maximum length is 50 characters"
2111 },
2112 "branding_service_phone": {
2113 "phoneUS": "Branding: Service Phone must be valid US phone number"
2114 },
2115 "branding_service_email": {
2116 "emailFull": "Branding: Service Email must be in the format user@domain.com",
2117 "maxlength": "Branding: Service Email maximum length is 50 characters"
2118 },
2119 "branding_product_website_url": {
2120 "maxlength": "Branding: Product Website URL maximum length is 250 characters"
2121 },
2122 "active": {
2123 "digits": "Active must be checked or unchecked"
2124 },
2125 "webhook_url": {
2126 "maxlength": "Webhook URL maximum length is 1024 characters"
2127 }
2128
2129 }
2130 },
2131 "portal\/partnernotifications": {
2132 "formValidationRules": {
2133 "partner_id": {
2134 "digits": true,
2135 "maxlength": "10"
2136 },
2137 "email_card_deactivated": {
2138 "checkbox": true
2139 },
2140 "email_card_status_hold_to_active": {
2141 "checkbox": true
2142 },
2143 "email_clientcredentials_invite": {
2144 "checkbox": true
2145 },
2146 "email_clientcert_invite": {
2147 "checkbox": true
2148 },
2149 "email_enrollment_challenge_instructions": {
2150 "checkbox": true
2151 },
2152 "email_enrollment_challenge_first_reminder": {
2153 "checkbox": true
2154 },
2155 "email_enrollment_challenge_final_reminder": {
2156 "checkbox": true
2157 },
2158 "email_enrollment_failed_consumer_info": {
2159 "checkbox": true
2160 },
2161 "email_enrollment_failed_bank_validation": {
2162 "checkbox": true
2163 },
2164 "email_enrollment_fcra_notice": {
2165 "checkbox": true
2166 },
2167 "email_enrollment_complete": {
2168 "checkbox": true
2169 },
2170 "email_transaction_complete": {
2171 "checkbox": true
2172 },
2173 "email_transaction_declined": {
2174 "checkbox": true
2175 },
2176 "email_transaction_declined_hold": {
2177 "checkbox": true
2178 },
2179 "email_transaction_nsf": {
2180 "checkbox": true
2181 },
2182 "email_proc_invalid_merchant": {
2183 "checkbox": true
2184 },
2185 "email_user_account_update": {
2186 "checkbox": true
2187 },
2188 "email_user_password_reset": {
2189 "checkbox": true
2190 },
2191 "email_user_pin_reset": {
2192 "checkbox": true
2193 },
2194 "email_statement_monthly": {
2195 "checkbox": true
2196 },
2197 "email_provider_id": {
2198 "maxlength": "1"
2199 },
2200 "email_provider_api_key": {
2201 "maxlength": "200"
2202 },
2203 "email_from_name": {
2204 "maxlength": "200"
2205 },
2206 "email_from_address": {
2207 "emailFull": true,
2208 "maxlength": "200"
2209 }
2210 },
2211 "formValidationMessages": {
2212 "partner_id": {
2213 "digits": "Partner ID must be numeric",
2214 "maxlength": "Partner ID maximum length is 10 digits"
2215 },
2216 "email_card_deactivated": {
2217 "checkbox": "Email: card_deactivated must be checked or unchecked"
2218 },
2219 "email_card_status_hold_to_active": {
2220 "digits": "Email: card_status_hold_to_active must be checked or unchecked"
2221 },
2222 "email_clientcredentials_invite": {
2223 "digits": "Email: clientcredentials_invite must be checked or unchecked"
2224 },
2225 "email_clientcert_invite": {
2226 "digits": "Email: clientcert_invite must be checked or unchecked"
2227 },
2228 "email_enrollment_challenge_instructions": {
2229 "digits": "Email: enrollment_challenge_instructions must be checked or unchecked"
2230 },
2231 "email_enrollment_challenge_first_reminder": {
2232 "digits": "Email: enrollment_challenge_first_reminder must be checked or unchecked"
2233 },
2234 "email_enrollment_challenge_final_reminder": {
2235 "digits": "Email: enrollment_challenge_final_reminder must be checked or unchecked"
2236 },
2237 "email_enrollment_failed_consumer_info": {
2238 "digits": "Email: enrollment_failed_consumer_info must be checked or unchecked"
2239 },
2240 "email_enrollment_failed_bank_validation": {
2241 "digits": "Email: enrollment_failed_bank_validation must be checked or unchecked"
2242 },
2243 "email_enrollment_fcra_notice": {
2244 "digits": "Email: enrollment_fcra_notice must be checked or unchecked"
2245 },
2246 "email_enrollment_complete": {
2247 "digits": "Email: enrollment_complete must be checked or unchecked"
2248 },
2249 "email_transaction_complete": {
2250 "digits": "Email: transaction_complete must be checked or unchecked"
2251 },
2252 "email_transaction_declined": {
2253 "digits": "Email: transaction_declined must be checked or unchecked"
2254 },
2255 "email_transaction_declined_hold": {
2256 "digits": "Email: transaction_declined_hold must be checked or unchecked"
2257 },
2258 "email_transaction_nsf": {
2259 "digits": "Email: transaction_nsf must be checked or unchecked"
2260 },
2261 "email_proc_invalid_merchant": {
2262 "digits": "Email: proc_invalid_merchant must be checked or unchecked"
2263 },
2264 "email_user_account_update": {
2265 "digits": "Email: user_account_update must be checked or unchecked"
2266 },
2267 "email_user_password_reset": {
2268 "digits": "Email: user_password_reset must be checked or unchecked"
2269 },
2270 "email_user_pin_reset": {
2271 "digits": "Email: user_pin_reset must be checked or unchecked"
2272 },
2273 "email_statement_monthly": {
2274 "digits": "Email: statement_monthly must be checked or unchecked"
2275 },
2276 "email_provider_id": {
2277 "maxlength": "Email Provider ID maximum length is 1 characters"
2278 },
2279 "email_provider_api_key": {
2280 "maxlength": "Email Provider API Key maximum length is 200 characters"
2281 },
2282 "email_from_name": {
2283 "maxlength": "Email From Name maximum length is 200 characters"
2284 },
2285 "email_from_address": {
2286 "emailFull": "Email From Address must be in the format user@domain.com",
2287 "maxlength": "Email From Address maximum length is 200 characters"
2288 }
2289 }
2290 },
2291 "portal\/networks": {
2292 "formValidationRules": {
2293 "network_id": {
2294 "digits": true,
2295 "maxlength": "10"
2296 },
2297 "network_desc": {
2298 "maxlength": "20"
2299 },
2300 "network_name": {
2301 "maxlength": "10",
2302 "stringLettersNumbersDashes": true
2303 },
2304 "auth_platform_id": {
2305 "maxlength": "255"
2306 }
2307 },
2308 "formValidationMessages": {
2309 "network_id": {
2310 "digits": "Network ID must be numeric",
2311 "maxlength": "Network ID maximum length is 10 digits"
2312 },
2313 "network_desc": {
2314 "maxlength": "Description maximum length is 20 characters"
2315 },
2316 "network_name": {
2317 "maxlength": "Network Name maximum length is 10 characters",
2318 "stringLettersNumbersDashes": "Network Name may contain letters, numbers, and dashes"
2319 },
2320 "auth_platform_id": {
2321 "maxlength": "Auth Platform maximum length is 255 characters"
2322 }
2323 }
2324 },
2325 "portal\/merchants": {
2326 "formValidationRules": {
2327 "merchant_id": {
2328 "digits": true,
2329 "maxlength": "20"
2330 },
2331 "partner_id": {
2332 "digits": true,
2333 "maxlength": "10"
2334 },
2335 "institution_id": {
2336 "digits": true,
2337 "maxlength": 9
2338 },
2339 "intercept_terminal_id": {
2340 "maxlength": "6"
2341 },
2342 "location_number": {
2343 "maxlength": "5"
2344 },
2345 "auth_platform_id": {
2346 "maxlength": "255"
2347 },
2348 "industry_type": {
2349 "maxlength": "255"
2350 },
2351 "account_number": {
2352 "maxlength": "20"
2353 },
2354 "name": {
2355 "maxlength": "100"
2356 },
2357 "address1": {
2358 "maxlength": "100"
2359 },
2360 "address2": {
2361 "maxlength": "100"
2362 },
2363 "city": {
2364 "maxlength": "50"
2365 },
2366 "state": {
2367 "maxlength": "2"
2368 },
2369 "zipcode": {
2370 "maxlength": "10"
2371 },
2372 "ach_statement_id": {
2373 "maxlength": "15"
2374 },
2375 "ach_trans_type": {
2376 "maxlength": "3"
2377 },
2378 "active": {
2379 "checkbox": true
2380 }
2381 },
2382 "formValidationMessages": {
2383 "merchant_id": {
2384 "digits": "Merchant ID must be numeric",
2385 "maxlength": "Merchant ID maximum length is 20 digits"
2386 },
2387 "partner_id": {
2388 "digits": "Partner ID must be numeric",
2389 "maxlength": "Partner ID maximum length is 10 digits"
2390 },
2391 "institution_id": {
2392 "digits": "Institution ID must be numeric",
2393 "maxlength": "Institution ID maximum length is 9 digits"
2394 },
2395 "intercept_terminal_id": {
2396 "maxlength": "Intercept Terminal ID maximum length is 6 characters"
2397 },
2398 "location_number": {
2399 "maxlength": "Location Number maximum length is 5 characters"
2400 },
2401 "auth_platform_id": {
2402 "maxlength": "Auth Platform ID maximum length is 255 characters"
2403 },
2404 "industry_type": {
2405 "maxlength": "Industry Type maximum length is 255 characters"
2406 },
2407 "account_number": {
2408 "maxlength": "Account Number maximum length is 20 characters"
2409 },
2410 "name": {
2411 "maxlength": "Name maximum length is 100 characters"
2412 },
2413 "address1": {
2414 "maxlength": "Address 1 maximum length is 100 characters"
2415 },
2416 "address2": {
2417 "maxlength": "Address 2 maximum length is 100 characters"
2418 },
2419 "city": {
2420 "maxlength": "City maximum length is 50 characters"
2421 },
2422 "state": {
2423 "maxlength": "State maximum length is 2 characters"
2424 },
2425 "zipcode": {
2426 "maxlength": "Zip Code maximum length is 10 characters"
2427 },
2428 "ach_statement_id": {
2429 "maxlength": "ACH Statement Title maximum length is 15 characters"
2430 },
2431 "ach_trans_type": {
2432 "maxlength": "ACH Trans Type maximum length is 3 characters"
2433 },
2434 "active": {
2435 "checkbox": "Active must be checked or unchecked"
2436 }
2437 }
2438 },
2439 "portal\/terminals": {
2440 "formValidationRules": {
2441 "terminal_id": {
2442 "digits": true,
2443 "maxlength": "10"
2444 },
2445 "pseudo_terminal_id": {
2446 "maxlength": "50"
2447 },
2448 "partner_id": {
2449 "digits": true,
2450 "maxlength": "10"
2451 },
2452 "institution_id": {
2453 "digits": true,
2454 "maxlength": 9
2455 },
2456 "merchant_id": {
2457 "digits": true,
2458 "required": true,
2459 "minlength": 3,
2460 "maxlength": "19"
2461 },
2462 "external_merchant_id": {
2463 "maxlength": "15"
2464 },
2465 "external_terminal_id": {
2466 "maxlength": "8"
2467 },
2468 "intercept_terminal_id": {
2469 "maxlength": "6"
2470 },
2471 "active": {
2472 "checkbox": true
2473 }
2474 },
2475 "formValidationMessages": {
2476 "terminal_id": {
2477 "digits": "Terminal ID must be numeric",
2478 "maxlength": "Terminal ID maximum length is 10 digits"
2479 },
2480 "pseudo_terminal_id": {
2481 "maxlength": "Pseudo Terminal ID maximum length is 50 characters"
2482 },
2483 "partner_id": {
2484 "digits": "Partner ID must be numeric",
2485 "maxlength": "Partner ID maximum length is 10 digits"
2486 },
2487 "institution_id": {
2488 "digits": "Institution ID must be numeric",
2489 "maxlength": "Institution ID maximum length is 9 digits"
2490 },
2491 "merchant_id": {
2492 "digits": "Merchant ID must be numeric",
2493 "required": "Merchant ID is required",
2494 "minlength": "Merchant ID minimum length is 3 digits",
2495 "maxlength": "Merchant ID maximum length is 19 digits"
2496 },
2497 "external_merchant_id": {
2498 "maxlength": "External Merchant ID maximum length is 15 characters"
2499 },
2500 "external_terminal_id": {
2501 "maxlength": "External Terminal ID maximum length is 8 characters"
2502 },
2503 "intercept_terminal_id": {
2504 "maxlength": "Intercept Terminal ID maximum length is 6 characters"
2505 },
2506 "active": {
2507 "checkbox": "Active must be checked or unchecked"
2508 }
2509 }
2510 },
2511 "portal\/enrollments": {
2512 "formValidationRules": {
2513 "enrollment_id": {
2514 "digits": true,
2515 "maxlength": "10"
2516 },
2517 "partner_id": {
2518 "digits": true,
2519 "maxlength": "10"
2520 },
2521 "merchant_id": {
2522 "digits": true,
2523 "maxlength": "19"
2524 },
2525 "email_address": {
2526 "emailFull": true,
2527 "maxlength": "255"
2528 },
2529 "consumer_id": {
2530 "digits": true,
2531 "maxlength": "10"
2532 },
2533 "action_code": {
2534 "digits": true,
2535 "maxlength": "10"
2536 },
2537 "response_status": {
2538 "digits": true,
2539 "maxlength": "10"
2540 },
2541 "last_redirect": {
2542 "maxlength": "30"
2543 },
2544 "last_fallback": {
2545 "maxlength": "30"
2546 },
2547 "iav_item_id": {
2548 "maxlength": "30"
2549 },
2550 "iav_bank_id": {
2551 "digits": true,
2552 "maxlength": "10"
2553 },
2554 "message": {
2555 "maxlength": "200"
2556 }
2557 },
2558 "formValidationMessages": {
2559 "enrollment_id": {
2560 "digits": "ID must be numeric",
2561 "maxlength": "ID maximum length is 10 digits"
2562 },
2563 "partner_id": {
2564 "digits": "Partner ID must be numeric",
2565 "maxlength": "Partner ID maximum length is 10 digits"
2566 },
2567 "merchant_id": {
2568 "digits": "Merchant ID must be numeric",
2569 "maxlength": "Merchant ID maximum length is 19 digits"
2570 },
2571 "email_address": {
2572 "emailFull": "Email Address must be in the format user@domain.com",
2573 "maxlength": "Email Address maximum length is 255 characters"
2574 },
2575 "consumer_id": {
2576 "digits": "Consumer ID must be numeric",
2577 "maxlength": "Consumer ID maximum length is 10 digits"
2578 },
2579 "action_code": {
2580 "digits": "Action Code must be numeric",
2581 "maxlength": "Action Code maximum length is 10 digits"
2582 },
2583 "response_status": {
2584 "digits": "Status must be numeric",
2585 "maxlength": "Status maximum length is 10 digits"
2586 },
2587 "last_redirect": {
2588 "maxlength": "Last Redirect maximum length is 30 characters"
2589 },
2590 "last_fallback": {
2591 "maxlength": "Last Fallback maximum length is 30 characters"
2592 },
2593 "iav_item_id": {
2594 "maxlength": "IAV Item ID maximum length is 30 characters"
2595 },
2596 "iav_bank_id": {
2597 "digits": "Bank ID must be numeric",
2598 "maxlength": "Bank ID maximum length is 10 digits"
2599 },
2600 "message": {
2601 "maxlength": "Message maximum length is 200 characters"
2602 }
2603 }
2604 },
2605 "portal\/consumers": {
2606 "formValidationRules": {
2607 "consumer_id": {
2608 "digits": true,
2609 "maxlength": "10"
2610 },
2611 "network_id": {
2612 "digits": true,
2613 "maxlength": "10"
2614 },
2615 "partner_id": {
2616 "digits": true,
2617 "maxlength": "10"
2618 },
2619 "email_address": {
2620 "emailFull": false,
2621 "maxlength": "255"
2622 },
2623 "fname": {
2624 "maxlength": "30"
2625 },
2626 "mname": {
2627 "maxlength": "30"
2628 },
2629 "lname": {
2630 "maxlength": "30"
2631 },
2632 "address1": {
2633 "maxlength": "100"
2634 },
2635 "address2": {
2636 "maxlength": "100"
2637 },
2638 "city": {
2639 "required": true,
2640 "minlength": "3",
2641 "maxlength": "100"
2642 },
2643 "state": {
2644 "maxlength": "3"
2645 },
2646 "home_phone": {
2647 "phoneUS": false
2648 },
2649 "zip": {
2650 "maxlength": "10"
2651 },
2652 "enrollment_type": {
2653 "maxlength": "3"
2654 },
2655 "active": {
2656 "checkbox": true
2657 },
2658 "activated_on": {
2659 "maxlength": 20
2660 },
2661 "deactivated_on": {
2662 "maxlength": 20
2663 },
2664 "deactivate_reason": {
2665 "maxlength": "3"
2666 },
2667 "account_status": {
2668 "maxlength": "3"
2669 },
2670 "consumer_account_status_desc": {
2671 "maxlength": "100"
2672 },
2673 "reactivate_reason": {
2674 "maxlength": "3"
2675 },
2676 "cdw_transaction_requested": {
2677 "checkbox": true
2678 },
2679 "cdw_transaction_rejected": {
2680 "checkbox": true
2681 },
2682 "cdw_user_confirmed": {
2683 "checkbox": true
2684 },
2685 "cdw_user_attempts": {
2686 "digits": true,
2687 "maxlength": "5"
2688 },
2689 "cdw_deposit_amount": {
2690 "number": true,
2691 "maxlength": "5"
2692 },
2693 "cdw_withdrawal_amount": {
2694 "number": true,
2695 "maxlength": "5"
2696 },
2697 "fraud_policy_base": {
2698 "maxlength": "30"
2699 },
2700 "fraud_policy_override": {
2701 "maxlength": "30"
2702 },
2703 "compare_score": {
2704 "digits": true,
2705 "maxlength": "10"
2706 },
2707 "compare_log": {
2708 "maxlength": "1024"
2709 },
2710 "decline_review_decision": {
2711 "maxlength": "3"
2712 },
2713 "decline_review_decision_desc": {
2714 "maxlength": "100"
2715 }
2716 },
2717 "formValidationMessages": {
2718 "consumer_id": {
2719 "digits": "Consumer ID must be numeric",
2720 "maxlength": "Consumer ID maximum length is 10 digits"
2721 },
2722 "network_id": {
2723 "digits": "Network ID must be numeric",
2724 "maxlength": "Network ID maximum length is 10 digits"
2725 },
2726 "partner_id": {
2727 "digits": "Partner ID must be numeric",
2728 "maxlength": "Partner ID maximum length is 10 digits"
2729 },
2730 "email_address": {
2731 "emailFull": "Email Address must be in the format user@domain.com",
2732 "maxlength": "Email Address maximum length is 255 characters"
2733 },
2734 "fname": {
2735 "maxlength": "First Name maximum length is 30 characters"
2736 },
2737 "mname": {
2738 "maxlength": "Middle Name maximum length is 30 characters"
2739 },
2740 "lname": {
2741 "maxlength": "Last Name maximum length is 30 characters"
2742 },
2743 "address1": {
2744 "maxlength": "Address 1 maximum length is 100 characters"
2745 },
2746 "address2": {
2747 "maxlength": "Address 2 maximum length is 100 characters"
2748 },
2749 "city": {
2750 "required": "City is required",
2751 "minlength": "City minimum length is 3 characters",
2752 "maxlength": "City maximum length is 100 characters"
2753 },
2754 "state": {
2755 "maxlength": "State maximum length is 3 characters"
2756 },
2757 "home_phone": {
2758 "phoneUS": "Home Phone Number must be valid US phone number"
2759 },
2760 "mobile_phone": {
2761 "phoneUS": "Mobile Phone Number must be valid US phone number"
2762 },
2763 "zip": {
2764 "maxlength": "Zip Code maximum length is 10 characters"
2765 },
2766 "enrollment_type": {
2767 "maxlength": "Enrollment Type maximum length is 3 characters"
2768 },
2769 "active": {
2770 "checkbox": "Active must be checked or unchecked"
2771 },
2772 "activated_on": {
2773 "maxlength": "Activated On maximum length is 20 characters"
2774 },
2775 "deactivated_on": {
2776 "maxlength": "Deactivated On maximum length is 20 characters"
2777 },
2778 "deactivate_reason": {
2779 "maxlength": "Deactivate Reason Code maximum length is 3 characters"
2780 },
2781 "account_status": {
2782 "maxlength": "Account Status Code maximum length is 3 characters"
2783 },
2784 "consumer_account_status_desc": {
2785 "maxlength": "Account Status Code Desc maximum length is 100 characters"
2786 },
2787 "reactivate_reason": {
2788 "maxlength": "Reactivate Reason Code maximum length is 3 characters"
2789 },
2790 "cdw_transaction_requested": {
2791 "checkbox": "CDW Requested must be checked or unchecked"
2792 },
2793 "cdw_transaction_rejected": {
2794 "checkbox": "CDW Rejected must be checked or unchecked"
2795 },
2796 "cdw_user_confirmed": {
2797 "checkbox": "CDW User Confirmed must be checked or unchecked"
2798 },
2799 "cdw_user_attempts": {
2800 "digits": "CDW Attempts must be numeric",
2801 "maxlength": "CDW Attempts maximum length is 5 digits"
2802 },
2803 "cdw_deposit_amount": {
2804 "number": "CDW Deposit Amount must be a valid amount",
2805 "maxlength": "CDW Deposit Amount maximum length is 5 characters"
2806 },
2807 "cdw_withdrawal_amount": {
2808 "number": "CDW Withdrawal Amount must be a valid amount",
2809 "maxlength": "CDW Withdrawal Amount maximum length is 5 characters"
2810 },
2811 "fraud_policy_base": {
2812 "maxlength": "Fraud Policy - Base maximum length is 30 characters"
2813 },
2814 "fraud_policy_override": {
2815 "maxlength": "Fraud Policy - Override maximum length is 30 characters"
2816 },
2817 "compare_score": {
2818 "digits": "Compare Score must be numeric",
2819 "maxlength": "Compare Score maximum length is 10 digits"
2820 },
2821 "compare_log": {
2822 "maxlength": "Compare Desc maximum length is 1024 characters"
2823 },
2824 "decline_review_decision": {
2825 "maxlength": "Decline Review Decision maximum length is 3 characters"
2826 },
2827 "decline_review_decision_desc": {
2828 "maxlength": "Decline Review Decision Desc maximum length is 100 characters"
2829 }
2830 }
2831 },
2832 "portal\/cdwtransactions": {
2833 "formValidationRules": {
2834 "transaction_id": {
2835 "digits": true,
2836 "maxlength": "20"
2837 },
2838 "stamp": {
2839 "maxlength": 20
2840 },
2841 "consumer_id": {
2842 "digits": true,
2843 "maxlength": "10"
2844 },
2845 "enrollment_id": {
2846 "digits": true,
2847 "maxlength": "10"
2848 },
2849 "auth_platform_id": {
2850 "maxlength": "255"
2851 },
2852 "desc": {
2853 "maxlength": "20"
2854 },
2855 "status_desc": {
2856 "maxlength": "20"
2857 },
2858 "error_reason": {
2859 "maxlength": "50"
2860 }
2861 },
2862 "formValidationMessages": {
2863 "transaction_id": {
2864 "digits": "Transaction ID must be numeric",
2865 "maxlength": "Transaction ID maximum length is 20 digits"
2866 },
2867 "stamp": {
2868 "maxlength": "Date\/Time maximum length is 20 characters"
2869 },
2870 "consumer_id": {
2871 "digits": "Consumer ID must be numeric",
2872 "maxlength": "Consumer ID maximum length is 10 digits"
2873 },
2874 "enrollment_id": {
2875 "digits": "Enrollment ID must be numeric",
2876 "maxlength": "Enrollment ID maximum length is 10 digits"
2877 },
2878 "auth_platform_id": {
2879 "maxlength": "Auth Platform maximum length is 255 characters"
2880 },
2881 "desc": {
2882 "maxlength": "Trans Type maximum length is 20 characters"
2883 },
2884 "status_desc": {
2885 "maxlength": "Status maximum length is 20 characters"
2886 },
2887 "error_reason": {
2888 "maxlength": "Error Reason maximum length is 50 characters"
2889 }
2890 }
2891 },
2892 "portal\/rewardprograms": {
2893 "formValidationRules": {
2894 "reward_id": {
2895 "digits": true,
2896 "maxlength": "10"
2897 },
2898 "partner_id": {
2899 "digits": true,
2900 "maxlength": "19"
2901 },
2902 "reward_source_type": {
2903 "maxlength": "1"
2904 },
2905 "reward_benefit_type": {
2906 "maxlength": "1"
2907 },
2908 "name": {
2909 "maxlength": "20"
2910 },
2911 "point_value": {
2912 "digits": true,
2913 "maxlength": "10"
2914 },
2915 "minimum_qualifying_amount": {
2916 "number": true,
2917 "maxlength": "8"
2918 },
2919 "ephemeral": {
2920 "checkbox": true
2921 },
2922 "reward_monetary_amount": {
2923 "number": true,
2924 "maxlength": "8"
2925 },
2926 "reward_item_desc": {
2927 "maxlength": "20"
2928 },
2929 "app_reward_title": {
2930 "maxlength": "20"
2931 },
2932 "app_reward_terms": {
2933 "maxlength": "100"
2934 },
2935 "active": {
2936 "checkbox": true
2937 },
2938 "active_begin": {
2939 "maxlength": 20
2940 },
2941 "active_end": {
2942 "maxlength": 20
2943 }
2944 },
2945 "formValidationMessages": {
2946 "reward_id": {
2947 "digits": "Reward ID must be numeric",
2948 "maxlength": "Reward ID maximum length is 10 digits"
2949 },
2950 "partner_id": {
2951 "digits": "Partner ID must be numeric",
2952 "maxlength": "Partner ID maximum length is 19 digits"
2953 },
2954 "reward_source_type": {
2955 "maxlength": "Source Type maximum length is 1 characters"
2956 },
2957 "reward_benefit_type": {
2958 "maxlength": "Benefit Type maximum length is 1 characters"
2959 },
2960 "name": {
2961 "maxlength": "Name maximum length is 20 characters"
2962 },
2963 "point_value": {
2964 "digits": "Reward Redemption Point Value must be numeric",
2965 "maxlength": "Reward Redemption Point Value maximum length is 10 digits"
2966 },
2967 "minimum_qualifying_amount": {
2968 "number": "Minimum Qualifying Amount must be a valid amount",
2969 "maxlength": "Minimum Qualifying Amount maximum length is 8 characters"
2970 },
2971 "ephemeral": {
2972 "checkbox": "Ephemeral must be numeric"
2973 },
2974 "reward_monetary_amount": {
2975 "number": "Reward Monetary Amount must be a valid amount",
2976 "maxlength": "Reward Monetary Amount maximum length is 8 characters"
2977 },
2978 "reward_item_desc": {
2979 "maxlength": "Reward Item Description maximum length is 20 characters"
2980 },
2981 "app_reward_title": {
2982 "maxlength": "App Reward Title maximum length is 20 characters"
2983 },
2984 "app_reward_terms": {
2985 "maxlength": "App Reward Terms maximum length is 100 characters"
2986 },
2987 "active": {
2988 "checkbox": "Active must be checked or unchecked"
2989 },
2990 "active_begin": {
2991 "maxlength": "Active Start maximum length is 20 characters"
2992 },
2993 "active_end": {
2994 "maxlength": "Active End maximum length is 20 characters"
2995 }
2996 }
2997 },
2998 "portal\/consumerrewardsbalance": {
2999 "formValidationRules": {
3000 "guid": {
3001 "maxlength": "36"
3002 },
3003 "transaction_day": {
3004 "digits": true,
3005 "maxlength": "10"
3006 },
3007 "partner_id": {
3008 "digits": true,
3009 "maxlength": "19"
3010 },
3011 "consumer_id": {
3012 "digits": true,
3013 "maxlength": "10"
3014 },
3015 "sale_count": {
3016 "digits": true,
3017 "maxlength": "10"
3018 },
3019 "sale_amount": {
3020 "number": true,
3021 "maxlength": "8"
3022 },
3023 "points_lifetime": {
3024 "digits": true,
3025 "maxlength": "10"
3026 },
3027 "points_earned": {
3028 "digits": true,
3029 "maxlength": "10"
3030 },
3031 "points_used": {
3032 "digits": true,
3033 "maxlength": "10"
3034 },
3035 "points_balance": {
3036 "digits": true,
3037 "maxlength": "10"
3038 }
3039 },
3040 "formValidationMessages": {
3041 "guid": {
3042 "maxlength": "GUID maximum length is 36 characters"
3043 },
3044 "transaction_day": {
3045 "digits": "Transaction Day must be numeric",
3046 "maxlength": "Transaction Day maximum length is 10 digits"
3047 },
3048 "partner_id": {
3049 "digits": "Partner ID must be numeric",
3050 "maxlength": "Partner ID maximum length is 19 digits"
3051 },
3052 "consumer_id": {
3053 "digits": "Consumer ID must be numeric",
3054 "maxlength": "Consumer ID maximum length is 10 digits"
3055 },
3056 "sale_count": {
3057 "digits": "Sale Count must be numeric",
3058 "maxlength": "Sale Count maximum length is 10 digits"
3059 },
3060 "sale_amount": {
3061 "number": "Sale Amount must be a valid amount",
3062 "maxlength": "Sale Amount maximum length is 8 characters"
3063 },
3064 "points_lifetime": {
3065 "digits": "Points Lifetime must be numeric",
3066 "maxlength": "Points Lifetime maximum length is 10 digits"
3067 },
3068 "points_earned": {
3069 "digits": "Points Earned must be numeric",
3070 "maxlength": "Points Earned maximum length is 10 digits"
3071 },
3072 "points_used": {
3073 "digits": "Points Used must be numeric",
3074 "maxlength": "Points Used maximum length is 10 digits"
3075 },
3076 "points_balance": {
3077 "digits": "Points Balance must be numeric",
3078 "maxlength": "Points Balance maximum length is 10 digits"
3079 }
3080 }
3081 },
3082 "portal\/consumerrewardtransactions": {
3083 "formValidationRules": {
3084 "transaction_id": {
3085 "digits": true,
3086 "maxlength": "20"
3087 },
3088 "partner_id": {
3089 "digits": true,
3090 "maxlength": "19"
3091 },
3092 "consumer_id": {
3093 "digits": true,
3094 "maxlength": "10"
3095 },
3096 "total_amount": {
3097 "number": true,
3098 "maxlength": "8"
3099 },
3100 "reward_monetary_amount": {
3101 "number": true,
3102 "maxlength": "8"
3103 },
3104 "points_earned": {
3105 "digits": true,
3106 "maxlength": "10"
3107 },
3108 "points_used": {
3109 "digits": true,
3110 "maxlength": "10"
3111 },
3112 "points_balance": {
3113 "digits": true,
3114 "maxlength": "10"
3115 },
3116 "reward_id": {
3117 "digits": true,
3118 "maxlength": "10"
3119 },
3120 "rewardcode_id": {
3121 "digits": true,
3122 "maxlength": "19"
3123 }
3124 },
3125 "formValidationMessages": {
3126 "transaction_id": {
3127 "digits": "Transaction ID must be numeric",
3128 "maxlength": "Transaction ID maximum length is 20 digits"
3129 },
3130 "partner_id": {
3131 "digits": "Partner ID must be numeric",
3132 "maxlength": "Partner ID maximum length is 19 digits"
3133 },
3134 "consumer_id": {
3135 "digits": "Consumer ID must be numeric",
3136 "maxlength": "Consumer ID maximum length is 10 digits"
3137 },
3138 "total_amount": {
3139 "number": "Tran Amt must be a valid amount",
3140 "maxlength": "Tran Amt maximum length is 8 characters"
3141 },
3142 "reward_monetary_amount": {
3143 "number": "Reward Amt must be a valid amount",
3144 "maxlength": "Reward Amt maximum length is 8 characters"
3145 },
3146 "points_earned": {
3147 "digits": "Points Earned must be numeric",
3148 "maxlength": "Points Earned maximum length is 10 digits"
3149 },
3150 "points_used": {
3151 "digits": "Points Used must be numeric",
3152 "maxlength": "Points Used maximum length is 10 digits"
3153 },
3154 "points_balance": {
3155 "digits": "Points Balance must be numeric",
3156 "maxlength": "Points Balance maximum length is 10 digits"
3157 },
3158 "reward_id": {
3159 "digits": "Reward ID must be numeric",
3160 "maxlength": "Reward ID maximum length is 10 digits"
3161 },
3162 "rewardcode_id": {
3163 "digits": "Rewardcode ID must be numeric",
3164 "maxlength": "Rewardcode ID maximum length is 19 digits"
3165 }
3166 }
3167 },
3168 "portal\/consumerrewardissued": {
3169 "formValidationRules": {
3170 "rewardcode_id": {
3171 "digits": true,
3172 "maxlength": "19"
3173 },
3174 "rewardcode": {
3175 "maxlength": "16"
3176 },
3177 "partner_id": {
3178 "digits": true,
3179 "maxlength": "10"
3180 },
3181 "consumer_id": {
3182 "digits": true,
3183 "maxlength": "10"
3184 },
3185 "issued": {
3186 "maxlength": "36"
3187 },
3188 "assigned": {
3189 "maxlength": "36"
3190 },
3191 "redeemed": {
3192 "maxlength": "36"
3193 },
3194 "issued_enrollment_id": {
3195 "digits": true,
3196 "maxlength": "10"
3197 },
3198 "issued_transaction_id": {
3199 "digits": true,
3200 "maxlength": "20"
3201 },
3202 "redeemed_transaction_id": {
3203 "digits": true,
3204 "maxlength": "20"
3205 },
3206 "ephemeral": {
3207 "checkbox": true
3208 }
3209 },
3210 "formValidationMessages": {
3211 "rewardcode_id": {
3212 "digits": "Rewardcode ID must be numeric",
3213 "maxlength": "Rewardcode ID maximum length is 19 digits"
3214 },
3215 "rewardcode": {
3216 "maxlength": "Rewardcode maximum length is 16 characters"
3217 },
3218 "partner_id": {
3219 "digits": "Partner ID must be numeric",
3220 "maxlength": "Partner ID maximum length is 10 digits"
3221 },
3222 "consumer_id": {
3223 "digits": "Consumer ID must be numeric",
3224 "maxlength": "Consumer ID maximum length is 10 digits"
3225 },
3226 "issued": {
3227 "maxlength": "Issued maximum length is 36 characters"
3228 },
3229 "assigned": {
3230 "maxlength": "Assigned maximum length is 36 characters"
3231 },
3232 "redeemed": {
3233 "maxlength": "Redeemed maximum length is 36 characters"
3234 },
3235 "issued_enrollment_id": {
3236 "digits": "Issued Enrollment ID must be numeric",
3237 "maxlength": "Issued Enrollment ID maximum length is 10 digits"
3238 },
3239 "issued_transaction_id": {
3240 "digits": "Issued Transaction ID must be numeric",
3241 "maxlength": "Issued Transaction ID maximum length is 20 digits"
3242 },
3243 "redeemed_transaction_id": {
3244 "digits": "Redeemed Transaction ID must be numeric",
3245 "maxlength": "Redeemed Transaction ID maximum length is 20 digits"
3246 },
3247 "ephemeral": {
3248 "checkbox": "Ephemeral must be checked or unchecked"
3249 }
3250 }
3251 },
3252 "portal\/banks": {
3253 "formValidationRules": {
3254 "bank_id": {
3255 "digits": true,
3256 "maxlength": "10"
3257 },
3258 "name": {
3259 "maxlength": "100"
3260 },
3261 "phase": {
3262 "digits": true,
3263 "maxlength": "5"
3264 },
3265 "iav": {
3266 "maxlength": "10"
3267 }
3268 },
3269 "formValidationMessages": {
3270 "bank_id": {
3271 "digits": "Bank ID must be numeric",
3272 "maxlength": "Bank ID maximum length is 10 digits"
3273 },
3274 "name": {
3275 "maxlength": "Name maximum length is 100 characters"
3276 },
3277 "phase": {
3278 "digits": "Phase must be numeric",
3279 "maxlength": "Phase maximum length is 5 digits"
3280 },
3281 "iav": {
3282 "maxlength": "IAV Type maximum length is 10 characters"
3283 }
3284 }
3285 },
3286 "portal\/bankholidays": {
3287 "formValidationRules": {
3288 "holiday_id": {
3289 "digits": true,
3290 "maxlength": "10"
3291 },
3292 "holiday": {
3293 "maxlength": "8"
3294 }
3295 },
3296 "formValidationMessages": {
3297 "holiday_id": {
3298 "digits": "Holiday ID must be numeric",
3299 "maxlength": "Holiday ID maximum length is 10 digits"
3300 },
3301 "holiday": {
3302 "maxlength": "Holiday Name maximum length is 8 characters"
3303 }
3304 }
3305 },
3306 "portal\/enrollmentactioncodes": {
3307 "formValidationRules": {
3308 "action_code": {
3309 "digits": true,
3310 "maxlength": "10"
3311 },
3312 "message": {
3313 "maxlength": "200"
3314 },
3315 "redirect": {
3316 "maxlength": "50"
3317 },
3318 "fallback": {
3319 "maxlength": "50"
3320 },
3321 "usage": {
3322 "maxlength": "200"
3323 },
3324 "notification": {
3325 "maxlength": "100"
3326 }
3327 },
3328 "formValidationMessages": {
3329 "action_code": {
3330 "digits": "Action Code must be numeric",
3331 "maxlength": "Action Code maximum length is 10 digits"
3332 },
3333 "message": {
3334 "maxlength": "Message maximum length is 200 characters"
3335 },
3336 "redirect": {
3337 "maxlength": "Redirect maximum length is 50 characters"
3338 },
3339 "fallback": {
3340 "maxlength": "Fallback maximum length is 50 characters"
3341 },
3342 "usage": {
3343 "maxlength": "Usage maximum length is 200 characters"
3344 },
3345 "notification": {
3346 "maxlength": "Notification maximum length is 100 characters"
3347 }
3348 }
3349 },
3350 "portal\/transactionactioncodes": {
3351 "formValidationRules": {
3352 "action_code": {
3353 "digits": true,
3354 "maxlength": "10"
3355 },
3356 "message": {
3357 "maxlength": "200"
3358 },
3359 "usage": {
3360 "maxlength": "200"
3361 }
3362 },
3363 "formValidationMessages": {
3364 "action_code": {
3365 "digits": "Action Code must be numeric",
3366 "maxlength": "Action Code maximum length is 10 digits"
3367 },
3368 "message": {
3369 "maxlength": "Message maximum length is 200 characters"
3370 },
3371 "usage": {
3372 "maxlength": "Usage maximum length is 200 characters"
3373 }
3374 }
3375 },
3376 "portal\/authresponsecodes": {
3377 "formValidationRules": {
3378 "response_code": {
3379 "maxlength": "2"
3380 },
3381 "response_verbiage": {
3382 "maxlength": "200"
3383 },
3384 "bim_generated": {
3385 "checkbox": true
3386 }
3387 },
3388 "formValidationMessages": {
3389 "response_code": {
3390 "maxlength": "Auth Response Code maximum length is 2 characters"
3391 },
3392 "response_verbiage": {
3393 "maxlength": "Auth Response Verbiage maximum length is 200 characters"
3394 },
3395 "bim_generated": {
3396 "checkbox": "BIM Generated Code must be checked or unchecked"
3397 }
3398 }
3399 },
3400 "portal\/sslclients": {
3401 "formValidationRules": {
3402 "cert_uid": {
3403 "maxlength": "64"
3404 },
3405 "oauth_client_id": {
3406 "maxlength": "80",
3407 "stringLettersNumbersDashes": true
3408 },
3409 "client_email": {
3410 "emailFull": true,
3411 "maxlength": "64"
3412 },
3413 "client_serial": {
3414 "maxlength": "64"
3415 },
3416 "client_issuer": {
3417 "maxlength": "1024"
3418 },
3419 "client_name": {
3420 "maxlength": "64"
3421 },
3422 "client_expiration": {
3423 "maxlength": "64"
3424 }
3425 },
3426 "formValidationMessages": {
3427 "cert_uid": {
3428 "maxlength": "BIM Certificate UID maximum length is 64 characters"
3429 },
3430 "oauth_client_id": {
3431 "maxlength": "App ID maximum length is 80 characters",
3432 "stringLettersNumbersDashes": "App ID may contain letters, numbers, and dashes"
3433 },
3434 "client_email": {
3435 "emailFull": "SSL Cert Client Email must be in the format user@domain.com",
3436 "maxlength": "SSL Cert Client Email maximum length is 64 characters"
3437 },
3438 "client_serial": {
3439 "maxlength": "Cert Serial maximum length is 64 characters"
3440 },
3441 "client_issuer": {
3442 "maxlength": "Cert Issuer maximum length is 1024 characters"
3443 },
3444 "client_name": {
3445 "maxlength": "Cert Name maximum length is 64 characters"
3446 },
3447 "client_expiration": {
3448 "maxlength": "Cert Expiration maximum length is 64 characters"
3449 }
3450 }
3451 },
3452 "portal\/jobcontrol": {
3453 "formValidationRules": {
3454 "job_log_id": {
3455 "digits": true,
3456 "maxlength": "10"
3457 },
3458 "begin_stamp": {
3459 "maxlength": 20
3460 },
3461 "end_stamp": {
3462 "maxlength": 20
3463 },
3464 "job_id": {
3465 "digits": true,
3466 "maxlength": "10"
3467 },
3468 "desc": {
3469 "maxlength": "100"
3470 },
3471 "status": {
3472 "maxlength": "1"
3473 },
3474 "error": {
3475 "maxlength": "1024"
3476 }
3477 },
3478 "formValidationMessages": {
3479 "job_log_id": {
3480 "digits": "Log ID must be numeric",
3481 "maxlength": "Log ID maximum length is 10 digits"
3482 },
3483 "begin_stamp": {
3484 "maxlength": "Started maximum length is 20 characters"
3485 },
3486 "end_stamp": {
3487 "maxlength": "Ended maximum length is 20 characters"
3488 },
3489 "job_id": {
3490 "digits": "Job ID must be numeric",
3491 "maxlength": "Job ID maximum length is 10 digits"
3492 },
3493 "desc": {
3494 "maxlength": "Job Name maximum length is 100 characters"
3495 },
3496 "status": {
3497 "maxlength": "Status maximum length is 1 characters"
3498 },
3499 "error": {
3500 "maxlength": "Error maximum length is 1024 characters"
3501 }
3502 }
3503 },
3504 "portal\/jobcontroljobs": {
3505 "formValidationRules": {
3506 "job_id": {
3507 "digits": true,
3508 "maxlength": "10"
3509 },
3510 "desc": {
3511 "maxlength": "100"
3512 }
3513 },
3514 "formValidationMessages": {
3515 "job_id": {
3516 "digits": "Job ID must be numeric",
3517 "maxlength": "Job ID maximum length is 10 digits"
3518 },
3519 "desc": {
3520 "maxlength": "Job Name maximum length is 100 characters"
3521 }
3522 }
3523 },
3524 "portal\/billingeventsummary": {
3525 "formValidationRules": {
3526 "billing_summary_id": {
3527 "digits": true,
3528 "maxlength": "10"
3529 },
3530 "stamp": {
3531 "maxlength": 20
3532 },
3533 "merchant_id": {
3534 "digits": true,
3535 "maxlength": "19"
3536 },
3537 "average_ticket": {
3538 "number": true,
3539 "maxlength": "8"
3540 },
3541 "billing_group": {
3542 "digits": true,
3543 "maxlength": "10"
3544 },
3545 "billing_group_description": {
3546 "maxlength": "100"
3547 },
3548 "billing_group_client": {
3549 "maxlength": "50"
3550 },
3551 "billing_group_per_item": {
3552 "number": true,
3553 "maxlength": "8"
3554 },
3555 "billing_group_discount_rate": {
3556 "number": true,
3557 "maxlength": "8"
3558 },
3559 "item_number": {
3560 "digits": true,
3561 "maxlength": "10"
3562 },
3563 "item_description": {
3564 "maxlength": "50"
3565 },
3566 "per_item_qty": {
3567 "number": true,
3568 "maxlength": "8"
3569 },
3570 "per_item_fee": {
3571 "number": true,
3572 "maxlength": "8"
3573 },
3574 "per_item_total": {
3575 "number": true,
3576 "maxlength": "8"
3577 },
3578 "transaction_total": {
3579 "number": true,
3580 "maxlength": "8"
3581 },
3582 "discount_rate_total": {
3583 "number": true,
3584 "maxlength": "8"
3585 },
3586 "total_fee": {
3587 "number": true,
3588 "maxlength": "8"
3589 }
3590 },
3591 "formValidationMessages": {
3592 "billing_summary_id": {
3593 "digits": "Billing ID must be numeric",
3594 "maxlength": "Billing ID maximum length is 10 digits"
3595 },
3596 "stamp": {
3597 "maxlength": "Datetime maximum length is 20 characters"
3598 },
3599 "merchant_id": {
3600 "digits": "Merchant ID must be numeric",
3601 "maxlength": "Merchant ID maximum length is 19 digits"
3602 },
3603 "average_ticket": {
3604 "number": "Average Ticket must be a valid amount",
3605 "maxlength": "Average Ticket maximum length is 8 characters"
3606 },
3607 "billing_group": {
3608 "digits": "Billing Group must be numeric",
3609 "maxlength": "Billing Group maximum length is 10 digits"
3610 },
3611 "billing_group_description": {
3612 "maxlength": "Billing Group Desc maximum length is 100 characters"
3613 },
3614 "billing_group_client": {
3615 "maxlength": "Billing Group Client maximum length is 50 characters"
3616 },
3617 "billing_group_per_item": {
3618 "number": "Billing Group Per Item must be a valid amount",
3619 "maxlength": "Billing Group Per Item maximum length is 8 characters"
3620 },
3621 "billing_group_discount_rate": {
3622 "number": "Billing Group Discount Rate must be a valid amount",
3623 "maxlength": "Billing Group Discount Rate maximum length is 8 characters"
3624 },
3625 "item_number": {
3626 "digits": "Item Number must be numeric",
3627 "maxlength": "Item Number maximum length is 10 digits"
3628 },
3629 "item_description": {
3630 "maxlength": "Item Description maximum length is 50 characters"
3631 },
3632 "per_item_qty": {
3633 "number": "Per Item Quantity must be a valid amount",
3634 "maxlength": "Per Item Quantity maximum length is 8 characters"
3635 },
3636 "per_item_fee": {
3637 "number": "Per Item Fee must be a valid amount",
3638 "maxlength": "Per Item Fee maximum length is 8 characters"
3639 },
3640 "per_item_total": {
3641 "number": "Per Item Total must be a valid amount",
3642 "maxlength": "Per Item Total maximum length is 8 characters"
3643 },
3644 "transaction_total": {
3645 "number": "Transaction Total must be a valid amount",
3646 "maxlength": "Transaction Total maximum length is 8 characters"
3647 },
3648 "discount_rate_total": {
3649 "number": "Discount Rate Total must be a valid amount",
3650 "maxlength": "Discount Rate Total maximum length is 8 characters"
3651 },
3652 "total_fee": {
3653 "number": "Total Fee must be a valid amount",
3654 "maxlength": "Total Fee maximum length is 8 characters"
3655 }
3656 }
3657 },
3658 "portal\/billingticketlog": {
3659 "formValidationRules": {
3660 "ticket_number": {
3661 "digits": true,
3662 "maxlength": "10"
3663 },
3664 "stamp_start": {
3665 "maxlength": 20
3666 },
3667 "stamp_end": {
3668 "maxlength": 20
3669 },
3670 "description": {
3671 "maxlength": "255"
3672 },
3673 "detail": {
3674 "maxlength": "255"
3675 },
3676 "severity": {
3677 "maxlength": "5"
3678 },
3679 "outage_type": {
3680 "maxlength": "5"
3681 },
3682 "system": {
3683 "maxlength": "50"
3684 },
3685 "outage_duration": {
3686 "digits": true,
3687 "maxlength": "10"
3688 }
3689 },
3690 "formValidationMessages": {
3691 "ticket_number": {
3692 "digits": "Ticket Number must be numeric",
3693 "maxlength": "Ticket Number maximum length is 10 digits"
3694 },
3695 "stamp_start": {
3696 "maxlength": "Start maximum length is 20 characters"
3697 },
3698 "stamp_end": {
3699 "maxlength": "End maximum length is 20 characters"
3700 },
3701 "description": {
3702 "maxlength": "Description maximum length is 255 characters"
3703 },
3704 "detail": {
3705 "maxlength": "Detail maximum length is 255 characters"
3706 },
3707 "severity": {
3708 "maxlength": "Severity maximum length is 5 characters"
3709 },
3710 "outage_type": {
3711 "maxlength": "Outage Type maximum length is 5 characters"
3712 },
3713 "system": {
3714 "maxlength": "System maximum length is 50 characters"
3715 },
3716 "outage_duration": {
3717 "digits": "Outage Duration must be numeric",
3718 "maxlength": "Outage Duration maximum length is 10 digits"
3719 }
3720 }
3721 },
3722 "portal\/restrictedaba": {
3723 "formValidationRules": {
3724 "aba": {
3725 "minlength": 9,
3726 "maxlength": 9
3727 },
3728 "bank_name": {
3729 "maxlength": "100"
3730 }
3731 },
3732 "formValidationMessages": {
3733 "aba": {
3734 "minlength": "Routing Number minimum length is 9 characters",
3735 "maxlength": "Routing Number maximum length is 9 characters"
3736 },
3737 "bank_name": {
3738 "maxlength": "Bank Name maximum length is 100 characters"
3739 }
3740 }
3741 },
3742 "portal\/enrollmentlog": {
3743 "formValidationRules": {
3744 "enrollment_log_id": {
3745 "digits": true,
3746 "maxlength": "10"
3747 },
3748 "enrollment_id": {
3749 "digits": true,
3750 "maxlength": "10"
3751 },
3752 "partner_id": {
3753 "digits": true,
3754 "maxlength": "10"
3755 },
3756 "institution_id": {
3757 "digits": true,
3758 "maxlength": 9
3759 },
3760 "merchant_id": {
3761 "digits": true,
3762 "maxlength": "19"
3763 },
3764 "email_address": {
3765 "emailFull": true,
3766 "maxlength": "255"
3767 },
3768 "consumer_id": {
3769 "digits": true,
3770 "maxlength": "10"
3771 },
3772 "action_code": {
3773 "digits": true,
3774 "maxlength": "10"
3775 },
3776 "response_status": {
3777 "digits": true,
3778 "maxlength": "10"
3779 },
3780 "redirect": {
3781 "maxlength": "50"
3782 },
3783 "fallback": {
3784 "maxlength": "50"
3785 },
3786 "message": {
3787 "maxlength": "200"
3788 }
3789 },
3790 "formValidationMessages": {
3791 "enrollment_log_id": {
3792 "digits": "Log ID must be numeric",
3793 "maxlength": "Log ID maximum length is 10 digits"
3794 },
3795 "enrollment_id": {
3796 "digits": "Enrollment ID must be numeric",
3797 "maxlength": "Enrollment ID maximum length is 10 digits"
3798 },
3799 "partner_id": {
3800 "digits": "Partner ID must be numeric",
3801 "maxlength": "Partner ID maximum length is 10 digits"
3802 },
3803 "institution_id": {
3804 "digits": "Institution ID must be numeric",
3805 "maxlength": "Institution ID maximum length is 9 digits"
3806 },
3807 "merchant_id": {
3808 "digits": "Merchant ID must be numeric",
3809 "maxlength": "Merchant ID maximum length is 19 digits"
3810 },
3811 "email_address": {
3812 "emailFull": "Email Address must be in the format user@domain.com",
3813 "maxlength": "Email Address maximum length is 255 characters"
3814 },
3815 "consumer_id": {
3816 "digits": "Consumer ID must be numeric",
3817 "maxlength": "Consumer ID maximum length is 10 digits"
3818 },
3819 "action_code": {
3820 "digits": "Action Code must be numeric",
3821 "maxlength": "Action Code maximum length is 10 digits"
3822 },
3823 "response_status": {
3824 "digits": "Status must be numeric",
3825 "maxlength": "Status maximum length is 10 digits"
3826 },
3827 "redirect": {
3828 "maxlength": "Redirect maximum length is 50 characters"
3829 },
3830 "fallback": {
3831 "maxlength": "Fallback maximum length is 50 characters"
3832 },
3833 "message": {
3834 "maxlength": "Message maximum length is 200 characters"
3835 }
3836 }
3837 },
3838 "portal\/apps": {
3839 "formValidationRules": {
3840 "client_id": {
3841 "maxlength": "80",
3842 "stringLettersNumbersDashes": true
3843 },
3844 "network_id": {
3845 "digits": true,
3846 "maxlength": "10"
3847 },
3848 "merchant_id": {
3849 "digits": true,
3850 "maxlength": "19"
3851 },
3852 "client_name": {
3853 "maxlength": "80"
3854 },
3855 "client_description": {
3856 "maxlength": "240"
3857 },
3858 "client_logo": {
3859 "maxlength": "150"
3860 },
3861 "redirect_uri": {
3862 "maxlength": "2000"
3863 },
3864 "grant_types": {
3865 "maxlength": "80"
3866 },
3867 "product_configuration_type": {
3868 "inclusion": {
3869 "within": {
3870 "ENROLLMENT_TYPE_MOBILE_DIRECT": "ENROLLMENT_TYPE_MOBILE_DIRECT",
3871 "ENROLLMENT_TYPE_WEB_DIRECT": "ENROLLMENT_TYPE_WEB_DIRECT",
3872 "ENROLLMENT_TYPE_WEB_PLUGIN_BARCODE": "ENROLLMENT_TYPE_WEB_PLUGIN_BARCODE",
3873 "ENROLLMENT_TYPE_WEB_PLUGIN_CONNECTCODE": "ENROLLMENT_TYPE_WEB_PLUGIN_CONNECTCODE",
3874 "ENROLLMENT_TYPE_PROXY": "ENROLLMENT_TYPE_PROXY",
3875 "TRANSACTION_TYPE_MOBILE_DIRECT_BARCODE": "TRANSACTION_TYPE_MOBILE_DIRECT_BARCODE",
3876 "TRANSACTION_TYPE_PROCESSOR_CONNECTCODE": "TRANSACTION_TYPE_PROCESSOR_CONNECTCODE"
3877 }
3878 }
3879 },
3880 "pin_zone": {
3881 "digits": true,
3882 "maxlength": "10"
3883 },
3884 "enrollment_pin_required": {
3885 "checkbox": true
3886 },
3887 "uo_embed_host_url": {
3888 "maxlength": "250"
3889 },
3890 "uo_embed_style_url": {
3891 "maxlength": "250"
3892 },
3893 "uo_embed_redirect_url": {
3894 "maxlength": "250"
3895 },
3896 "uo_auth_template": {
3897 "maxlength": "50"
3898 },
3899 "uo_registration_template": {
3900 "maxlength": "50"
3901 }
3902 },
3903 "formValidationMessages": {
3904 "client_id": {
3905 "maxlength": "App ID maximum length is 80 characters",
3906 "stringLettersNumbersDashes": "App ID may contain letters, numbers, and dashes"
3907 },
3908 "network_id": {
3909 "digits": "Network ID must be numeric",
3910 "maxlength": "Network ID maximum length is 10 digits"
3911 },
3912 "merchant_id": {
3913 "digits": "Merchant ID (master) must be numeric",
3914 "maxlength": "Merchant ID (master) maximum length is 19 digits"
3915 },
3916 "client_name": {
3917 "maxlength": "Name maximum length is 80 characters"
3918 },
3919 "client_description": {
3920 "maxlength": "Description maximum length is 240 characters"
3921 },
3922 "client_logo": {
3923 "maxlength": "Logo URL maximum length is 150 characters"
3924 },
3925 "redirect_uri": {
3926 "maxlength": "Redirect URI maximum length is 2000 characters"
3927 },
3928 "grant_types": {
3929 "maxlength": "Grant Types maximum length is 80 characters"
3930 },
3931 "product_configuration_type": {
3932 "inclusion": "Product Configuration Type must be ENROLLMENT_TYPE_MOBILE_DIRECT, ENROLLMENT_TYPE_WEB_DIRECT, ENROLLMENT_TYPE_WEB_PLUGIN_BARCODE, ENROLLMENT_TYPE_WEB_PLUGIN_CONNECTCODE, ENROLLMENT_TYPE_PROXY, TRANSACTION_TYPE_MOBILE_DIRECT_BARCODE, or TRANSACTION_TYPE_PROCESSOR_CONNECTCODE"
3933 },
3934 "pin_zone": {
3935 "digits": "PIN Zone must be numeric",
3936 "maxlength": "PIN Zone maximum length is 10 digits"
3937 },
3938 "enrollment_pin_required": {
3939 "checkbox": "Enrollment PIN Required must be checked or unchecked"
3940 },
3941 "uo_embed_host_url": {
3942 "maxlength": "User Options - Embed Host URL maximum length is 250 characters"
3943 },
3944 "uo_embed_style_url": {
3945 "maxlength": "User Options - Embed Style URL maximum length is 250 characters"
3946 },
3947 "uo_embed_redirect_url": {
3948 "maxlength": "User Options - Embed Redirect URL maximum length is 250 characters"
3949 },
3950 "uo_auth_template": {
3951 "maxlength": "User Options - Auth Template maximum length is 50 characters"
3952 },
3953 "uo_registration_template": {
3954 "maxlength": "User Options - Registration Template maximum length is 50 characters"
3955 }
3956 }
3957 },
3958 "portal\/tokens": {
3959 "formValidationRules": {
3960 "client_id": {
3961 "maxlength": "80",
3962 "stringLettersNumbersDashes": true
3963 },
3964 "login_id": {
3965 "digits": true,
3966 "maxlength": "10"
3967 },
3968 "network_id": {
3969 "digits": true,
3970 "maxlength": "10"
3971 },
3972 "username": {
3973 "maxlength": "255"
3974 },
3975 "role": {
3976 "inclusion": {
3977 "within": {
3978 "CONSUMER": "CONSUMER",
3979 "MERCHANT": "MERCHANT",
3980 "ADMIN": "ADMIN",
3981 "PROCESSOR": "PROCESSOR",
3982 "PARTNER": "PARTNER",
3983 "CUSTOMERSERVICE": "CUSTOMERSERVICE"
3984 }
3985 }
3986 },
3987 "role_id": {
3988 "digits": true,
3989 "maxlength": "19"
3990 },
3991 "expires": {
3992 "maxlength": 20
3993 }
3994 },
3995 "formValidationMessages": {
3996 "client_id": {
3997 "maxlength": "App ID maximum length is 80 characters",
3998 "stringLettersNumbersDashes": "App ID may contain letters, numbers, and dashes"
3999 },
4000 "login_id": {
4001 "digits": "User ID must be numeric",
4002 "maxlength": "User ID maximum length is 10 digits"
4003 },
4004 "network_id": {
4005 "digits": "Network ID must be numeric",
4006 "maxlength": "Network ID maximum length is 10 digits"
4007 },
4008 "username": {
4009 "maxlength": "Email Address maximum length is 255 characters"
4010 },
4011 "role": {
4012 "inclusion": "Role must be CONSUMER, MERCHANT, ADMIN, PROCESSOR, PARTNER, or CUSTOMERSERVICE"
4013 },
4014 "role_id": {
4015 "digits": "Account ID must be numeric",
4016 "maxlength": "Account ID maximum length is 19 digits"
4017 },
4018 "expires": {
4019 "maxlength": "Expires maximum length is 20 characters"
4020 }
4021 }
4022 },
4023 "portal\/fcra": {
4024 "formValidationRules": {
4025 "fcra_id": {
4026 "digits": true,
4027 "maxlength": "10"
4028 },
4029 "transaction_id": {
4030 "maxlength": "20"
4031 },
4032 "email_address": {
4033 "emailFull": true,
4034 "maxlength": "50"
4035 },
4036 "consumer_id": {
4037 "digits": true,
4038 "maxlength": "10"
4039 },
4040 "reject_reason_code": {
4041 "maxlength": "2"
4042 },
4043 "reject_message": {
4044 "maxlength": "50"
4045 },
4046 "sent": {
4047 "digits": true,
4048 "maxlength": "10"
4049 },
4050 "sent_on": {
4051 "maxlength": 20
4052 },
4053 "exported": {
4054 "digits": true,
4055 "maxlength": "10"
4056 },
4057 "exported_on": {
4058 "maxlength": 20
4059 }
4060 },
4061 "formValidationMessages": {
4062 "fcra_id": {
4063 "digits": "FCRA ID must be numeric",
4064 "maxlength": "FCRA ID maximum length is 10 digits"
4065 },
4066 "transaction_id": {
4067 "maxlength": "Transaction ID maximum length is 20 characters"
4068 },
4069 "email_address": {
4070 "emailFull": "Email Address must be in the format user@domain.com",
4071 "maxlength": "Email Address maximum length is 50 characters"
4072 },
4073 "consumer_id": {
4074 "digits": "Consumer ID must be numeric",
4075 "maxlength": "Consumer ID maximum length is 10 digits"
4076 },
4077 "reject_reason_code": {
4078 "maxlength": "Reject Reason Code maximum length is 2 characters"
4079 },
4080 "reject_message": {
4081 "maxlength": "Reject Message maximum length is 50 characters"
4082 },
4083 "sent": {
4084 "digits": "Sent must be numeric",
4085 "maxlength": "Sent maximum length is 10 digits"
4086 },
4087 "sent_on": {
4088 "maxlength": "Sent Date\/Time maximum length is 20 characters"
4089 },
4090 "exported": {
4091 "digits": "Exported must be numeric",
4092 "maxlength": "Exported maximum length is 10 digits"
4093 },
4094 "exported_on": {
4095 "maxlength": "Exported Date\/Time maximum length is 20 characters"
4096 }
4097 }
4098 },
4099 "portal\/adjustmenttype": {
4100 "formValidationRules": {
4101 "adjustment_type": {
4102 "digits": true,
4103 "maxlength": "10"
4104 },
4105 "desc": {
4106 "maxlength": "255"
4107 }
4108 },
4109 "formValidationMessages": {
4110 "adjustment_type": {
4111 "digits": "Adjustment Type must be numeric",
4112 "maxlength": "Adjustment Type maximum length is 10 digits"
4113 },
4114 "desc": {
4115 "maxlength": "Description maximum length is 255 characters"
4116 }
4117 }
4118 },
4119 "portal\/adjustments": {
4120 "formValidationRules": {
4121 "transaction_id": {
4122 "digits": true,
4123 "maxlength": "20"
4124 },
4125 "auth_platform_id": {
4126 "maxlength": "255"
4127 },
4128 "consumer_id": {
4129 "digits": true,
4130 "maxlength": "10"
4131 },
4132 "merchant_id": {
4133 "digits": true,
4134 "maxlength": "20"
4135 },
4136 "terminal_id": {
4137 "digits": true,
4138 "maxlength": "10"
4139 },
4140 "adjusted_transaction_id": {
4141 "digits": true,
4142 "maxlength": "20"
4143 },
4144 "total_amount": {
4145 "number": true,
4146 "maxlength": "8"
4147 },
4148 "reason": {
4149 "maxlength": "255"
4150 },
4151 "stamp": {
4152 "maxlength": 20
4153 },
4154 "partner_id": {
4155 "digits": true,
4156 "maxlength": "10"
4157 },
4158 "institution_id": {
4159 "digits": true,
4160 "maxlength": 9
4161 },
4162 "pseudo_terminal_id": {
4163 "maxlength": "50"
4164 },
4165 "external_merchant_id": {
4166 "maxlength": "15"
4167 },
4168 "external_terminal_id": {
4169 "maxlength": "8"
4170 },
4171 "intercept_terminal_id": {
4172 "maxlength": "6"
4173 },
4174 "email_address": {
4175 "emailFull": true,
4176 "maxlength": "255"
4177 },
4178 "barcode": {
4179 "maxlength": "16"
4180 },
4181 "connectcode": {
4182 "maxlength": "16"
4183 },
4184 "desc": {
4185 "maxlength": "50"
4186 },
4187 "desc2": {
4188 "maxlength": "50"
4189 },
4190 "approved": {
4191 "digits": true,
4192 "maxlength": "5"
4193 },
4194 "approval_code": {
4195 "maxlength": "6"
4196 },
4197 "action_code": {
4198 "digits": true,
4199 "maxlength": "10"
4200 },
4201 "response_code": {
4202 "maxlength": "3"
4203 },
4204 "voided": {
4205 "digits": true,
4206 "maxlength": "5"
4207 },
4208 "refunds": {
4209 "digits": true,
4210 "maxlength": "5"
4211 },
4212 "remaining_balance_amount": {
4213 "number": true,
4214 "maxlength": "8"
4215 },
4216 "postauth": {
4217 "digits": true,
4218 "maxlength": "5"
4219 },
4220 "settled_stamp": {
4221 "maxlength": 20
4222 },
4223 "void_stamp": {
4224 "maxlength": 20
4225 }
4226 },
4227 "formValidationMessages": {
4228 "transaction_id": {
4229 "digits": "Transaction ID must be numeric",
4230 "maxlength": "Transaction ID maximum length is 20 digits"
4231 },
4232 "auth_platform_id": {
4233 "maxlength": "Auth Platform maximum length is 255 characters"
4234 },
4235 "consumer_id": {
4236 "digits": "Consumer ID must be numeric",
4237 "maxlength": "Consumer ID maximum length is 10 digits"
4238 },
4239 "merchant_id": {
4240 "digits": "Merchant ID must be numeric",
4241 "maxlength": "Merchant ID maximum length is 20 digits"
4242 },
4243 "terminal_id": {
4244 "digits": "Terminal ID must be numeric",
4245 "maxlength": "Terminal ID maximum length is 10 digits"
4246 },
4247 "adjusted_transaction_id": {
4248 "digits": "Adjusted Transaction ID must be numeric",
4249 "maxlength": "Adjusted Transaction ID maximum length is 20 digits"
4250 },
4251 "total_amount": {
4252 "number": "Amount must be a valid amount",
4253 "maxlength": "Amount maximum length is 8 characters"
4254 },
4255 "reason": {
4256 "maxlength": "Reason maximum length is 255 characters"
4257 },
4258 "stamp": {
4259 "maxlength": "Original Transaction Date\/Time maximum length is 20 characters"
4260 },
4261 "partner_id": {
4262 "digits": "Partner ID must be numeric",
4263 "maxlength": "Partner ID maximum length is 10 digits"
4264 },
4265 "institution_id": {
4266 "digits": "Institution ID must be numeric",
4267 "maxlength": "Institution ID maximum length is 9 digits"
4268 },
4269 "pseudo_terminal_id": {
4270 "maxlength": "Pseudo Terminal ID maximum length is 50 characters"
4271 },
4272 "external_merchant_id": {
4273 "maxlength": "External Merchant ID maximum length is 15 characters"
4274 },
4275 "external_terminal_id": {
4276 "maxlength": "External Terminal ID maximum length is 8 characters"
4277 },
4278 "intercept_terminal_id": {
4279 "maxlength": "Intercept Terminal ID maximum length is 6 characters"
4280 },
4281 "email_address": {
4282 "emailFull": "Email Address must be in the format user@domain.com",
4283 "maxlength": "Email Address maximum length is 255 characters"
4284 },
4285 "barcode": {
4286 "maxlength": "Barcode maximum length is 16 characters"
4287 },
4288 "connectcode": {
4289 "maxlength": "Connect Code maximum length is 16 characters"
4290 },
4291 "desc": {
4292 "maxlength": "Transaction maximum length is 50 characters"
4293 },
4294 "desc2": {
4295 "maxlength": "API maximum length is 50 characters"
4296 },
4297 "approved": {
4298 "digits": "Approved must be numeric",
4299 "maxlength": "Approved maximum length is 5 digits"
4300 },
4301 "approval_code": {
4302 "maxlength": "Approval Code maximum length is 6 characters"
4303 },
4304 "action_code": {
4305 "digits": "Action Code must be numeric",
4306 "maxlength": "Action Code maximum length is 10 digits"
4307 },
4308 "response_code": {
4309 "maxlength": "Response Code maximum length is 3 characters"
4310 },
4311 "voided": {
4312 "digits": "Voided must be numeric",
4313 "maxlength": "Voided maximum length is 5 digits"
4314 },
4315 "refunds": {
4316 "digits": "Refunds must be numeric",
4317 "maxlength": "Refunds maximum length is 5 digits"
4318 },
4319 "remaining_balance_amount": {
4320 "number": "Remaining Balance must be a valid amount",
4321 "maxlength": "Remaining Balance maximum length is 8 characters"
4322 },
4323 "postauth": {
4324 "digits": "Post Auth must be numeric",
4325 "maxlength": "Post Auth maximum length is 5 digits"
4326 },
4327 "settled_stamp": {
4328 "maxlength": "Settlement Date maximum length is 20 characters"
4329 },
4330 "void_stamp": {
4331 "maxlength": "Void Confirmed Date maximum length is 20 characters"
4332 }
4333 }
4334 },
4335 "portal\/fraudpolicymanager": {
4336 "formValidationRules": {
4337 "fraud_policy_id": {
4338 "digits": true,
4339 "maxlength": "10"
4340 },
4341 "partner_id": {
4342 "digits": true,
4343 "maxlength": "10"
4344 },
4345 "institution_id": {
4346 "digits": true,
4347 "maxlength": 9
4348 },
4349 "fraud_policy_type": {
4350 "inclusion": {
4351 "within": {
4352 "NEW": "NEW",
4353 "STANDARD": "STANDARD",
4354 "OVERRIDE": "OVERRIDE"
4355 }
4356 }
4357 },
4358 "fraud_policy_override_name": {
4359 "maxlength": "30"
4360 },
4361 "max_current_transaction_amount": {
4362 "number": true,
4363 "maxlength": "10"
4364 },
4365 "rolling_period1_minutes": {
4366 "number": true,
4367 "maxlength": "10"
4368 },
4369 "rolling_period1_max_transaction_count": {
4370 "number": true,
4371 "maxlength": "10"
4372 },
4373 "rolling_period1_max_transaction_amount": {
4374 "number": true,
4375 "maxlength": "10"
4376 },
4377 "rolling_period1_max_sale_transaction_sum": {
4378 "number": true,
4379 "maxlength": "10"
4380 },
4381 "rolling_period1_max_refund_transaction_sum": {
4382 "number": true,
4383 "maxlength": "10"
4384 },
4385 "rolling_period2_minutes": {
4386 "number": true,
4387 "maxlength": "10"
4388 },
4389 "rolling_period2_max_transaction_count": {
4390 "number": true,
4391 "maxlength": "10"
4392 },
4393 "rolling_period2_max_transaction_amount": {
4394 "number": true,
4395 "maxlength": "10"
4396 },
4397 "rolling_period2_max_sale_transaction_sum": {
4398 "number": true,
4399 "maxlength": "10"
4400 },
4401 "rolling_period2_max_refund_transaction_sum": {
4402 "number": true,
4403 "maxlength": "10"
4404 },
4405 "risk_monitor": {
4406 "checkbox": true
4407 }
4408 },
4409 "formValidationMessages": {
4410 "fraud_policy_id": {
4411 "digits": "Fraud Policy ID must be numeric",
4412 "maxlength": "Fraud Policy ID maximum length is 10 digits"
4413 },
4414 "partner_id": {
4415 "digits": "Partner ID must be numeric",
4416 "maxlength": "Partner ID maximum length is 10 digits"
4417 },
4418 "institution_id": {
4419 "digits": "Institution ID must be numeric",
4420 "maxlength": "Institution ID maximum length is 9 digits"
4421 },
4422 "fraud_policy_type": {
4423 "inclusion": "Fraud Policy Type must be NEW, STANDARD, or OVERRIDE"
4424 },
4425 "fraud_policy_override_name": {
4426 "maxlength": "Override Name maximum length is 30 characters"
4427 },
4428 "max_current_transaction_amount": {
4429 "number": "Max Current Tran Amt must be a valid amount",
4430 "maxlength": "Max Current Tran Amt maximum length is 10 characters"
4431 },
4432 "rolling_period1_minutes": {
4433 "number": "Period 1 - Minutes must be numeric",
4434 "maxlength": "Period 1 - Minutes maximum length is 10 digits"
4435 },
4436 "rolling_period1_max_transaction_count": {
4437 "number": "Period 1 - Max Tran Count must be numeric",
4438 "maxlength": "Period 1 - Max Tran Count maximum length is 10 digits"
4439 },
4440 "rolling_period1_max_transaction_amount": {
4441 "number": "Period 1 - Max Tran Amt must be a valid amount",
4442 "maxlength": "Period 1 - Max Tran Amt maximum length is 10 characters"
4443 },
4444 "rolling_period1_max_sale_transaction_sum": {
4445 "number": "Period 1 - Max Sale Tran Amt Sum must be a valid amount",
4446 "maxlength": "Period 1 - Max Sale Tran Amt Sum maximum length is 10 characters"
4447 },
4448 "rolling_period1_max_refund_transaction_sum": {
4449 "number": "Period 1 - Max Refund Tran Amt Sum must be a valid amount",
4450 "maxlength": "Period 1 - Max Refund Tran Amt Sum maximum length is 10 characters"
4451 },
4452 "rolling_period2_minutes": {
4453 "number": "Period 2 - Minutes must be numeric",
4454 "maxlength": "Period 2 - Minutes maximum length is 10 digits"
4455 },
4456 "rolling_period2_max_transaction_count": {
4457 "number": "Period 2 - Max Tran Count must be numeric",
4458 "maxlength": "Period 2 - Max Tran Count maximum length is 10 digits"
4459 },
4460 "rolling_period2_max_transaction_amount": {
4461 "number": "Period 2 - Max Tran Amt must be a valid amount",
4462 "maxlength": "Period 2 - Max Tran Amt maximum length is 10 characters"
4463 },
4464 "rolling_period2_max_sale_transaction_sum": {
4465 "number": "Period 2 - Max Sale Trans Amt Sum must be a valid amount",
4466 "maxlength": "Period 2 - Max Sale Trans Amt Sum maximum length is 10 characters"
4467 },
4468 "rolling_period2_max_refund_transaction_sum": {
4469 "number": "Period 2 - Max Refund Trans Amt Sum must be a valid amount",
4470 "maxlength": "Period 2 - Max Refund Trans Amt Sum maximum length is 10 characters"
4471 },
4472 "risk_monitor": {
4473 "checkbox": "Risk Monitor must be checked or unchecked"
4474 }
4475 }
4476 },
4477 "portal\/transactionsfraud": {
4478 "formValidationRules": {
4479 "transaction_id": {
4480 "digits": true,
4481 "maxlength": "20"
4482 },
4483 "stamp": {
4484 "maxlength": 20
4485 },
4486 "partner_id": {
4487 "digits": true,
4488 "maxlength": "19"
4489 },
4490 "institution_id": {
4491 "digits": true,
4492 "maxlength": 9
4493 },
4494 "merchant_id": {
4495 "digits": true,
4496 "maxlength": "20"
4497 },
4498 "terminal_id": {
4499 "digits": true,
4500 "maxlength": "10"
4501 },
4502 "consumer_id": {
4503 "digits": true,
4504 "maxlength": "10"
4505 },
4506 "email_address": {
4507 "emailFull": true,
4508 "maxlength": "255"
4509 },
4510 "auth_platform_id": {
4511 "maxlength": "255"
4512 },
4513 "industry_type": {
4514 "maxlength": "255"
4515 },
4516 "desc": {
4517 "maxlength": "50"
4518 },
4519 "desc2": {
4520 "maxlength": "50"
4521 },
4522 "fraud_policy_base": {
4523 "maxlength": "30"
4524 },
4525 "fraud_policy_id__base": {
4526 "digits": true,
4527 "maxlength": "10"
4528 },
4529 "fraud_policy_override": {
4530 "maxlength": "30"
4531 },
4532 "fraud_policy_id__override": {
4533 "digits": true,
4534 "maxlength": "10"
4535 },
4536 "total_amount": {
4537 "number": true,
4538 "maxlength": "8"
4539 },
4540 "action_code": {
4541 "digits": true,
4542 "maxlength": "10"
4543 },
4544 "response_code": {
4545 "maxlength": "3"
4546 },
4547 "response_verbiage": {
4548 "maxlength": "200"
4549 },
4550 "fraud_description": {
4551 "maxlength": "100"
4552 },
4553 "lifetime_sale_count": {
4554 "digits": true,
4555 "maxlength": "10"
4556 },
4557 "period1_begin_stamp": {
4558 "maxlength": 20
4559 },
4560 "period1_transaction_count": {
4561 "digits": true,
4562 "maxlength": "10"
4563 },
4564 "period1_sale_transaction_sum": {
4565 "number": true,
4566 "maxlength": "8"
4567 },
4568 "period1_refund_transaction_sum": {
4569 "number": true,
4570 "maxlength": "8"
4571 },
4572 "period2_begin_stamp": {
4573 "maxlength": 20
4574 },
4575 "period2_transaction_count": {
4576 "digits": true,
4577 "maxlength": "10"
4578 },
4579 "period2_sale_transaction_sum": {
4580 "number": true,
4581 "maxlength": "8"
4582 },
4583 "period2_refund_transaction_sum": {
4584 "number": true,
4585 "maxlength": "8"
4586 },
4587 "credit_limit_begin_stamp": {
4588 "maxlength": 20
4589 },
4590 "credit_limit_transaction_count": {
4591 "digits": true,
4592 "maxlength": "10"
4593 },
4594 "credit_limit_sale_transaction_sum": {
4595 "number": true,
4596 "maxlength": "8"
4597 },
4598 "credit_limit_refund_transaction_sum": {
4599 "number": true,
4600 "maxlength": "8"
4601 },
4602 "max_current_transaction_amount__effective": {
4603 "number": true,
4604 "maxlength": "8"
4605 },
4606 "rolling_period1_minutes__effective": {
4607 "digits": true,
4608 "maxlength": "10"
4609 },
4610 "rolling_period1_max_transaction_count__effective": {
4611 "digits": true,
4612 "maxlength": "10"
4613 },
4614 "rolling_period1_max_transaction_amount__effective": {
4615 "number": true,
4616 "maxlength": "8"
4617 },
4618 "rolling_period1_max_sale_transaction_sum__effective": {
4619 "number": true,
4620 "maxlength": "8"
4621 },
4622 "rolling_period1_max_refund_transaction_sum__effective": {
4623 "number": true,
4624 "maxlength": "8"
4625 },
4626 "rolling_period2_minutes__effective": {
4627 "digits": true,
4628 "maxlength": "10"
4629 },
4630 "rolling_period2_max_transaction_count__effective": {
4631 "digits": true,
4632 "maxlength": "10"
4633 },
4634 "rolling_period2_max_transaction_amount__effective": {
4635 "number": true,
4636 "maxlength": "8"
4637 },
4638 "rolling_period2_max_sale_transaction_sum__effective": {
4639 "number": true,
4640 "maxlength": "8"
4641 },
4642 "rolling_period2_max_refund_transaction_sum__effective": {
4643 "number": true,
4644 "maxlength": "8"
4645 },
4646 "rolling_credit_limit_minutes": {
4647 "number": true,
4648 "maxlength": "10"
4649 },
4650 "rolling_credit_limit_max_current_transaction_amount": {
4651 "number": true,
4652 "maxlength": "8"
4653 },
4654 "rolling_credit_limit_max_transaction_count": {
4655 "number": true,
4656 "maxlength": "10"
4657 },
4658 "rolling_credit_limit_max_transaction_amount": {
4659 "number": true,
4660 "maxlength": "8"
4661 },
4662 "rolling_credit_limit_max_sale_transaction_sum": {
4663 "number": true,
4664 "maxlength": "8"
4665 },
4666 "rolling_credit_limit_max_refund_transaction_sum": {
4667 "number": true,
4668 "maxlength": "8"
4669 },
4670 "risk_monitor__effective": {
4671 "checkbox": true
4672 },
4673 "duration": {
4674 "number": true,
4675 "maxlength": "11"
4676 }
4677 },
4678 "formValidationMessages": {
4679 "transaction_id": {
4680 "digits": "Transaction ID must be numeric",
4681 "maxlength": "Transaction ID maximum length is 20 digits"
4682 },
4683 "stamp": {
4684 "maxlength": "Date\/Time maximum length is 20 characters"
4685 },
4686 "partner_id": {
4687 "digits": "Partner ID must be numeric",
4688 "maxlength": "Partner ID maximum length is 19 digits"
4689 },
4690 "institution_id": {
4691 "digits": "Institution ID must be numeric",
4692 "maxlength": "Institution ID maximum length is 9 digits"
4693 },
4694 "merchant_id": {
4695 "digits": "Merchant ID must be numeric",
4696 "maxlength": "Merchant ID maximum length is 20 digits"
4697 },
4698 "terminal_id": {
4699 "digits": "Terminal ID must be numeric",
4700 "maxlength": "Terminal ID maximum length is 10 digits"
4701 },
4702 "consumer_id": {
4703 "digits": "Consumer ID must be numeric",
4704 "maxlength": "Consumer ID maximum length is 10 digits"
4705 },
4706 "email_address": {
4707 "emailFull": "Email Address must be in the format user@domain.com",
4708 "maxlength": "Email Address maximum length is 255 characters"
4709 },
4710 "auth_platform_id": {
4711 "maxlength": "Auth Platform maximum length is 255 characters"
4712 },
4713 "industry_type": {
4714 "maxlength": "Industry Type maximum length is 255 characters"
4715 },
4716 "desc": {
4717 "maxlength": "Transaction maximum length is 50 characters"
4718 },
4719 "desc2": {
4720 "maxlength": "API maximum length is 50 characters"
4721 },
4722 "fraud_policy_base": {
4723 "maxlength": "Base Policy maximum length is 30 characters"
4724 },
4725 "fraud_policy_id__base": {
4726 "digits": "Base Policy ID must be numeric",
4727 "maxlength": "Base Policy ID maximum length is 10 digits"
4728 },
4729 "fraud_policy_override": {
4730 "maxlength": "Override Policy maximum length is 30 characters"
4731 },
4732 "fraud_policy_id__override": {
4733 "digits": "Override Policy ID must be numeric",
4734 "maxlength": "Override Policy ID maximum length is 10 digits"
4735 },
4736 "total_amount": {
4737 "number": "Amount must be a valid amount",
4738 "maxlength": "Amount maximum length is 8 characters"
4739 },
4740 "action_code": {
4741 "digits": "Action Code must be numeric",
4742 "maxlength": "Action Code maximum length is 10 digits"
4743 },
4744 "response_code": {
4745 "maxlength": "Response Code maximum length is 3 characters"
4746 },
4747 "response_verbiage": {
4748 "maxlength": "Response Verbiage maximum length is 200 characters"
4749 },
4750 "fraud_description": {
4751 "maxlength": "Fraud Description maximum length is 100 characters"
4752 },
4753 "lifetime_sale_count": {
4754 "digits": "Lifetime Sale Count must be numeric",
4755 "maxlength": "Lifetime Sale Count maximum length is 10 digits"
4756 },
4757 "period1_begin_stamp": {
4758 "maxlength": "Period 1 Begin Date\/Time maximum length is 20 characters"
4759 },
4760 "period1_transaction_count": {
4761 "digits": "Period 1 Tran Count must be numeric",
4762 "maxlength": "Period 1 Tran Count maximum length is 10 digits"
4763 },
4764 "period1_sale_transaction_sum": {
4765 "number": "Period 1 Sale Tran Sum must be a valid amount",
4766 "maxlength": "Period 1 Sale Tran Sum maximum length is 8 characters"
4767 },
4768 "period1_refund_transaction_sum": {
4769 "number": "Period 1 Refund Tran Sum must be a valid amount",
4770 "maxlength": "Period 1 Refund Tran Sum maximum length is 8 characters"
4771 },
4772 "period2_begin_stamp": {
4773 "maxlength": "Period 2 Begin Date\/Time maximum length is 20 characters"
4774 },
4775 "period2_transaction_count": {
4776 "digits": "Period 2 Tran Count must be numeric",
4777 "maxlength": "Period 2 Tran Count maximum length is 10 digits"
4778 },
4779 "period2_sale_transaction_sum": {
4780 "number": "Period 2 Sale Tran Sum must be a valid amount",
4781 "maxlength": "Period 2 Sale Tran Sum maximum length is 8 characters"
4782 },
4783 "period2_refund_transaction_sum": {
4784 "number": "Period 2 Refund Tran Sum must be a valid amount",
4785 "maxlength": "Period 2 Refund Tran Sum maximum length is 8 characters"
4786 },
4787 "credit_limit_begin_stamp": {
4788 "maxlength": "Credit Limit Begin Date\/Time maximum length is 20 characters"
4789 },
4790 "credit_limit_transaction_count": {
4791 "digits": "Credit Limit Tran Count must be numeric",
4792 "maxlength": "Credit Limit Tran Count maximum length is 10 digits"
4793 },
4794 "credit_limit_sale_transaction_sum": {
4795 "number": "Credit Limit Sale Tran Sum must be a valid amount",
4796 "maxlength": "Credit Limit Sale Tran Sum maximum length is 8 characters"
4797 },
4798 "credit_limit_refund_transaction_sum": {
4799 "number": "Credit Limit Refund Tran Sum must be a valid amount",
4800 "maxlength": "Credit Limit Refund Tran Sum maximum length is 8 characters"
4801 },
4802 "max_current_transaction_amount__effective": {
4803 "number": "Max Current Tran Amt must be a valid amount",
4804 "maxlength": "Max Current Tran Amt maximum length is 8 characters"
4805 },
4806 "rolling_period1_minutes__effective": {
4807 "digits": "Period 1 - Minutes must be numeric",
4808 "maxlength": "Period 1 - Minutes maximum length is 10 digits"
4809 },
4810 "rolling_period1_max_transaction_count__effective": {
4811 "digits": "Period 1 - Max Tran Count must be numeric",
4812 "maxlength": "Period 1 - Max Tran Count maximum length is 10 digits"
4813 },
4814 "rolling_period1_max_transaction_amount__effective": {
4815 "number": "Period 1 - Max Tran Amt must be a valid amount",
4816 "maxlength": "Period 1 - Max Tran Amt maximum length is 8 characters"
4817 },
4818 "rolling_period1_max_sale_transaction_sum__effective": {
4819 "number": "Period 1 - Max Sale Tran Amt Sum must be a valid amount",
4820 "maxlength": "Period 1 - Max Sale Tran Amt Sum maximum length is 8 characters"
4821 },
4822 "rolling_period1_max_refund_transaction_sum__effective": {
4823 "number": "Period 1 - Max Refund Tran Amt Sum must be a valid amount",
4824 "maxlength": "Period 1 - Max Refund Tran Amt Sum maximum length is 8 characters"
4825 },
4826 "rolling_period2_minutes__effective": {
4827 "digits": "Period 2 - Minutes must be numeric",
4828 "maxlength": "Period 2 - Minutes maximum length is 10 digits"
4829 },
4830 "rolling_period2_max_transaction_count__effective": {
4831 "digits": "Period 2 - Max Tran Count must be numeric",
4832 "maxlength": "Period 2 - Max Tran Count maximum length is 10 digits"
4833 },
4834 "rolling_period2_max_transaction_amount__effective": {
4835 "number": "Period 2 - Max Tran Amt must be a valid amount",
4836 "maxlength": "Period 2 - Max Tran Amt maximum length is 8 characters"
4837 },
4838 "rolling_period2_max_sale_transaction_sum__effective": {
4839 "number": "Period 2 - Max Sale Trans Amt Sum must be a valid amount",
4840 "maxlength": "Period 2 - Max Sale Trans Amt Sum maximum length is 8 characters"
4841 },
4842 "rolling_period2_max_refund_transaction_sum__effective": {
4843 "number": "Period 2 - Max Refund Trans Amt Sum must be a valid amount",
4844 "maxlength": "Period 2 - Max Refund Trans Amt Sum maximum length is 8 characters"
4845 },
4846 "rolling_credit_limit_minutes": {
4847 "number": "Credit Limit - Minutes must be numeric",
4848 "maxlength": "Credit Limit - Minutes maximum length is 10 digits"
4849 },
4850 "rolling_credit_limit_max_current_transaction_amount": {
4851 "number": "Credit Limit - Max Current Tran Amt must be a valid amount",
4852 "maxlength": "Credit Limit - Max Current Tran Amt maximum length is 8 characters"
4853 },
4854 "rolling_credit_limit_max_transaction_count": {
4855 "number": "Credit Limit - Max Tran Count must be numeric",
4856 "maxlength": "Credit Limit - Max Tran Count maximum length is 10 digits"
4857 },
4858 "rolling_credit_limit_max_transaction_amount": {
4859 "number": "Credit Limit - Max Tran Amt must be a valid amount",
4860 "maxlength": "Credit Limit - Max Tran Amt maximum length is 8 characters"
4861 },
4862 "rolling_credit_limit_max_sale_transaction_sum": {
4863 "number": "Credit Limit - Max Sale Trans Amt Sum must be a valid amount",
4864 "maxlength": "Credit Limit - Max Sale Trans Amt Sum maximum length is 8 characters"
4865 },
4866 "rolling_credit_limit_max_refund_transaction_sum": {
4867 "number": "Credit Limit - Max Refund Trans Amt Sum must be a valid amount",
4868 "maxlength": "Credit Limit - Max Refund Trans Amt Sum maximum length is 8 characters"
4869 },
4870 "risk_monitor__effective": {
4871 "checkbox": "Risk Monitor must be checked or unchecked"
4872 },
4873 "duration": {
4874 "number": "Duration must be a valid amount",
4875 "maxlength": "Duration maximum length is 11 characters"
4876 }
4877 }
4878 },
4879 "portal\/transactionsmonitor": {
4880 "formValidationRules": {
4881 "risk_decision": {
4882 "digits": true,
4883 "maxlength": "10"
4884 },
4885 "transaction_id": {
4886 "digits": true,
4887 "maxlength": "20"
4888 },
4889 "stamp": {
4890 "maxlength": 20
4891 },
4892 "partner_id": {
4893 "digits": true,
4894 "maxlength": "19"
4895 },
4896 "institution_id": {
4897 "digits": true,
4898 "maxlength": 9
4899 },
4900 "merchant_id": {
4901 "digits": true,
4902 "maxlength": "20"
4903 },
4904 "terminal_id": {
4905 "digits": true,
4906 "maxlength": "10"
4907 },
4908 "consumer_id": {
4909 "digits": true,
4910 "maxlength": "10"
4911 },
4912 "email_address": {
4913 "emailFull": true,
4914 "maxlength": "255"
4915 },
4916 "auth_platform_id": {
4917 "maxlength": "255"
4918 },
4919 "industry_type": {
4920 "maxlength": "255"
4921 },
4922 "desc": {
4923 "maxlength": "50"
4924 },
4925 "desc2": {
4926 "maxlength": "50"
4927 },
4928 "fraud_policy_base": {
4929 "maxlength": "30"
4930 },
4931 "fraud_policy_id__base": {
4932 "digits": true,
4933 "maxlength": "10"
4934 },
4935 "fraud_policy_override": {
4936 "maxlength": "30"
4937 },
4938 "fraud_policy_id__override": {
4939 "digits": true,
4940 "maxlength": "10"
4941 },
4942 "total_amount": {
4943 "number": true,
4944 "maxlength": "8"
4945 },
4946 "action_code": {
4947 "digits": true,
4948 "maxlength": "10"
4949 },
4950 "response_code": {
4951 "maxlength": "3"
4952 },
4953 "response_verbiage": {
4954 "maxlength": "200"
4955 },
4956 "fraud_description": {
4957 "maxlength": "100"
4958 },
4959 "lifetime_sale_count": {
4960 "digits": true,
4961 "maxlength": "10"
4962 },
4963 "period1_begin_stamp": {
4964 "maxlength": 20
4965 },
4966 "period1_transaction_count": {
4967 "digits": true,
4968 "maxlength": "10"
4969 },
4970 "period1_sale_transaction_sum": {
4971 "number": true,
4972 "maxlength": "8"
4973 },
4974 "period1_refund_transaction_sum": {
4975 "number": true,
4976 "maxlength": "8"
4977 },
4978 "period2_begin_stamp": {
4979 "maxlength": 20
4980 },
4981 "period2_transaction_count": {
4982 "digits": true,
4983 "maxlength": "10"
4984 },
4985 "period2_sale_transaction_sum": {
4986 "number": true,
4987 "maxlength": "8"
4988 },
4989 "period2_refund_transaction_sum": {
4990 "number": true,
4991 "maxlength": "8"
4992 },
4993 "credit_limit_begin_stamp": {
4994 "maxlength": 20
4995 },
4996 "credit_limit_transaction_count": {
4997 "digits": true,
4998 "maxlength": "10"
4999 },
5000 "credit_limit_sale_transaction_sum": {
5001 "number": true,
5002 "maxlength": "8"
5003 },
5004 "credit_limit_refund_transaction_sum": {
5005 "number": true,
5006 "maxlength": "8"
5007 },
5008 "max_current_transaction_amount__effective": {
5009 "number": true,
5010 "maxlength": "8"
5011 },
5012 "rolling_period1_minutes__effective": {
5013 "digits": true,
5014 "maxlength": "10"
5015 },
5016 "rolling_period1_max_transaction_count__effective": {
5017 "digits": true,
5018 "maxlength": "10"
5019 },
5020 "rolling_period1_max_transaction_amount__effective": {
5021 "number": true,
5022 "maxlength": "8"
5023 },
5024 "rolling_period1_max_sale_transaction_sum__effective": {
5025 "number": true,
5026 "maxlength": "8"
5027 },
5028 "rolling_period1_max_refund_transaction_sum__effective": {
5029 "number": true,
5030 "maxlength": "8"
5031 },
5032 "rolling_period2_minutes__effective": {
5033 "digits": true,
5034 "maxlength": "10"
5035 },
5036 "rolling_period2_max_transaction_count__effective": {
5037 "digits": true,
5038 "maxlength": "10"
5039 },
5040 "rolling_period2_max_transaction_amount__effective": {
5041 "number": true,
5042 "maxlength": "8"
5043 },
5044 "rolling_period2_max_sale_transaction_sum__effective": {
5045 "number": true,
5046 "maxlength": "8"
5047 },
5048 "rolling_period2_max_refund_transaction_sum__effective": {
5049 "number": true,
5050 "maxlength": "8"
5051 },
5052 "rolling_credit_limit_minutes": {
5053 "number": true,
5054 "maxlength": "10"
5055 },
5056 "rolling_credit_limit_max_current_transaction_amount": {
5057 "number": true,
5058 "maxlength": "8"
5059 },
5060 "rolling_credit_limit_max_transaction_count": {
5061 "number": true,
5062 "maxlength": "10"
5063 },
5064 "rolling_credit_limit_max_transaction_amount": {
5065 "number": true,
5066 "maxlength": "8"
5067 },
5068 "rolling_credit_limit_max_sale_transaction_sum": {
5069 "number": true,
5070 "maxlength": "8"
5071 },
5072 "rolling_credit_limit_max_refund_transaction_sum": {
5073 "number": true,
5074 "maxlength": "8"
5075 },
5076 "risk_monitor__effective": {
5077 "checkbox": true
5078 },
5079 "duration": {
5080 "number": true,
5081 "maxlength": "11"
5082 }
5083 },
5084 "formValidationMessages": {
5085 "risk_decision": {
5086 "digits": "Decision must be numeric",
5087 "maxlength": "Decision maximum length is 10 digits"
5088 },
5089 "transaction_id": {
5090 "digits": "Transaction ID must be numeric",
5091 "maxlength": "Transaction ID maximum length is 20 digits"
5092 },
5093 "stamp": {
5094 "maxlength": "Date\/Time maximum length is 20 characters"
5095 },
5096 "partner_id": {
5097 "digits": "Partner ID must be numeric",
5098 "maxlength": "Partner ID maximum length is 19 digits"
5099 },
5100 "institution_id": {
5101 "digits": "Institution ID must be numeric",
5102 "maxlength": "Institution ID maximum length is 9 digits"
5103 },
5104 "merchant_id": {
5105 "digits": "Merchant ID must be numeric",
5106 "maxlength": "Merchant ID maximum length is 20 digits"
5107 },
5108 "terminal_id": {
5109 "digits": "Terminal ID must be numeric",
5110 "maxlength": "Terminal ID maximum length is 10 digits"
5111 },
5112 "consumer_id": {
5113 "digits": "Consumer ID must be numeric",
5114 "maxlength": "Consumer ID maximum length is 10 digits"
5115 },
5116 "email_address": {
5117 "emailFull": "Email Address must be in the format user@domain.com",
5118 "maxlength": "Email Address maximum length is 255 characters"
5119 },
5120 "auth_platform_id": {
5121 "maxlength": "Auth Platform maximum length is 255 characters"
5122 },
5123 "industry_type": {
5124 "maxlength": "Industry Type maximum length is 255 characters"
5125 },
5126 "desc": {
5127 "maxlength": "Transaction maximum length is 50 characters"
5128 },
5129 "desc2": {
5130 "maxlength": "API maximum length is 50 characters"
5131 },
5132 "fraud_policy_base": {
5133 "maxlength": "Base Policy maximum length is 30 characters"
5134 },
5135 "fraud_policy_id__base": {
5136 "digits": "Base Policy ID must be numeric",
5137 "maxlength": "Base Policy ID maximum length is 10 digits"
5138 },
5139 "fraud_policy_override": {
5140 "maxlength": "Override Policy maximum length is 30 characters"
5141 },
5142 "fraud_policy_id__override": {
5143 "digits": "Override Policy ID must be numeric",
5144 "maxlength": "Override Policy ID maximum length is 10 digits"
5145 },
5146 "total_amount": {
5147 "number": "Amount must be a valid amount",
5148 "maxlength": "Amount maximum length is 8 characters"
5149 },
5150 "action_code": {
5151 "digits": "Action Code must be numeric",
5152 "maxlength": "Action Code maximum length is 10 digits"
5153 },
5154 "response_code": {
5155 "maxlength": "Response Code maximum length is 3 characters"
5156 },
5157 "response_verbiage": {
5158 "maxlength": "Response Verbiage maximum length is 200 characters"
5159 },
5160 "fraud_description": {
5161 "maxlength": "Fraud Description maximum length is 100 characters"
5162 },
5163 "lifetime_sale_count": {
5164 "digits": "Lifetime Sale Count must be numeric",
5165 "maxlength": "Lifetime Sale Count maximum length is 10 digits"
5166 },
5167 "period1_begin_stamp": {
5168 "maxlength": "Period 1 Begin Date\/Time maximum length is 20 characters"
5169 },
5170 "period1_transaction_count": {
5171 "digits": "Period 1 Tran Count must be numeric",
5172 "maxlength": "Period 1 Tran Count maximum length is 10 digits"
5173 },
5174 "period1_sale_transaction_sum": {
5175 "number": "Period 1 Sale Tran Sum must be a valid amount",
5176 "maxlength": "Period 1 Sale Tran Sum maximum length is 8 characters"
5177 },
5178 "period1_refund_transaction_sum": {
5179 "number": "Period 1 Refund Tran Sum must be a valid amount",
5180 "maxlength": "Period 1 Refund Tran Sum maximum length is 8 characters"
5181 },
5182 "period2_begin_stamp": {
5183 "maxlength": "Period 2 Begin Date\/Time maximum length is 20 characters"
5184 },
5185 "period2_transaction_count": {
5186 "digits": "Period 2 Tran Count must be numeric",
5187 "maxlength": "Period 2 Tran Count maximum length is 10 digits"
5188 },
5189 "period2_sale_transaction_sum": {
5190 "number": "Period 2 Sale Tran Sum must be a valid amount",
5191 "maxlength": "Period 2 Sale Tran Sum maximum length is 8 characters"
5192 },
5193 "period2_refund_transaction_sum": {
5194 "number": "Period 2 Refund Tran Sum must be a valid amount",
5195 "maxlength": "Period 2 Refund Tran Sum maximum length is 8 characters"
5196 },
5197 "credit_limit_begin_stamp": {
5198 "maxlength": "Credit Limit Begin Date\/Time maximum length is 20 characters"
5199 },
5200 "credit_limit_transaction_count": {
5201 "digits": "Credit Limit Tran Count must be numeric",
5202 "maxlength": "Credit Limit Tran Count maximum length is 10 digits"
5203 },
5204 "credit_limit_sale_transaction_sum": {
5205 "number": "Credit Limit Sale Tran Sum must be a valid amount",
5206 "maxlength": "Credit Limit Sale Tran Sum maximum length is 8 characters"
5207 },
5208 "credit_limit_refund_transaction_sum": {
5209 "number": "Credit Limit Refund Tran Sum must be a valid amount",
5210 "maxlength": "Credit Limit Refund Tran Sum maximum length is 8 characters"
5211 },
5212 "max_current_transaction_amount__effective": {
5213 "number": "Max Current Tran Amt must be a valid amount",
5214 "maxlength": "Max Current Tran Amt maximum length is 8 characters"
5215 },
5216 "rolling_period1_minutes__effective": {
5217 "digits": "Period 1 - Minutes must be numeric",
5218 "maxlength": "Period 1 - Minutes maximum length is 10 digits"
5219 },
5220 "rolling_period1_max_transaction_count__effective": {
5221 "digits": "Period 1 - Max Tran Count must be numeric",
5222 "maxlength": "Period 1 - Max Tran Count maximum length is 10 digits"
5223 },
5224 "rolling_period1_max_transaction_amount__effective": {
5225 "number": "Period 1 - Max Tran Amt must be a valid amount",
5226 "maxlength": "Period 1 - Max Tran Amt maximum length is 8 characters"
5227 },
5228 "rolling_period1_max_sale_transaction_sum__effective": {
5229 "number": "Period 1 - Max Sale Tran Amt Sum must be a valid amount",
5230 "maxlength": "Period 1 - Max Sale Tran Amt Sum maximum length is 8 characters"
5231 },
5232 "rolling_period1_max_refund_transaction_sum__effective": {
5233 "number": "Period 1 - Max Refund Tran Amt Sum must be a valid amount",
5234 "maxlength": "Period 1 - Max Refund Tran Amt Sum maximum length is 8 characters"
5235 },
5236 "rolling_period2_minutes__effective": {
5237 "digits": "Period 2 - Minutes must be numeric",
5238 "maxlength": "Period 2 - Minutes maximum length is 10 digits"
5239 },
5240 "rolling_period2_max_transaction_count__effective": {
5241 "digits": "Period 2 - Max Tran Count must be numeric",
5242 "maxlength": "Period 2 - Max Tran Count maximum length is 10 digits"
5243 },
5244 "rolling_period2_max_transaction_amount__effective": {
5245 "number": "Period 2 - Max Tran Amt must be a valid amount",
5246 "maxlength": "Period 2 - Max Tran Amt maximum length is 8 characters"
5247 },
5248 "rolling_period2_max_sale_transaction_sum__effective": {
5249 "number": "Period 2 - Max Sale Trans Amt Sum must be a valid amount",
5250 "maxlength": "Period 2 - Max Sale Trans Amt Sum maximum length is 8 characters"
5251 },
5252 "rolling_period2_max_refund_transaction_sum__effective": {
5253 "number": "Period 2 - Max Refund Trans Amt Sum must be a valid amount",
5254 "maxlength": "Period 2 - Max Refund Trans Amt Sum maximum length is 8 characters"
5255 },
5256 "rolling_credit_limit_minutes": {
5257 "number": "Credit Limit - Minutes must be numeric",
5258 "maxlength": "Credit Limit - Minutes maximum length is 10 digits"
5259 },
5260 "rolling_credit_limit_max_current_transaction_amount": {
5261 "number": "Credit Limit - Max Current Tran Amt must be a valid amount",
5262 "maxlength": "Credit Limit - Max Current Tran Amt maximum length is 8 characters"
5263 },
5264 "rolling_credit_limit_max_transaction_count": {
5265 "number": "Credit Limit - Max Tran Count must be numeric",
5266 "maxlength": "Credit Limit - Max Tran Count maximum length is 10 digits"
5267 },
5268 "rolling_credit_limit_max_transaction_amount": {
5269 "number": "Credit Limit - Max Tran Amt must be a valid amount",
5270 "maxlength": "Credit Limit - Max Tran Amt maximum length is 8 characters"
5271 },
5272 "rolling_credit_limit_max_sale_transaction_sum": {
5273 "number": "Credit Limit - Max Sale Trans Amt Sum must be a valid amount",
5274 "maxlength": "Credit Limit - Max Sale Trans Amt Sum maximum length is 8 characters"
5275 },
5276 "rolling_credit_limit_max_refund_transaction_sum": {
5277 "number": "Credit Limit - Max Refund Trans Amt Sum must be a valid amount",
5278 "maxlength": "Credit Limit - Max Refund Trans Amt Sum maximum length is 8 characters"
5279 },
5280 "risk_monitor__effective": {
5281 "checkbox": "Risk Monitor must be checked or unchecked"
5282 },
5283 "duration": {
5284 "number": "Duration must be a valid amount",
5285 "maxlength": "Duration maximum length is 11 characters"
5286 }
5287 }
5288 },
5289 "portal\/riskdecisions": {
5290 "formValidationRules": {
5291 "risk_decision": {
5292 "digits": true,
5293 "maxlength": "10"
5294 },
5295 "desc": {
5296 "maxlength": "50"
5297 }
5298 },
5299 "formValidationMessages": {
5300 "risk_decision": {
5301 "digits": "Risk Decision ID must be numeric",
5302 "maxlength": "Risk Decision ID maximum length is 10 digits"
5303 },
5304 "desc": {
5305 "maxlength": "Description maximum length is 50 characters"
5306 }
5307 }
5308 },
5309 "portal\/cdwtransactionstatus": {
5310 "formValidationRules": {
5311 "status": {
5312 "digits": true,
5313 "maxlength": "5"
5314 },
5315 "status_desc": {
5316 "maxlength": "20"
5317 }
5318 },
5319 "formValidationMessages": {
5320 "status": {
5321 "digits": "CDW Transaction Status must be numeric",
5322 "maxlength": "CDW Transaction Status maximum length is 5 digits"
5323 },
5324 "status_desc": {
5325 "maxlength": "Description maximum length is 20 characters"
5326 }
5327 }
5328 },
5329 "portal\/cdwtransactiontypes": {
5330 "formValidationRules": {
5331 "trans_type": {
5332 "digits": true,
5333 "maxlength": "5"
5334 },
5335 "desc": {
5336 "maxlength": "20"
5337 }
5338 },
5339 "formValidationMessages": {
5340 "trans_type": {
5341 "digits": "CDW Transaction Status must be numeric",
5342 "maxlength": "CDW Transaction Status maximum length is 5 digits"
5343 },
5344 "desc": {
5345 "maxlength": "Description maximum length is 20 characters"
5346 }
5347 }
5348 },
5349 "portal\/pinzones": {
5350 "formValidationRules": {
5351 "pin_zone": {
5352 "digits": true,
5353 "maxlength": "10"
5354 },
5355 "pin_zone_description": {
5356 "maxlength": "50"
5357 }
5358 },
5359 "formValidationMessages": {
5360 "pin_zone": {
5361 "digits": "PIN Zone must be numeric",
5362 "maxlength": "PIN Zone maximum length is 10 digits"
5363 },
5364 "pin_zone_description": {
5365 "maxlength": "Description maximum length is 50 characters"
5366 }
5367 }
5368 },
5369 "portal\/fedbanks": {
5370 "formValidationRules": {
5371 "aba": {
5372 "minlength": 9,
5373 "maxlength": 9
5374 },
5375 "office_code": {
5376 "maxlength": "1"
5377 },
5378 "servicing_frb_number": {
5379 "maxlength": "9"
5380 },
5381 "record_type_code": {
5382 "maxlength": "1"
5383 },
5384 "change_date": {
5385 "maxlength": "6"
5386 },
5387 "new_aba": {
5388 "minlength": 9,
5389 "maxlength": 9
5390 },
5391 "customer_name": {
5392 "maxlength": "36"
5393 },
5394 "address": {
5395 "maxlength": "36"
5396 },
5397 "city": {
5398 "maxlength": "20"
5399 },
5400 "state": {
5401 "maxlength": "2"
5402 },
5403 "zipcode": {
5404 "maxlength": "5"
5405 },
5406 "zipcode_extension": {
5407 "maxlength": "4"
5408 },
5409 "telephone": {
5410 "phoneUS": true
5411 },
5412 "institution_status_code": {
5413 "maxlength": "1"
5414 },
5415 "data_view_code": {
5416 "maxlength": "1"
5417 }
5418 },
5419 "formValidationMessages": {
5420 "aba": {
5421 "minlength": "Routing Number (ABA) minimum length is 9 characters",
5422 "maxlength": "Routing Number (ABA) maximum length is 9 characters"
5423 },
5424 "office_code": {
5425 "maxlength": "Office Code maximum length is 1 characters"
5426 },
5427 "servicing_frb_number": {
5428 "maxlength": "Servicing FRB Number maximum length is 9 characters"
5429 },
5430 "record_type_code": {
5431 "maxlength": "Record Type Code maximum length is 1 characters"
5432 },
5433 "change_date": {
5434 "maxlength": "Change Date maximum length is 6 characters"
5435 },
5436 "new_aba": {
5437 "minlength": "New Routing Number (ABA) minimum length is 9 characters",
5438 "maxlength": "New Routing Number (ABA) maximum length is 9 characters"
5439 },
5440 "customer_name": {
5441 "maxlength": "Bank Name maximum length is 36 characters"
5442 },
5443 "address": {
5444 "maxlength": "Address maximum length is 36 characters"
5445 },
5446 "city": {
5447 "maxlength": "City maximum length is 20 characters"
5448 },
5449 "state": {
5450 "maxlength": "State maximum length is 2 characters"
5451 },
5452 "zipcode": {
5453 "maxlength": "Zip Code maximum length is 5 characters"
5454 },
5455 "zipcode_extension": {
5456 "maxlength": "Zip Code maximum length is 4 characters"
5457 },
5458 "telephone": {
5459 "phoneUS": "Telephone must be valid US phone number"
5460 },
5461 "institution_status_code": {
5462 "maxlength": "Institution State Code maximum length is 1 characters"
5463 },
5464 "data_view_code": {
5465 "maxlength": "Data View Code maximum length is 1 characters"
5466 }
5467 }
5468 },
5469 "portal\/industrytypes": {
5470 "formValidationRules": {
5471 "industry_type": {
5472 "maxlength": "1"
5473 },
5474 "industry_type_desc": {
5475 "maxlength": "50"
5476 }
5477 },
5478 "formValidationMessages": {
5479 "industry_type": {
5480 "maxlength": "Industry Type maximum length is 1 characters"
5481 },
5482 "industry_type_desc": {
5483 "maxlength": "Description maximum length is 50 characters"
5484 }
5485 }
5486 },
5487 "portal\/industrycreditlimits": {
5488 "formValidationRules": {
5489 "credit_limit_id": {
5490 "digits": true,
5491 "maxlength": "10"
5492 },
5493 "partner_id": {
5494 "digits": true,
5495 "maxlength": "10"
5496 },
5497 "institution_id": {
5498 "digits": true,
5499 "maxlength": 9
5500 },
5501 "fraud_policy_type": {
5502 "inclusion": {
5503 "within": {
5504 "NEW": "NEW",
5505 "STANDARD": "STANDARD"
5506 }
5507 }
5508 },
5509 "industry_type": {
5510 "maxlength": "1"
5511 },
5512 "industry_type_desc": {
5513 "maxlength": "50"
5514 },
5515 "rolling_credit_limit_max_current_transaction_amount": {
5516 "number": true,
5517 "maxlength": "10"
5518 },
5519 "rolling_credit_limit_minutes": {
5520 "number": true,
5521 "maxlength": "10"
5522 },
5523 "rolling_credit_limit_max_transaction_count": {
5524 "number": true,
5525 "maxlength": "10"
5526 },
5527 "rolling_credit_limit_max_transaction_amount": {
5528 "number": true,
5529 "maxlength": "10"
5530 },
5531 "rolling_credit_limit_max_sale_transaction_sum": {
5532 "number": true,
5533 "maxlength": "10"
5534 },
5535 "rolling_credit_limit_max_refund_transaction_sum": {
5536 "number": true,
5537 "maxlength": "10"
5538 }
5539 },
5540 "formValidationMessages": {
5541 "credit_limit_id": {
5542 "digits": "Credit Limit ID must be numeric",
5543 "maxlength": "Credit Limit ID maximum length is 10 digits"
5544 },
5545 "partner_id": {
5546 "digits": "Partner ID must be numeric",
5547 "maxlength": "Partner ID maximum length is 10 digits"
5548 },
5549 "institution_id": {
5550 "digits": "Institution ID must be numeric",
5551 "maxlength": "Institution ID maximum length is 9 digits"
5552 },
5553 "fraud_policy_type": {
5554 "inclusion": "Fraud Policy Type must be NEW or STANDARD"
5555 },
5556 "industry_type": {
5557 "maxlength": "Industry Type maximum length is 1 characters"
5558 },
5559 "industry_type_desc": {
5560 "maxlength": "Industry Type Description maximum length is 50 characters"
5561 },
5562 "rolling_credit_limit_max_current_transaction_amount": {
5563 "number": "Max Current Tran Amt must be a valid amount",
5564 "maxlength": "Max Current Tran Amt maximum length is 10 characters"
5565 },
5566 "rolling_credit_limit_minutes": {
5567 "number": "Credit Limit - Minutes must be numeric",
5568 "maxlength": "Credit Limit - Minutes maximum length is 10 digits"
5569 },
5570 "rolling_credit_limit_max_transaction_count": {
5571 "number": "Credit Limit - Max Tran Count must be numeric",
5572 "maxlength": "Credit Limit - Max Tran Count maximum length is 10 digits"
5573 },
5574 "rolling_credit_limit_max_transaction_amount": {
5575 "number": "Credit Limit - Max Tran Amt must be a valid amount",
5576 "maxlength": "Credit Limit - Max Tran Amt maximum length is 10 characters"
5577 },
5578 "rolling_credit_limit_max_sale_transaction_sum": {
5579 "number": "Credit Limit - Max Sale Trans Amt Sum must be a valid amount",
5580 "maxlength": "Credit Limit - Max Sale Trans Amt Sum maximum length is 10 characters"
5581 },
5582 "rolling_credit_limit_max_refund_transaction_sum": {
5583 "number": "Credit Limit - Max Refund Trans Amt Sum must be a valid amount",
5584 "maxlength": "Credit Limit - Max Refund Trans Amt Sum maximum length is 10 characters"
5585 }
5586 }
5587 },
5588 "portal\/contentmanager": {
5589 "formValidationRules": {
5590 "content_id": {
5591 "digits": true,
5592 "maxlength": "10"
5593 },
5594 "network_id": {
5595 "digits": true,
5596 "maxlength": "10"
5597 },
5598 "partner_id": {
5599 "digits": true,
5600 "maxlength": "10"
5601 },
5602 "content_type": {
5603 "maxlength": "1"
5604 },
5605 "content_name": {
5606 "maxlength": "50"
5607 },
5608 "content_version": {
5609 "maxlength": "50"
5610 },
5611 "template_html": {
5612 "maxlength": "1000000"
5613 },
5614 "template_text": {
5615 "maxlength": "1000000"
5616 },
5617 "active": {
5618 "checkbox": true
5619 },
5620 "effective_date": {
5621 "required": true,
5622 "maxlength": 23
5623 }
5624 },
5625 "formValidationMessages": {
5626 "content_id": {
5627 "digits": "Content ID must be numeric",
5628 "maxlength": "Content ID maximum length is 10 digits"
5629 },
5630 "network_id": {
5631 "digits": "Network ID must be numeric",
5632 "maxlength": "Network ID maximum length is 10 digits"
5633 },
5634 "partner_id": {
5635 "digits": "Partner ID must be numeric",
5636 "maxlength": "Partner ID maximum length is 10 digits"
5637 },
5638 "content_type": {
5639 "maxlength": "Content Type maximum length is 1 characters"
5640 },
5641 "content_name": {
5642 "maxlength": "Content Name maximum length is 50 characters"
5643 },
5644 "content_version": {
5645 "maxlength": "Version maximum length is 50 characters"
5646 },
5647 "template_html": {
5648 "maxlength": "HTML Template maximum length is 1000000 characters"
5649 },
5650 "template_text": {
5651 "maxlength": "Text Template maximum length is 1000000 characters"
5652 },
5653 "active": {
5654 "checkbox": "Active must be checked or unchecked"
5655 },
5656 "effective_date": {
5657 "required": "Effective Date is Required",
5658 "maxlength": "Effective Date maximum length is 20 characters"
5659 }
5660 }
5661 },
5662 "portal\/consumeragreementlog": {
5663 "formValidationRules": {
5664 "consumer_agreement_id": {
5665 "digits": true,
5666 "maxlength": "10"
5667 },
5668 "network_id": {
5669 "digits": true,
5670 "maxlength": "10"
5671 },
5672 "partner_id": {
5673 "digits": true,
5674 "maxlength": "10"
5675 },
5676 "consumer_id": {
5677 "digits": true,
5678 "maxlength": "10"
5679 },
5680 "email_address": {
5681 "emailFull": true,
5682 "maxlength": "255"
5683 },
5684 "content_type": {
5685 "maxlength": "1"
5686 },
5687 "content_desc": {
5688 "maxlength": "100"
5689 },
5690 "content_id": {
5691 "digits": true,
5692 "maxlength": "10"
5693 },
5694 "content_name": {
5695 "maxlength": "50"
5696 },
5697 "content_version": {
5698 "maxlength": "50"
5699 },
5700 "effective_date": {
5701 "maxlength": 20
5702 },
5703 "accepted": {
5704 "checkbox": true
5705 }
5706 },
5707 "formValidationMessages": {
5708 "consumer_agreement_id": {
5709 "digits": "Log ID must be numeric",
5710 "maxlength": "Log ID maximum length is 10 digits"
5711 },
5712 "network_id": {
5713 "digits": "Network ID must be numeric",
5714 "maxlength": "Network ID maximum length is 10 digits"
5715 },
5716 "partner_id": {
5717 "digits": "Partner ID must be numeric",
5718 "maxlength": "Partner ID maximum length is 10 digits"
5719 },
5720 "consumer_id": {
5721 "digits": "Consumer ID must be numeric",
5722 "maxlength": "Consumer ID maximum length is 10 digits"
5723 },
5724 "email_address": {
5725 "emailFull": "Email Address must be in the format user@domain.com",
5726 "maxlength": "Email Address maximum length is 255 characters"
5727 },
5728 "content_type": {
5729 "maxlength": "Type maximum length is 1 characters"
5730 },
5731 "content_desc": {
5732 "maxlength": "Type Description maximum length is 100 characters"
5733 },
5734 "content_id": {
5735 "digits": "Agreement must be numeric",
5736 "maxlength": "Agreement maximum length is 10 digits"
5737 },
5738 "content_name": {
5739 "maxlength": "Name maximum length is 50 characters"
5740 },
5741 "content_version": {
5742 "maxlength": "Version maximum length is 50 characters"
5743 },
5744 "effective_date": {
5745 "maxlength": "Effective Date maximum length is 20 characters"
5746 },
5747 "accepted": {
5748 "checkbox": "Accepted must be checked or unchecked"
5749 }
5750 }
5751 },
5752 "portal\/transactions": {
5753 "formValidationRules": {
5754 "transaction_id": {
5755 "digits": true,
5756 "maxlength": "20"
5757 },
5758 "linked_transaction_id": {
5759 "digits": true,
5760 "maxlength": "20"
5761 },
5762 "referenced_transaction_id": {
5763 "digits": true,
5764 "maxlength": "20"
5765 },
5766 "stamp": {
5767 "maxlength": 20
5768 },
5769 "partner_id": {
5770 "digits": true,
5771 "maxlength": "10"
5772 },
5773 "institution_id": {
5774 "digits": true,
5775 "maxlength": 9
5776 },
5777 "merchant_id": {
5778 "digits": true,
5779 "maxlength": "20"
5780 },
5781 "auth_platform_id": {
5782 "maxlength": "255"
5783 },
5784 "industry_type": {
5785 "maxlength": "255"
5786 },
5787 "name": {
5788 "maxlength": "100"
5789 },
5790 "terminal_id": {
5791 "digits": true,
5792 "maxlength": "10"
5793 },
5794 "pseudo_terminal_id": {
5795 "maxlength": "50"
5796 },
5797 "external_merchant_id": {
5798 "maxlength": "15"
5799 },
5800 "external_terminal_id": {
5801 "maxlength": "8"
5802 },
5803 "intercept_terminal_id": {
5804 "maxlength": "6"
5805 },
5806 "consumer_id": {
5807 "digits": true,
5808 "maxlength": "10"
5809 },
5810 "email_address": {
5811 "emailFull": true,
5812 "maxlength": "255"
5813 },
5814 "barcode": {
5815 "maxlength": "16"
5816 },
5817 "connectcode": {
5818 "maxlength": "16"
5819 },
5820 "desc": {
5821 "maxlength": "50"
5822 },
5823 "desc2": {
5824 "maxlength": "50"
5825 },
5826 "total_amount": {
5827 "number": true,
5828 "maxlength": "8"
5829 },
5830 "approved": {
5831 "digits": true,
5832 "maxlength": "5"
5833 },
5834 "approval_code": {
5835 "maxlength": "6"
5836 },
5837 "action_code": {
5838 "digits": true,
5839 "maxlength": "10"
5840 },
5841 "message": {
5842 "maxlength": "200"
5843 },
5844 "response_code": {
5845 "maxlength": "3"
5846 },
5847 "response_verbiage": {
5848 "maxlength": "200"
5849 },
5850 "voided": {
5851 "digits": true,
5852 "maxlength": "5"
5853 },
5854 "refunds": {
5855 "digits": true,
5856 "maxlength": "5"
5857 },
5858 "remaining_balance_amount": {
5859 "number": true,
5860 "maxlength": "8"
5861 },
5862 "postauth": {
5863 "digits": true,
5864 "maxlength": "5"
5865 },
5866 "settled_stamp": {
5867 "maxlength": 20
5868 },
5869 "void_stamp": {
5870 "maxlength": 20
5871 },
5872 "complete": {
5873 "digits": true,
5874 "maxlength": "5"
5875 },
5876 "reason": {
5877 "maxlength": "255"
5878 },
5879 "shift_id": {
5880 "maxlength": "50"
5881 },
5882 "clerk_id": {
5883 "maxlength": "50"
5884 },
5885 "batch_id": {
5886 "maxlength": "50"
5887 },
5888 "duration": {
5889 "number": true,
5890 "maxlength": "11"
5891 }
5892 },
5893 "formValidationMessages": {
5894 "transaction_id": {
5895 "digits": "Transaction ID must be numeric",
5896 "maxlength": "Transaction ID maximum length is 20 digits"
5897 },
5898 "linked_transaction_id": {
5899 "digits": "Linked Transaction ID must be numeric",
5900 "maxlength": "Linked Transaction ID maximum length is 20 digits"
5901 },
5902 "referenced_transaction_id": {
5903 "digits": "Referenced Transaction ID must be numeric",
5904 "maxlength": "Referenced Transaction ID maximum length is 20 digits"
5905 },
5906 "stamp": {
5907 "maxlength": "Date\/Time maximum length is 20 characters"
5908 },
5909 "partner_id": {
5910 "digits": "Partner ID must be numeric",
5911 "maxlength": "Partner ID maximum length is 10 digits"
5912 },
5913 "institution_id": {
5914 "digits": "Institution ID must be numeric",
5915 "maxlength": "Institution ID maximum length is 9 digits"
5916 },
5917 "merchant_id": {
5918 "digits": "Merchant ID must be numeric",
5919 "maxlength": "Merchant ID maximum length is 20 digits"
5920 },
5921 "auth_platform_id": {
5922 "maxlength": "Auth Platform maximum length is 255 characters"
5923 },
5924 "industry_type": {
5925 "maxlength": "Industry Type maximum length is 255 characters"
5926 },
5927 "name": {
5928 "maxlength": "Merchant Name maximum length is 100 characters"
5929 },
5930 "terminal_id": {
5931 "digits": "Terminal ID must be numeric",
5932 "maxlength": "Terminal ID maximum length is 10 digits"
5933 },
5934 "pseudo_terminal_id": {
5935 "maxlength": "Pseudo Terminal ID maximum length is 50 characters"
5936 },
5937 "external_merchant_id": {
5938 "maxlength": "External Merchant ID maximum length is 15 characters"
5939 },
5940 "external_terminal_id": {
5941 "maxlength": "External Terminal ID maximum length is 8 characters"
5942 },
5943 "intercept_terminal_id": {
5944 "maxlength": "Intercept Terminal ID maximum length is 6 characters"
5945 },
5946 "consumer_id": {
5947 "digits": "Consumer ID must be numeric",
5948 "maxlength": "Consumer ID maximum length is 10 digits"
5949 },
5950 "email_address": {
5951 "emailFull": "Email Address must be in the format user@domain.com",
5952 "maxlength": "Email Address maximum length is 255 characters"
5953 },
5954 "barcode": {
5955 "maxlength": "Barcode maximum length is 16 characters"
5956 },
5957 "connectcode": {
5958 "maxlength": "Connect Code maximum length is 16 characters"
5959 },
5960 "desc": {
5961 "maxlength": "Transaction Type maximum length is 50 characters"
5962 },
5963 "desc2": {
5964 "maxlength": "API maximum length is 50 characters"
5965 },
5966 "total_amount": {
5967 "number": "Amount must be a valid amount",
5968 "maxlength": "Amount maximum length is 8 characters"
5969 },
5970 "approved": {
5971 "digits": "Approved must be numeric",
5972 "maxlength": "Approved maximum length is 5 digits"
5973 },
5974 "approval_code": {
5975 "maxlength": "Approval Code maximum length is 6 characters"
5976 },
5977 "action_code": {
5978 "digits": "Action Code must be numeric",
5979 "maxlength": "Action Code maximum length is 10 digits"
5980 },
5981 "message": {
5982 "maxlength": "Action Message maximum length is 200 characters"
5983 },
5984 "response_code": {
5985 "maxlength": "Response Code maximum length is 3 characters"
5986 },
5987 "response_verbiage": {
5988 "maxlength": "Response Verbiage maximum length is 200 characters"
5989 },
5990 "voided": {
5991 "digits": "Voided must be numeric",
5992 "maxlength": "Voided maximum length is 5 digits"
5993 },
5994 "refunds": {
5995 "digits": "Refunds must be numeric",
5996 "maxlength": "Refunds maximum length is 5 digits"
5997 },
5998 "remaining_balance_amount": {
5999 "number": "Remaining Balance must be a valid amount",
6000 "maxlength": "Remaining Balance maximum length is 8 characters"
6001 },
6002 "postauth": {
6003 "digits": "Post Auth must be numeric",
6004 "maxlength": "Post Auth maximum length is 5 digits"
6005 },
6006 "settled_stamp": {
6007 "maxlength": "Settlement Date maximum length is 20 characters"
6008 },
6009 "void_stamp": {
6010 "maxlength": "Void Confirmed Date maximum length is 20 characters"
6011 },
6012 "complete": {
6013 "digits": "Adjusted must be numeric",
6014 "maxlength": "Adjusted maximum length is 5 digits"
6015 },
6016 "reason": {
6017 "maxlength": "Adjustment Reason maximum length is 255 characters"
6018 },
6019 "shift_id": {
6020 "maxlength": "Shift ID maximum length is 50 characters"
6021 },
6022 "clerk_id": {
6023 "maxlength": "Clerk ID maximum length is 50 characters"
6024 },
6025 "batch_id": {
6026 "maxlength": "Batch ID maximum length is 50 characters"
6027 },
6028 "duration": {
6029 "number": "Duration must be a valid amount",
6030 "maxlength": "Duration maximum length is 11 characters"
6031 }
6032 }
6033 },
6034 "portal\/transactionsiso": {
6035 "formValidationRules": {
6036 "transaction_id": {
6037 "digits": true,
6038 "maxlength": "20"
6039 },
6040 "partner_id": {
6041 "digits": true,
6042 "maxlength": "10"
6043 },
6044 "institution_id": {
6045 "digits": true,
6046 "maxlength": 9
6047 },
6048 "merchant_id": {
6049 "digits": true,
6050 "maxlength": "20"
6051 },
6052 "terminal_id": {
6053 "digits": true,
6054 "maxlength": "10"
6055 },
6056 "auth_platform_id": {
6057 "maxlength": "255"
6058 },
6059 "message_type": {
6060 "maxlength": "4"
6061 },
6062 "processing_code": {
6063 "maxlength": "6"
6064 },
6065 "total_amount": {
6066 "number": true,
6067 "maxlength": "8"
6068 },
6069 "switch_date": {
6070 "maxlength": "10"
6071 },
6072 "system_trace_number": {
6073 "maxlength": "6"
6074 },
6075 "local_time": {
6076 "maxlength": "6"
6077 },
6078 "local_date": {
6079 "maxlength": "4"
6080 },
6081 "settlement_date": {
6082 "maxlength": "4"
6083 },
6084 "mcc": {
6085 "maxlength": "4"
6086 },
6087 "pos_entry_mode": {
6088 "maxlength": "3"
6089 },
6090 "acquiring_institution_id": {
6091 "maxlength": "11"
6092 },
6093 "merchant_rrn": {
6094 "maxlength": "12"
6095 },
6096 "external_terminal_id": {
6097 "maxlength": "8"
6098 },
6099 "external_merchant_id": {
6100 "maxlength": "15"
6101 },
6102 "terminal_location": {
6103 "maxlength": "40"
6104 },
6105 "merchant_name": {
6106 "maxlength": "25"
6107 },
6108 "transaction_currency_code": {
6109 "maxlength": "3"
6110 },
6111 "additional_amounts": {
6112 "maxlength": "120"
6113 },
6114 "auth_life_cycle": {
6115 "maxlength": "3"
6116 },
6117 "reversal_reason_code": {
6118 "maxlength": "6"
6119 },
6120 "private_data": {
6121 "maxlength": "50"
6122 },
6123 "pseudo_intercept_terminal_id": {
6124 "maxlength": "50"
6125 },
6126 "original_message_type": {
6127 "maxlength": "4"
6128 },
6129 "original_system_trace_number": {
6130 "maxlength": "6"
6131 },
6132 "original_date": {
6133 "maxlength": "10"
6134 },
6135 "auth_agent_institution_id": {
6136 "maxlength": "11"
6137 },
6138 "original_merchant_rrn": {
6139 "maxlength": "12"
6140 },
6141 "checkout_token": {
6142 "maxlength": "40"
6143 },
6144 "tender_id": {
6145 "maxlength": "12"
6146 }
6147 },
6148 "formValidationMessages": {
6149 "transaction_id": {
6150 "digits": "Transaction ID must be numeric",
6151 "maxlength": "Transaction ID maximum length is 20 digits"
6152 },
6153 "partner_id": {
6154 "digits": "Partner ID must be numeric",
6155 "maxlength": "Partner ID maximum length is 10 digits"
6156 },
6157 "institution_id": {
6158 "digits": "Institution ID must be numeric",
6159 "maxlength": "Institution ID maximum length is 9 digits"
6160 },
6161 "merchant_id": {
6162 "digits": "Merchant ID must be numeric",
6163 "maxlength": "Merchant ID maximum length is 20 digits"
6164 },
6165 "terminal_id": {
6166 "digits": "Terminal ID must be numeric",
6167 "maxlength": "Terminal ID maximum length is 10 digits"
6168 },
6169 "auth_platform_id": {
6170 "maxlength": "Auth Platform maximum length is 255 characters"
6171 },
6172 "message_type": {
6173 "maxlength": "Message Type maximum length is 4 characters"
6174 },
6175 "processing_code": {
6176 "maxlength": "DE-003 Processing Code maximum length is 6 characters"
6177 },
6178 "total_amount": {
6179 "number": "DE-004 Amount must be a valid amount",
6180 "maxlength": "DE-004 Amount maximum length is 8 characters"
6181 },
6182 "switch_date": {
6183 "maxlength": "DE-007 Switch Date maximum length is 10 characters"
6184 },
6185 "system_trace_number": {
6186 "maxlength": "DE-011 System Trace Number maximum length is 6 characters"
6187 },
6188 "local_time": {
6189 "maxlength": "DE-012 Local Time maximum length is 6 characters"
6190 },
6191 "local_date": {
6192 "maxlength": "DE-013 Local Date maximum length is 4 characters"
6193 },
6194 "settlement_date": {
6195 "maxlength": "DE-015 Settlement Date maximum length is 4 characters"
6196 },
6197 "mcc": {
6198 "maxlength": "DE-018 MCC maximum length is 4 characters"
6199 },
6200 "pos_entry_mode": {
6201 "maxlength": "DE-022 POS Entry Mode maximum length is 3 characters"
6202 },
6203 "acquiring_institution_id": {
6204 "maxlength": "DE-032 Acquiring Institution ID maximum length is 11 characters"
6205 },
6206 "merchant_rrn": {
6207 "maxlength": "DE-037 Retrieval Reference Number maximum length is 12 characters"
6208 },
6209 "external_terminal_id": {
6210 "maxlength": "DE-041 Terminal ID maximum length is 8 characters"
6211 },
6212 "external_merchant_id": {
6213 "maxlength": "DE-042 Merchant ID maximum length is 15 characters"
6214 },
6215 "terminal_location": {
6216 "maxlength": "DE-043 Terminal Location maximum length is 40 characters"
6217 },
6218 "merchant_name": {
6219 "maxlength": "DE-048 Merchant Name maximum length is 25 characters"
6220 },
6221 "transaction_currency_code": {
6222 "maxlength": "DE-049 Currency Code maximum length is 3 characters"
6223 },
6224 "additional_amounts": {
6225 "maxlength": "DE-054 Additional Amounts maximum length is 120 characters"
6226 },
6227 "auth_life_cycle": {
6228 "maxlength": "DE-057 Auth Life Cycle maximum length is 3 characters"
6229 },
6230 "reversal_reason_code": {
6231 "maxlength": "DE-060 Reversal Reason Code maximum length is 6 characters"
6232 },
6233 "private_data": {
6234 "maxlength": "DE-063 Private Data maximum length is 50 characters"
6235 },
6236 "pseudo_intercept_terminal_id": {
6237 "maxlength": "DE-063.1 Pseudo Intercept Terminal ID maximum length is 50 characters"
6238 },
6239 "original_message_type": {
6240 "maxlength": "DE-090.1 Original Message Type maximum length is 4 characters"
6241 },
6242 "original_system_trace_number": {
6243 "maxlength": "DE-090.2 Original System Trace Number maximum length is 6 characters"
6244 },
6245 "original_date": {
6246 "maxlength": "DE-090.3 Original Date maximum length is 10 characters"
6247 },
6248 "auth_agent_institution_id": {
6249 "maxlength": "DE-113 Auth Agent Institution ID maximum length is 11 characters"
6250 },
6251 "original_merchant_rrn": {
6252 "maxlength": "DE-127.2 Original Retrieval Reference maximum length is 12 characters"
6253 },
6254 "checkout_token": {
6255 "maxlength": "DE-127.3 Checkout Token maximum length is 40 characters"
6256 },
6257 "tender_id": {
6258 "maxlength": "DE-127.4 Tender ID maximum length is 12 characters"
6259 }
6260 }
6261 },
6262 "portal\/transactionslifecycle": {
6263 "formValidationRules": {
6264 "transaction_id": {
6265 "digits": true,
6266 "maxlength": "20"
6267 },
6268 "stamp": {
6269 "maxlength": 20
6270 },
6271 "partner_id": {
6272 "digits": true,
6273 "maxlength": "10"
6274 },
6275 "institution_id": {
6276 "digits": true,
6277 "maxlength": 9
6278 },
6279 "merchant_id": {
6280 "digits": true,
6281 "maxlength": "20"
6282 },
6283 "terminal_id": {
6284 "digits": true,
6285 "maxlength": "10"
6286 },
6287 "auth_platform_id": {
6288 "maxlength": "255"
6289 },
6290 "consumer_id": {
6291 "digits": true,
6292 "maxlength": "10"
6293 },
6294 "email_address": {
6295 "emailFull": true,
6296 "maxlength": "255"
6297 },
6298 "desc": {
6299 "maxlength": "50"
6300 },
6301 "desc2": {
6302 "maxlength": "50"
6303 },
6304 "total_amount": {
6305 "number": true,
6306 "maxlength": "8"
6307 },
6308 "approved": {
6309 "digits": true,
6310 "maxlength": "5"
6311 },
6312 "approval_code": {
6313 "maxlength": "6"
6314 },
6315 "action_code": {
6316 "digits": true,
6317 "maxlength": "10"
6318 },
6319 "response_code": {
6320 "maxlength": "3"
6321 },
6322 "response_verbiage": {
6323 "maxlength": "200"
6324 },
6325 "settled_stamp": {
6326 "maxlength": 20
6327 },
6328 "settled_log_id": {
6329 "digits": true,
6330 "maxlength": "10"
6331 },
6332 "submitted_stamp": {
6333 "maxlength": 20
6334 },
6335 "submitted_log_id": {
6336 "digits": true,
6337 "maxlength": "10"
6338 },
6339 "rejected_stamp": {
6340 "maxlength": 20
6341 },
6342 "rejected_log_id": {
6343 "digits": true,
6344 "maxlength": "10"
6345 },
6346 "rejected_reason": {
6347 "maxlength": "50"
6348 },
6349 "void_stamp": {
6350 "maxlength": 20
6351 },
6352 "void_log_id": {
6353 "digits": true,
6354 "maxlength": "10"
6355 },
6356 "edf_submitted_stamp": {
6357 "maxlength": 20
6358 },
6359 "edf_submitted_log_id": {
6360 "digits": true,
6361 "maxlength": "10"
6362 },
6363 "ach_funding_status": {
6364 "maxlength": "1"
6365 },
6366 "ach_funding_error": {
6367 "maxlength": "255"
6368 },
6369 "ach_funding_stamp": {
6370 "maxlength": 20
6371 },
6372 "ach_funding_log_id": {
6373 "digits": true,
6374 "maxlength": "10"
6375 },
6376 "ach_reject_stamp": {
6377 "maxlength": 20
6378 },
6379 "ach_reject_log_id": {
6380 "digits": true,
6381 "maxlength": "10"
6382 },
6383 "ach_reject_reason": {
6384 "maxlength": "255"
6385 },
6386 "ach_reject_id": {
6387 "digits": true,
6388 "maxlength": "10"
6389 },
6390 "ach_reject_submitted_stamp": {
6391 "maxlength": 20
6392 },
6393 "ach_reject_submitted_log_id": {
6394 "digits": true,
6395 "maxlength": "10"
6396 },
6397 "ach_reject_collected_stamp": {
6398 "maxlength": 20
6399 },
6400 "ach_reject_collected_log_id": {
6401 "digits": true,
6402 "maxlength": "10"
6403 },
6404 "ach_reject_collected_status": {
6405 "maxlength": "2"
6406 }
6407 },
6408 "formValidationMessages": {
6409 "transaction_id": {
6410 "digits": "Transaction ID must be numeric",
6411 "maxlength": "Transaction ID maximum length is 20 digits"
6412 },
6413 "stamp": {
6414 "maxlength": "Date\/Time maximum length is 20 characters"
6415 },
6416 "partner_id": {
6417 "digits": "Partner ID must be numeric",
6418 "maxlength": "Partner ID maximum length is 10 digits"
6419 },
6420 "institution_id": {
6421 "digits": "Institution ID must be numeric",
6422 "maxlength": "Institution ID maximum length is 9 digits"
6423 },
6424 "merchant_id": {
6425 "digits": "Merchant ID must be numeric",
6426 "maxlength": "Merchant ID maximum length is 20 digits"
6427 },
6428 "terminal_id": {
6429 "digits": "Terminal ID must be numeric",
6430 "maxlength": "Terminal ID maximum length is 10 digits"
6431 },
6432 "auth_platform_id": {
6433 "maxlength": "Auth Platform maximum length is 255 characters"
6434 },
6435 "consumer_id": {
6436 "digits": "Consumer ID must be numeric",
6437 "maxlength": "Consumer ID maximum length is 10 digits"
6438 },
6439 "email_address": {
6440 "emailFull": "Email Address must be in the format user@domain.com",
6441 "maxlength": "Email Address maximum length is 255 characters"
6442 },
6443 "desc": {
6444 "maxlength": "Transaction maximum length is 50 characters"
6445 },
6446 "desc2": {
6447 "maxlength": "API maximum length is 50 characters"
6448 },
6449 "total_amount": {
6450 "number": "Amount must be a valid amount",
6451 "maxlength": "Amount maximum length is 8 characters"
6452 },
6453 "approved": {
6454 "digits": "Approved must be numeric",
6455 "maxlength": "Approved maximum length is 5 digits"
6456 },
6457 "approval_code": {
6458 "maxlength": "Approval Code maximum length is 6 characters"
6459 },
6460 "action_code": {
6461 "digits": "Action Code must be numeric",
6462 "maxlength": "Action Code maximum length is 10 digits"
6463 },
6464 "response_code": {
6465 "maxlength": "Response Code maximum length is 3 characters"
6466 },
6467 "response_verbiage": {
6468 "maxlength": "Response Verbiage maximum length is 200 characters"
6469 },
6470 "settled_stamp": {
6471 "maxlength": "Settled Date\/Time maximum length is 20 characters"
6472 },
6473 "settled_log_id": {
6474 "digits": "Settled Log ID must be numeric",
6475 "maxlength": "Settled Log ID maximum length is 10 digits"
6476 },
6477 "submitted_stamp": {
6478 "maxlength": "Submitted Date\/Time maximum length is 20 characters"
6479 },
6480 "submitted_log_id": {
6481 "digits": "Submitted Log ID must be numeric",
6482 "maxlength": "Submitted Log ID maximum length is 10 digits"
6483 },
6484 "rejected_stamp": {
6485 "maxlength": "Rejected Date\/Time maximum length is 20 characters"
6486 },
6487 "rejected_log_id": {
6488 "digits": "Rejected Log ID must be numeric",
6489 "maxlength": "Rejected Log ID maximum length is 10 digits"
6490 },
6491 "rejected_reason": {
6492 "maxlength": "Rejected Reason maximum length is 50 characters"
6493 },
6494 "void_stamp": {
6495 "maxlength": "Void Date\/Time maximum length is 20 characters"
6496 },
6497 "void_log_id": {
6498 "digits": "Void Log ID must be numeric",
6499 "maxlength": "Void Log ID maximum length is 10 digits"
6500 },
6501 "edf_submitted_stamp": {
6502 "maxlength": "EDF Submitted Date\/Time maximum length is 20 characters"
6503 },
6504 "edf_submitted_log_id": {
6505 "digits": "EDF Submitted Log ID must be numeric",
6506 "maxlength": "EDF Submitted Log ID maximum length is 10 digits"
6507 },
6508 "ach_funding_status": {
6509 "maxlength": "ACH Funding Status maximum length is 1 characters"
6510 },
6511 "ach_funding_error": {
6512 "maxlength": "ACH Funding Status Error maximum length is 255 characters"
6513 },
6514 "ach_funding_stamp": {
6515 "maxlength": "ACH Funding Stamp maximum length is 20 characters"
6516 },
6517 "ach_funding_log_id": {
6518 "digits": "ACH Funding Log ID must be numeric",
6519 "maxlength": "ACH Funding Log ID maximum length is 10 digits"
6520 },
6521 "ach_reject_stamp": {
6522 "maxlength": "ACH Reject Stamp maximum length is 20 characters"
6523 },
6524 "ach_reject_log_id": {
6525 "digits": "ACH Reject Log ID must be numeric",
6526 "maxlength": "ACH Reject Log ID maximum length is 10 digits"
6527 },
6528 "ach_reject_reason": {
6529 "maxlength": "ACH Reject Reason maximum length is 255 characters"
6530 },
6531 "ach_reject_id": {
6532 "digits": "ACH Reject ID must be numeric",
6533 "maxlength": "ACH Reject ID maximum length is 10 digits"
6534 },
6535 "ach_reject_submitted_stamp": {
6536 "maxlength": "ACH Reject Submitted Stamp maximum length is 20 characters"
6537 },
6538 "ach_reject_submitted_log_id": {
6539 "digits": "ACH Reject Submitted Log ID must be numeric",
6540 "maxlength": "ACH Reject Submitted Log ID maximum length is 10 digits"
6541 },
6542 "ach_reject_collected_stamp": {
6543 "maxlength": "ACH Reject Collected Stamp maximum length is 20 characters"
6544 },
6545 "ach_reject_collected_log_id": {
6546 "digits": "ACH Reject Collected Log ID must be numeric",
6547 "maxlength": "ACH Reject Collected Log ID maximum length is 10 digits"
6548 },
6549 "ach_reject_collected_status": {
6550 "maxlength": "ACH Reject Collected Status maximum length is 2 characters"
6551 }
6552 }
6553 },
6554 "portal\/users": {
6555 "formValidationRules": {
6556 "login_id": {
6557 "digits": true,
6558 "maxlength": "10"
6559 },
6560 "username": {
6561 "emailFull": true,
6562 "maxlength": "255"
6563 },
6564 "password": {
6565 "maxlength": "2000"
6566 },
6567 "first_name": {
6568 "maxlength": "255"
6569 },
6570 "last_name": {
6571 "maxlength": "255"
6572 },
6573 "role": {
6574 "inclusion": {
6575 "within": {
6576 "CONSUMER": "CONSUMER",
6577 "MERCHANT": "MERCHANT",
6578 "ADMIN": "ADMIN",
6579 "PROCESSOR": "PROCESSOR",
6580 "PARTNER": "PARTNER",
6581 "CUSTOMERSERVICE": "CUSTOMERSERVICE",
6582 "INTERNALSERVICES": "INTERNALSERVICES"
6583 }
6584 }
6585 },
6586 "role_id": {
6587 "digits": true,
6588 "maxlength": "19"
6589 },
6590 "network_id": {
6591 "digits": true,
6592 "maxlength": "10"
6593 },
6594 "usergroup_id": {
6595 "digits": true,
6596 "maxlength": "10"
6597 },
6598 "partner_filter": {
6599 "maxlength": "1000"
6600 },
6601 "institution_filter": {
6602 "maxlength": "1000"
6603 },
6604 "merchant_filter": {
6605 "maxlength": "1000"
6606 },
6607 "active": {
6608 "checkbox": true
6609 }
6610 },
6611 "formValidationMessages": {
6612 "login_id": {
6613 "digits": "User ID must be numeric",
6614 "maxlength": "User ID maximum length is 10 digits"
6615 },
6616 "username": {
6617 "emailFull": "Email Address must be in the format user@domain.com",
6618 "maxlength": "Email Address maximum length is 255 characters"
6619 },
6620 "password": {
6621 "maxlength": "Password is Required and should contain 6 to 10 characters with at least one uppercase alpha, one lowercase alpha, one numeric character, and a special character ( ! - + @ # $ % )"
6622 },
6623 "first_name": {
6624 "maxlength": "First Name maximum length is 255 characters"
6625 },
6626 "last_name": {
6627 "maxlength": "Last Name maximum length is 255 characters"
6628 },
6629 "role": {
6630 "inclusion": "Role must be CONSUMER, MERCHANT, ADMIN, PROCESSOR, PARTNER, CUSTOMERSERVICE, or INTERNALSERVICES."
6631 },
6632 "role_id": {
6633 "digits": "Account ID must be numeric",
6634 "maxlength": "Account ID maximum length is 19 digits"
6635 },
6636 "network_id": {
6637 "digits": "Network ID must be numeric",
6638 "maxlength": "Network ID maximum length is 10 digits"
6639 },
6640 "usergroup_id": {
6641 "digits": "User Group must be numeric",
6642 "maxlength": "User Group maximum length is 10 digits"
6643 },
6644 "partner_filter": {
6645 "maxlength": "Partner Filter maximum length is 1000 characters"
6646 },
6647 "institution_filter": {
6648 "maxlength": "Institution Filter maximum length is 1000 characters"
6649 },
6650 "merchant_filter": {
6651 "maxlength": "Merchant Filter maximum length is 1000 characters"
6652 },
6653 "active": {
6654 "checkbox": "Active must be checked or unchecked"
6655 }
6656 }
6657 },
6658 "portal\/usersgroup": {
6659 "formValidationRules": {
6660 "usergroup_id": {
6661 "digits": true,
6662 "maxlength": "10"
6663 },
6664 "desc": {
6665 "maxlength": "100"
6666 },
6667 "role": {
6668 "inclusion": {
6669 "within": {
6670 "CONSUMER": "CONSUMER",
6671 "MERCHANT": "MERCHANT",
6672 "ADMIN": "ADMIN",
6673 "PROCESSOR": "PROCESSOR",
6674 "PARTNER": "PARTNER",
6675 "CUSTOMERSERVICE": "CUSTOMERSERVICE"
6676 }
6677 }
6678 }
6679 },
6680 "formValidationMessages": {
6681 "usergroup_id": {
6682 "digits": "User Group ID must be numeric",
6683 "maxlength": "User Group ID maximum length is 10 digits"
6684 },
6685 "desc": {
6686 "maxlength": "Name maximum length is 100 characters"
6687 },
6688 "role": {
6689 "inclusion": "Role must be CONSUMER, MERCHANT, ADMIN, PROCESSOR, PARTNER, or CUSTOMERSERVICE"
6690 }
6691 }
6692 },
6693 "portal\/profile": {
6694 "formValidationRules": {
6695 "consumer_id": {
6696 "digits": true,
6697 "maxlength": "10"
6698 },
6699 "email_address": {
6700 "emailFull": true,
6701 "maxlength": "255"
6702 },
6703 "fname": {
6704 "maxlength": "30"
6705 },
6706 "lname": {
6707 "maxlength": "30"
6708 }
6709 },
6710 "formValidationMessages": {
6711 "consumer_id": {
6712 "digits": "Consumer ID must be numeric",
6713 "maxlength": "Consumer ID maximum length is 10 digits"
6714 },
6715 "email_address": {
6716 "emailFull": "Email Address must be in the format user@domain.com",
6717 "maxlength": "Email Address maximum length is 255 characters"
6718 },
6719 "fname": {
6720 "maxlength": "First Name maximum length is 30 characters"
6721 },
6722 "lname": {
6723 "maxlength": "Last Name maximum length is 30 characters"
6724 }
6725 }
6726 },
6727 "portal\/useraccesslog": {
6728 "formValidationRules": {
6729 "user_access_log_id": {
6730 "digits": true,
6731 "maxlength": "10"
6732 },
6733 "login_id": {
6734 "digits": true,
6735 "maxlength": "10"
6736 },
6737 "username": {
6738 "maxlength": "255"
6739 },
6740 "tracking_id": {
6741 "maxlength": "100"
6742 },
6743 "login_stamp": {
6744 "maxlength": 20
6745 },
6746 "logout_stamp": {
6747 "maxlength": 20
6748 },
6749 "user_agent": {
6750 "maxlength": "200"
6751 },
6752 "ip_address": {
6753 "maxlength": "100"
6754 }
6755 },
6756 "formValidationMessages": {
6757 "user_access_log_id": {
6758 "digits": "User Access Log ID must be numeric",
6759 "maxlength": "User Access Log ID maximum length is 10 digits"
6760 },
6761 "login_id": {
6762 "digits": "User ID must be numeric",
6763 "maxlength": "User ID maximum length is 10 digits"
6764 },
6765 "username": {
6766 "maxlength": "Email Address maximum length is 255 characters"
6767 },
6768 "tracking_id": {
6769 "maxlength": "Tracking ID maximum length is 100 characters"
6770 },
6771 "login_stamp": {
6772 "maxlength": "Login Date\/Time maximum length is 20 characters"
6773 },
6774 "logout_stamp": {
6775 "maxlength": "Logout Date\/Time maximum length is 20 characters"
6776 },
6777 "user_agent": {
6778 "maxlength": "User Agent maximum length is 200 characters"
6779 },
6780 "ip_address": {
6781 "maxlength": "IP Address maximum length is 100 characters"
6782 }
6783 }
6784 },
6785 "jc_addmerchantterminal": {
6786 "formValidationRules": {
6787 "partner_id": {
6788 "digits": true
6789 },
6790 "location_number": {
6791 "maxlength": 5
6792 },
6793 "account_number": {
6794 "maxlength": 20
6795 },
6796 "name": {
6797 "maxlength": 100
6798 },
6799 "address1": {
6800 "maxlength": 100
6801 },
6802 "address2": {
6803 "maxlength": 100
6804 },
6805 "city": {
6806 "maxlength": 50
6807 },
6808 "state": {
6809 "maxlength": 2
6810 },
6811 "zipcode": {
6812 "maxlength": 10
6813 },
6814 "institution_id": {
6815 "digits": true
6816 },
6817 "external_merchant_id": {
6818 "maxlength": 15
6819 },
6820 "external_terminal_id": {
6821 "maxlength": 8
6822 },
6823 "intercept_terminal_id": {
6824 "maxlength": 6
6825 },
6826 "active": {
6827 "maxlength": 1
6828 },
6829 "ach_trans_type": {
6830 "maxlength": 3,
6831 "inclusion": {
6832 "within": {
6833 "WEB": "WEB",
6834 "POS": "POS"
6835 }
6836 }
6837
6838 },
6839 "ach_statement_id": {
6840 "maxlength": 15
6841 },
6842 "industry_type": {
6843 "maxlength": 1,
6844 "inclusion": {
6845 "within": {
6846 "D": "D",
6847 "E": "E",
6848 "F": "F",
6849 "G": "G",
6850 "P": "P",
6851 "Q": "Q",
6852 "T": "T"
6853 }
6854 }
6855
6856 },
6857 "file_code": {
6858 "maxlength":4
6859 }
6860 },
6861 "formValidationMessages": {
6862 "partner_id": "Invalid partner_id",
6863
6864 "location_number": "Invalid location_number",
6865
6866 "account_number": "Invalid account_number",
6867
6868 "name": "Invalid name",
6869
6870 "address1": "Invalid address1",
6871
6872 "address2": "Invalid address2",
6873
6874 "city": "Invalid city",
6875
6876 "state": "Invalid state",
6877
6878 "zipcode": "Invalid zipcode",
6879
6880 "institution_id": "Invalid institution_id",
6881
6882 "external_merchant_id": "Invalid external_merchant_id",
6883
6884 "external_terminal_id": "Invalid external_terminal_id",
6885
6886 "intercept_terminal_id": "Invalid intercept_terminal_id",
6887
6888 "active": "Invalid active flag",
6889
6890 "ach_trans_type": "Invalid ach_trans_type",
6891
6892 "ach_statement_id": "Invalid ach_statement_id",
6893
6894 "industry_type": "Invalid industry_type",
6895
6896 "file_code": "Invalid file_code"
6897 }
6898 },
6899
6900 "portal\/technicalcontacts": {
6901
6902 "formValidationRules": {
6903 "contact_id": {
6904 "required": false,
6905 "digits": true
6906 },
6907 "network_id": {
6908 "digits": true,
6909 "maxlength": "10"
6910 },
6911 "contact_name": {
6912 "required": true,
6913 "minlength": 1,
6914 "maxlength": 30
6915 },
6916 "contact_email": {
6917 "required": false,
6918 "emailFull": true,
6919 "minlength": 5,
6920 "maxlength": 50
6921 },
6922 "contact_mobile": {
6923 "phoneUS": true
6924 }
6925 },
6926 "formValidationMessages": {
6927 "contact_id": {
6928 "digits": "Contact ID must be numeric"
6929 },
6930 "network_id": {
6931 "digits": "Network ID must be numeric",
6932 "maxlength": "Network ID maximum length is 10 digits"
6933 },
6934 "lname": {
6935 "required": "Contact name is Required",
6936 "maxlength": "Contact name must be no Longer Than 30 Characters"
6937 },
6938 "contact_email": {
6939 "emailFull": "Contact email address must be in the format user@domain.com"
6940 },
6941 "contact_mobile": {
6942 "phoneUS": "Mobile phone number Must be a Valid Phone Number"
6943 }
6944 }
6945 },
6946 "fmccEnrollment": {
6947 "formValidationRules": {
6948 "consumer_id": {
6949 "required": true
6950 },
6951 "partner_id": {
6952 "required": true
6953 },
6954 "id_number": {
6955 "minlength": 3,
6956 "maxlength": 20
6957 },
6958 "address1": {
6959 "required": true,
6960 "minlength": 1,
6961 "maxlength": 50
6962 },
6963 "address2": {
6964 "minlength": 1,
6965 "maxlength": 50
6966 },
6967 "apartment_number": {
6968 "required": false,
6969 "minlength": 0,
6970 "maxlength": 50
6971 },
6972 "street_number": {
6973 "minlength": 1,
6974 "maxlength": 50
6975 },
6976 "city": {
6977 "required": true,
6978 "minlength": 1,
6979 "maxlength": 50
6980 },
6981 "state": {
6982 "required": true,
6983 "minlength": 2,
6984 "maxlength": 2
6985 },
6986 "zip": {
6987 "required": true,
6988 "minlength": 5,
6989 "maxlength": 11
6990 },
6991 "dob": {
6992 "required": true
6993 },
6994 "fname": {
6995 "required": true,
6996 "minlength": 1,
6997 "maxlength": 30
6998 },
6999 "mname": {
7000 "required": false,
7001 "minlength": 0,
7002 "maxlength": 30
7003 },
7004 "lname": {
7005 "required": true,
7006 "minlength": 1,
7007 "maxlength": 30
7008 },
7009
7010 "id_type": {
7011 "minlength": 2,
7012 "maxlength": 2
7013 },
7014 "id_state": {
7015 "minlength": 2,
7016 "maxlength": 2
7017 },
7018 "aba": {
7019 "required": true,
7020 "digits": true
7021 },
7022 "dda": {
7023 "required": true,
7024 "digits": true
7025 }
7026
7027 },
7028 "formValidationMessages": {
7029
7030 "id_number": {
7031 "required": "ID Number is Required",
7032 "minlength": "ID Number Must be at Least 3 Digits",
7033 "maxlength": "ID Number Must be no Longer than 20 Digits"
7034 },
7035 "address1": {
7036 "required": "Address1 is Required",
7037 "maxlength": "Address1 Must be no Longer Than 50 Characters"
7038 },
7039 "address2": {
7040 "required": "Address2 is Required",
7041 "maxlength": "Address2 Must be no Longer Than 50 Characters"
7042 },
7043 "street_number": {
7044 "required": "Street Number is Required",
7045 "maxlength": "Street Number Must be no Longer Than 50 Characters"
7046 },
7047 "apartment_number": {
7048 "maxlength": "Apartment Number Must be no Longer Than 50 Characters"
7049 },
7050 "city": {
7051 "required": "City is Required",
7052 "maxlength": "City Must be no Longer Than 50 Characters"
7053 },
7054 "state": {
7055 "required": "State is Required",
7056 "maxlength": "State Must be no Longer Than 2 Characters"
7057 },
7058 "zip": {
7059 "required": "Zip is Required",
7060 "maxlength": "Zip Must be no Longer Than 11 Characters"
7061 },
7062 "fname": {
7063 "required": "First name is Required",
7064 "maxlength": "First name must be no Longer Than 30 Characters"
7065 },
7066 "mname": "Middle name must be no Longer Than 30 Characters",
7067 "lname": {
7068 "required": "Last name is Required",
7069 "maxlength": "Last name must be no Longer Than 30 Characters"
7070 },
7071
7072 "id_type": "ID Type is Required",
7073 "id_state": "ID State is Required",
7074
7075 "aba": {
7076 "required": "Routing Number is Required",
7077 "digits": "Routing Number must be numeric",
7078 "minlength": "Routing Number must be 9 Digits",
7079 "maxlength": "Routing Number must be 9 Digits"
7080 },
7081 "dda": {
7082 "required": "DDA is Required",
7083 "digits": "DDA must be numeric",
7084 "minlength": "DDA must be at least 1 Digit",
7085 "maxlength": "DDA must be less than 30 Digits"
7086 }
7087
7088 }
7089 }
7090
7091}