You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a request to support general durations for time offsets to enable pydantic/pydantic#12049.
Currently the Datetime Types type only accept datetimes with hours and minutes while python and 8601 strings support general durations for time offsets that include seconds.
pydantic form: YYYY-MM-DD[T]HH:MM[:SS[.ffffff]][Z or [±]HH[:]MM]
python 3.9 forms:
We've had some timestamps come in with the general durations that included seconds and it blows us up. Supporting the general durations with greater precision is desired.