> For the complete documentation index, see [llms.txt](https://api-docs.rightsline.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.rightsline.com/config/data-types/others.md).

# Others

## Password

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

| Value Precision | is AllowMultiple respected? | Has validation? |
| --------------- | --------------------------- | --------------- |
| -               | No                          | Only on length  |

### Password Data Type Definition

```json
{
     "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 Precision | is AllowMultiple respected? | Has validation? |
| --------------- | --------------------------- | --------------- |
| -               | No                          | Only on length  |

### Credit Card Data Type Definition

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