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 happens a lot that from SaaS connectors, we have fields that end up as null under specific circumstances.
We are considering marking all properties as nullable by adding null to their type if they are not a key. For keys we don't want to make them nullable.
It happens a lot that from SaaS connectors, we have fields that end up as
null
under specific circumstances.We are considering marking all properties as nullable by adding
null
to their type if they are not a key. For keys we don't want to make them nullable.This can be done using
traverse_jsonschema
and getting a list of primary keys, and then addingnull
to type of every non-primary-key field. A simple example usage oftraverse_jsonschema
: https://github.com/estuary/airbyte/blob/master/airbyte-to-flow/src/interceptors/fix_document_schema.rs#L197-L210The text was updated successfully, but these errors were encountered: