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
In our mailchimp, we have merge_fields object/field with some sub-fields. The following objects/fields are nested inside merge_fields:
first name
last name
address
phone
birthday
When we run discovery, subfields names and data type are not being included in schema/tap-catalog file.
I run this command to do schema discovery: "{my_directory}\venv_mailchimp\Scripts\tap-mailchimp" --config rsc/dt-tap-config.json --discover > dt-tap-catalog-discovery.json
Schema discovery ouputs tap-catalog.json file, which contains the following:
This is a valid json, but it doesn't specify which fields/objects are nested inside merge_fields and interests and their data types. It returns an undefined object with no properties. As a result, we cannot pipe this output into target-bigquery (either data load fails, or it skips merge_fields and interests fields/objects).
We worked around this issue by modifying merge_fields and interests in tap-catalog and specifying that they are a string.
Is it an issue? Is it intentional and by design?
The text was updated successfully, but these errors were encountered:
In our mailchimp, we have
merge_fields
object/field with some sub-fields. The following objects/fields are nested insidemerge_fields
:When we run discovery, subfields names and data type are not being included in schema/tap-catalog file.
I run this command to do schema discovery:
"{my_directory}\venv_mailchimp\Scripts\tap-mailchimp" --config rsc/dt-tap-config.json --discover > dt-tap-catalog-discovery.json
Schema discovery ouputs tap-catalog.json file, which contains the following:
This is a valid json, but it doesn't specify which fields/objects are nested inside
merge_fields
andinterests
and their data types. It returns an undefined object with no properties. As a result, we cannot pipe this output into target-bigquery (either data load fails, or it skipsmerge_fields
andinterests
fields/objects).We worked around this issue by modifying
merge_fields
andinterests
in tap-catalog and specifying that they are a string.Is it an issue? Is it intentional and by design?
The text was updated successfully, but these errors were encountered: