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
it breaks the library. The reason is that during the attempt to cast() the values field, it iterates over a set of SchemaTypes to try to cast the value, but then there are no schemas in self.items for values itself (since it's a oneOf) when it matches SchemaType.ARRAY.
The text was updated successfully, but these errors were encountered:
@p1c2u if you want, I can fix this later, feel free to add me as a full contributor to the project if you want so that I can help with the releases and other fixes.
Hi,
If we have the below schema:
and receive a value like this:
it breaks the library. The reason is that during the attempt to
cast()
thevalues
field, it iterates over a set ofSchemaType
s to try to cast the value, but then there are no schemas inself.items
forvalues
itself (since it's aoneOf
) when it matchesSchemaType.ARRAY
.The text was updated successfully, but these errors were encountered: