Fix documentation about importing dates (#19434)

Related to https://github.com/twentyhq/core-team-issues/issues/2364
This commit is contained in:
BOHEUS
2026-04-08 14:48:04 +00:00
committed by GitHub
parent fda3eabb5f
commit 5c867303e0
2 changed files with 4 additions and 6 deletions
@@ -127,12 +127,12 @@ The data doesn't match the expected format for that field type.
#### Date
**Problem:** Unrecognized date format
**Solution:** Use consistent format throughout file
**Solution:** Use `YYYY-MM-DD` format consistently throughout file
```
✓ 2024-03-15 (YYYY-MM-DD - recommended)
03/15/2024 (MM/DD/YYYY)
15/03/2024 (DD/MM/YYYY)
✓ 2024-03-15 (YYYY-MM-DD)
03/15/2024 (MM/DD/YYYY)
15/03/2024 (DD/MM/YYYY)
```
#### Phone
@@ -93,8 +93,6 @@ Address is a **nested field** with multiple columns (some can be left empty):
### Date Fields
Use consistent formatting throughout your file:
- `YYYY-MM-DD` (recommended): `2024-03-15`
- `MM/DD/YYYY`: `03/15/2024`
- `DD/MM/YYYY`: `15/03/2024`
- ISO 8601: `2024-03-15T10:30:00Z`
### Number Fields