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
Generic schema generator for M a can't look into instantiations of the polymorphic types, because schema is already generated completely for M a, and is just reused for Foo. So, Maybe as type parameter is next to impossible to get right, as far as I know.
Minimal example:
deps:
Output:
Explanation:
It happens because we have
in J brach, so when generated
J Nothing
, it turns intoJSON, but
contents
field is required.How to fix:
You can write an instance manually, without contents in required
...
...
...
deps:
The text was updated successfully, but these errors were encountered: