jan_soubusta
03/31/2023, 1:42 PMif not property_schema:
# Salesforce returns empty schema if the field is of type anyType
# Let's set type to object to allow loading such fields
property_schema['type'] = ['object', 'null']
But the loader fails loading values like 123
to JSONB column (PostgreSQL).
Not sure how to propagate anyType to any targets properly.
Any suggestions how to do it in a generally right way?jan_soubusta
03/31/2023, 1:50 PMjan_soubusta
03/31/2023, 1:50 PM