We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This schema causes a panic:
{ "type": "object", "properties": { "when": { "type": "string", "format": "date-time", "default": "1970-01-01T00:00:00Z" } } }
"DateTime<chrono" is not a valid Ident
If we remove the default, it's fine. Why? This:
default
typify/typify-impl/src/value.rs
Lines 141 to 151 in 99ec168
Instead we need to do what's done here:
typify/typify-impl/src/type_entry.rs
Lines 1617 to 1623 in 99ec168
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This schema causes a panic:
"DateTime<chrono" is not a valid Ident
If we remove the
default
, it's fine. Why? This:typify/typify-impl/src/value.rs
Lines 141 to 151 in 99ec168
Instead we need to do what's done here:
typify/typify-impl/src/type_entry.rs
Lines 1617 to 1623 in 99ec168
The text was updated successfully, but these errors were encountered: