> 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/alphanumeric-text/free-text.md).

# Free text

* "allowMultiple" can be set to true, will allow multiple input entries from the user.

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

### Free Text Data Type Definition

```json
{
     "fields": [
        {
            "fieldName": "Notes",
            "label": "notes",
            "required": false,
            "maxLength": 5000,
            "editable": true,
            "dataType": "AlphaNumericText",
            "allowMultiple": true,
            "listOfValues": []
        },
        ...
    ]
}  
```
