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
_typing.py has the function conform_record_data_types.
But it only iterates over the top level properties of the object, not any nested properties.
This has two negative consequences;
Types are not normalised for nested values (For example, I am outputting lists of objects with dates on, and those dates are not normalised to strings by the sdk. This causes an error when it later tries to convert them to json).
The check that a property exists in the schema would not be performed for any nested fields either
The text was updated successfully, but these errors were encountered:
_typing.py has the function
conform_record_data_types
.But it only iterates over the top level properties of the object, not any nested properties.
This has two negative consequences;
The text was updated successfully, but these errors were encountered: