Hi there! I’m facing a strange issue — <schema fea...
# troubleshooting
d
Hi there! I’m facing a strange issue — schema feature is being ignored by Meltano for some reason, could you point me to a solution? This is my meltano.yml for specific tap and logs from execution:
Copy code
- name: tap-postgres-billing-app
        config:
          database: billing_app
          flattening_enabled: false
          host: redacted
          port: redacted
          user: redacted
        shema:
          data-apple_payment_transactions:
            meta:
              type: [string, 'null']
        select:
        - data-apple_payment_transactions.*
        - data-payment_transactions.*
        - data-user_products.*
        metadata:
          data-apple_payment_transactions:
            replication-method: INCREMENTAL
            replication-key: datetime
          data-payment_transactions:
            replication-method: INCREMENTAL
            replication-key: datetime
          data-user_products:
            replication-method: FULL_TABLE
Copy code
Exception is being thrown for stream_name: data-apple_payment_transactions

Failed validating 'type' in schema['properties']['meta']: {'properties': {}, 'type': ['object', 'null']
e
Hi! I see you have a typo:
shema
instead of
schema
. Hopefully it's just that? 😁
d
Oops, thank you, it indeed was just a typo, silly of me :D