Others

A few other data types that are available but not entirely built out.

Password

Configures a regular text input field that allows user input. Does NOT function similar to an HTML password field.

Value Precisionis AllowMultiple respected?Has validation?

-

No

Only on length

Password Data Type Definition

{
     "fields" : [
     	{
	   "fieldName": "Pass Word",
	   "label": "pass_word",
	   "required": false,
	   "maxLength": 10000,
	   "editable": true,
	   "dataType": "Password",
	   "allowMultiple": false,
	   "listOfValues": []
	},
        ...
    ]
}  

Credit Card

Configures a regular text input field that allows user input. Does NOT validate a credit card number nor does it prohibit alpha character input.

Value Precisionis AllowMultiple respected?Has validation?

-

No

Only on length

Credit Card Data Type Definition

{
     "fields" : [
     	{
	   "fieldName": "Credit Card",
	   "label": "credit_card",
	   "required": false,
	   "maxLength": 10000,
	   "editable": true,
	   "dataType": "CreditCard",
	   "allowMultiple": false,
	   "listOfValues": []
	},
        ...
    ]
}  

Last updated