Quick answer
The input must be a parseable date-time string.
Invalid Date-Time
The input must be a parseable date-time string. Invalid format or out-of-range values cause validation to fail.
Common causes
- Wrong format (e.g. DD/MM/YYYY without time).
- Invalid date (e.g. 2024-02-30).
How to fix
- Use ISO 8601: YYYY-MM-DDTHH:mm:ss.sssZ or with offset.
- Or RFC 2822: Mon, 15 Jan 2024 14:30:00 GMT.
Examples
Bad
32/01/2024
Good
2024-01-15T14:30:00Z
FAQ
- What is ISO 8601?
- International date-time format: 2024-01-15T14:30:00.000Z (UTC) or 2024-01-15T14:30:00+02:00.
Fix it now
Try in validator (prefill this example)