Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing some custom properties columns from "Open" table extraction #21

Open
tomasleiva9 opened this issue Sep 17, 2020 · 1 comment
Open

Comments

@tomasleiva9
Copy link

Hi,

I was wondering if there's a way to not include a few custom properties in the Open table.
Also, choose what custom property list will be replicated would be good as well.

Is there a way to do it in Stitch integration settings?

Thanks
Tomás

@gmfennema
Copy link

Hey @tomasleiva9, you should be able to go into tap_klaviyo > schemas > open.json and edit which fields are being included or excluded. Here is an example of adding/removing the email subject from the event properties:

Including the subject

"event_properties": {
      "type": "object",
      "properties": {        
        "event_id": {
          "type": "string"
        },
        "Subject": {
          "type": "string"
        }
      }

Excluding the subject

"event_properties": {
      "type": "object",
      "properties": {        
        "event_id": {
          "type": "string"
        }
      }

Make sure when you alter the schema to then re-install the package with:
python3 setup.py install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants