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
I'm running a pipeline from tap-zendesk to the Adswerve variant of target-bigquery and it throws ValueError: ‘type’ or ‘anyOf’ are required fields in property: {} when loading Zendesk tickets.
This appears to be caused by this field in the tickets schema because the target requires that the schema be completely defined. Changing the field to specify a type like this resolves the issue for me:
{
"value": {
"type": ["null", "string"]
}
}
I'd be happy to make a PR if that change sounds good.
The text was updated successfully, but these errors were encountered:
I'm running a pipeline from
tap-zendesk
to the Adswerve variant oftarget-bigquery
and it throwsValueError: ‘type’ or ‘anyOf’ are required fields in property: {}
when loading Zendesk tickets.This appears to be caused by this field in the tickets schema because the target requires that the schema be completely defined. Changing the field to specify a type like this resolves the issue for me:
I'd be happy to make a PR if that change sounds good.
The text was updated successfully, but these errors were encountered: