> 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/date.md).

# Date

Allows a date to be chosen via the date picker or by entering a date into the input field.\
Expects a date in the user's format, `MM/DD/YYYY`, `DD/MM/YYYY`, etc.

| Value Precision | is AllowMultiple respected? | Has validation? |
| --------------- | --------------------------- | --------------- |
| -               | No                          | Yes             |

### Date Data Type Definition

```json
{
     "fields" : [
     	{
	    "fieldName": "select date",
            "label": "select_date",
            "required": false,
            "maxLength": 10000,
            "editable": true,
            "dataType": "Date_US",
            "allowMultiple": false,
            "listOfValues": []
	},
        ...
    ]
}  
```
