From 5a5382dd078cc5b8cbe618dac9c108db58f08d42 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Fri, 17 Nov 2023 21:46:06 -0600 Subject: [PATCH 1/7] bug/default-cols --- CHANGELOG.md | 4 ++++ dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- macros/get_account_columns.sql | 2 -- macros/get_credit_balance_adjustment_columns.sql | 1 - macros/get_invoice_columns.sql | 1 - macros/get_invoice_item_columns.sql | 1 - macros/get_product_rate_plan_charge_columns.sql | 1 - macros/get_rate_plan_charge_columns.sql | 1 - macros/get_refund_columns.sql | 2 -- macros/get_subscription_columns.sql | 1 - macros/get_taxation_item_columns.sql | 3 --- 12 files changed, 6 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cef03e6..656b162 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# dbt_zuora_source v0.2.1 +[PR #11](https://github.com/fivetran/dbt_zuora_source/pull/11) includes the following update: +- Updated default column macros to remove columns not used in their associated staging models. This prevents conflicts when bringing in this columns via the passthrough functionality. + # dbt_zuora_source v0.2.0 [PR #9](https://github.com/fivetran/dbt_zuora_source/pull/9) includes the following update: diff --git a/dbt_project.yml b/dbt_project.yml index 051af1a..32e3ac0 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'zuora_source' -version: '0.2.0' +version: '0.2.1' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 5311809..6e51b2e 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'zuora_source_integration_tests' -version: '0.2.0' +version: '0.2.1' config-version: 2 profile: 'integration_tests' diff --git a/macros/get_account_columns.sql b/macros/get_account_columns.sql index b20dbd0..81b829d 100644 --- a/macros/get_account_columns.sql +++ b/macros/get_account_columns.sql @@ -29,8 +29,6 @@ {"name": "tax_exempt_status", "datatype": dbt.type_string()}, {"name": "total_debit_memo_balance", "datatype": dbt.type_float()}, {"name": "total_invoice_balance", "datatype": dbt.type_float()}, - {"name": "unapplied_balance", "datatype": dbt.type_float()}, - {"name": "unapplied_credit_memo_amount", "datatype": dbt.type_float()}, {"name": "updated_by_id", "datatype": dbt.type_string()}, {"name": "updated_date", "datatype": dbt.type_timestamp()}, {"name": "vatid", "datatype": dbt.type_string()} diff --git a/macros/get_credit_balance_adjustment_columns.sql b/macros/get_credit_balance_adjustment_columns.sql index 8975390..b1f8e63 100644 --- a/macros/get_credit_balance_adjustment_columns.sql +++ b/macros/get_credit_balance_adjustment_columns.sql @@ -14,7 +14,6 @@ {"name": "comment", "datatype": dbt.type_string()}, {"name": "created_by_id", "datatype": dbt.type_string()}, {"name": "created_date", "datatype": dbt.type_timestamp()}, - {"name": "customer_cash_on_account_accounting_code_id", "datatype": dbt.type_string()}, {"name": "default_payment_method_id", "datatype": dbt.type_string()}, {"name": "exchange_rate", "datatype": dbt.type_float()}, {"name": "exchange_rate_date", "datatype": "date"}, diff --git a/macros/get_invoice_columns.sql b/macros/get_invoice_columns.sql index 0af2cbf..99e0b7c 100644 --- a/macros/get_invoice_columns.sql +++ b/macros/get_invoice_columns.sql @@ -43,7 +43,6 @@ {"name": "target_date", "datatype": "date"}, {"name": "tax_amount", "datatype": dbt.type_float()}, {"name": "tax_status", "datatype": dbt.type_string()}, - {"name": "template_id", "datatype": dbt.type_string()}, {"name": "transaction_currency", "datatype": dbt.type_string()}, {"name": "transferred_to_accounting", "datatype": dbt.type_string()}, {"name": "updated_by_id", "datatype": dbt.type_string()}, diff --git a/macros/get_invoice_item_columns.sql b/macros/get_invoice_item_columns.sql index 7eecba4..773117b 100644 --- a/macros/get_invoice_item_columns.sql +++ b/macros/get_invoice_item_columns.sql @@ -16,7 +16,6 @@ {"name": "charge_name", "datatype": dbt.type_string()}, {"name": "created_by_id", "datatype": dbt.type_string()}, {"name": "created_date", "datatype": dbt.type_timestamp()}, - {"name": "default_payment_method_id", "datatype": dbt.type_string()}, {"name": "deferred_revenue_accounting_code_id", "datatype": dbt.type_string()}, {"name": "exchange_rate", "datatype": dbt.type_float()}, {"name": "exchange_rate_date", "datatype": "date"}, diff --git a/macros/get_product_rate_plan_charge_columns.sql b/macros/get_product_rate_plan_charge_columns.sql index 1e45e7c..7296620 100644 --- a/macros/get_product_rate_plan_charge_columns.sql +++ b/macros/get_product_rate_plan_charge_columns.sql @@ -30,7 +30,6 @@ {"name": "name", "datatype": dbt.type_string()}, {"name": "product_id", "datatype": dbt.type_string()}, {"name": "product_rate_plan_id", "datatype": dbt.type_string()}, - {"name": "recognized_revenue_accounting_code_id", "datatype": dbt.type_string()}, {"name": "specific_billing_period", "datatype": dbt.type_int()}, {"name": "tax_mode", "datatype": dbt.type_string()}, {"name": "taxable", "datatype": "boolean"}, diff --git a/macros/get_rate_plan_charge_columns.sql b/macros/get_rate_plan_charge_columns.sql index 044323d..b1ca2a0 100644 --- a/macros/get_rate_plan_charge_columns.sql +++ b/macros/get_rate_plan_charge_columns.sql @@ -63,7 +63,6 @@ {"name": "specific_end_date", "datatype": "date"}, {"name": "specific_list_price_base", "datatype": dbt.type_int()}, {"name": "subscription_id", "datatype": dbt.type_string()}, - {"name": "subscription_owner_id", "datatype": dbt.type_string()}, {"name": "tcv", "datatype": dbt.type_float()}, {"name": "tcvhome_currency", "datatype": dbt.type_float()}, {"name": "transaction_currency", "datatype": dbt.type_string()}, diff --git a/macros/get_refund_columns.sql b/macros/get_refund_columns.sql index 9963913..47baf75 100644 --- a/macros/get_refund_columns.sql +++ b/macros/get_refund_columns.sql @@ -12,8 +12,6 @@ {"name": "id", "datatype": dbt.type_string()}, {"name": "method_type", "datatype": dbt.type_string()}, {"name": "payment_method_id", "datatype": dbt.type_string()}, - {"name": "reason_code", "datatype": dbt.type_string()}, - {"name": "reference_id", "datatype": dbt.type_string()}, {"name": "refund_date", "datatype": "date"}, {"name": "refund_number", "datatype": dbt.type_string()}, {"name": "refund_transaction_time", "datatype": dbt.type_timestamp()}, diff --git a/macros/get_subscription_columns.sql b/macros/get_subscription_columns.sql index cba7654..d0f894b 100644 --- a/macros/get_subscription_columns.sql +++ b/macros/get_subscription_columns.sql @@ -30,7 +30,6 @@ {"name": "parent_account_id", "datatype": dbt.type_string()}, {"name": "payment_term", "datatype": dbt.type_string()}, {"name": "previous_subscription_id", "datatype": dbt.type_string()}, - {"name": "renewal_setting", "datatype": dbt.type_string()}, {"name": "renewal_term", "datatype": dbt.type_int()}, {"name": "renewal_term_period_type", "datatype": dbt.type_string()}, {"name": "revision", "datatype": dbt.type_string()}, diff --git a/macros/get_taxation_item_columns.sql b/macros/get_taxation_item_columns.sql index cd3575b..14f95cb 100644 --- a/macros/get_taxation_item_columns.sql +++ b/macros/get_taxation_item_columns.sql @@ -30,7 +30,6 @@ {"name": "rate_plan_charge_id", "datatype": dbt.type_string()}, {"name": "rate_plan_id", "datatype": dbt.type_string()}, {"name": "sales_tax_payable_accounting_code_id", "datatype": dbt.type_string()}, - {"name": "seller_registration", "datatype": dbt.type_string()}, {"name": "sold_to_contact_id", "datatype": dbt.type_string()}, {"name": "subscription_id", "datatype": dbt.type_string()}, {"name": "tax_amount", "datatype": dbt.type_float()}, @@ -39,9 +38,7 @@ {"name": "tax_description", "datatype": dbt.type_string()}, {"name": "tax_mode", "datatype": dbt.type_string()}, {"name": "tax_rate", "datatype": dbt.type_float()}, - {"name": "tax_rate_description", "datatype": dbt.type_string()}, {"name": "tax_rate_type", "datatype": dbt.type_string()}, - {"name": "tax_rule_id", "datatype": dbt.type_string()}, {"name": "transaction_currency", "datatype": dbt.type_string()}, {"name": "updated_by_id", "datatype": dbt.type_string()}, {"name": "updated_date", "datatype": dbt.type_timestamp()} From f3d18586876c17bf63176c1d45b5af290942cac6 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Sat, 18 Nov 2023 02:22:35 -0600 Subject: [PATCH 2/7] update seeds & regen docs --- docs/catalog.json | 2 +- docs/index.html | 24 +++++++++---------- docs/manifest.json | 2 +- docs/run_results.json | 2 +- .../seeds/zuora_amendment_data.csv | 13 +++++----- .../seeds/zuora_taxation_item_data.csv | 13 +++++----- 6 files changed, 29 insertions(+), 27 deletions(-) diff --git a/docs/catalog.json b/docs/catalog.json index ae7a362..4744476 100644 --- a/docs/catalog.json +++ b/docs/catalog.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.5.2", "generated_at": "2023-08-16T22:53:24.754312Z", "invocation_id": "ba0d44d1-e390-4aba-8770-37a36da47cf3", "env": {}}, "nodes": {"seed.zuora_source_integration_tests.zuora_account_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_account_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_account_data"}, "seed.zuora_source_integration_tests.zuora_amendment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_amendment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_amendment_data"}, "seed.zuora_source_integration_tests.zuora_contact_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_contact_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_contact_data"}, "seed.zuora_source_integration_tests.zuora_credit_balance_adjustment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_credit_balance_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_credit_balance_adjustment_data"}, "seed.zuora_source_integration_tests.zuora_invoice_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_data"}, "seed.zuora_source_integration_tests.zuora_invoice_item_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_item_data"}, "seed.zuora_source_integration_tests.zuora_invoice_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_payment_data"}, "seed.zuora_source_integration_tests.zuora_order_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_order_data"}, "seed.zuora_source_integration_tests.zuora_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_payment_data"}, "seed.zuora_source_integration_tests.zuora_payment_method_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_method_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_payment_method_data"}, "seed.zuora_source_integration_tests.zuora_product_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_data"}, "seed.zuora_source_integration_tests.zuora_product_rate_plan_charge_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_rate_plan_charge_data"}, "seed.zuora_source_integration_tests.zuora_product_rate_plan_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_rate_plan_data"}, "seed.zuora_source_integration_tests.zuora_rate_plan_charge_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_rate_plan_charge_data"}, "seed.zuora_source_integration_tests.zuora_rate_plan_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_rate_plan_data"}, "seed.zuora_source_integration_tests.zuora_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_refund_data"}, "seed.zuora_source_integration_tests.zuora_refund_invoice_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_refund_invoice_payment_data"}, "seed.zuora_source_integration_tests.zuora_subscription_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_subscription_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_subscription_data"}, "seed.zuora_source_integration_tests.zuora_taxation_item_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_taxation_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_taxation_item_data"}, "model.zuora_source.stg_zuora__account": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "account_number": {"type": "text", "index": 2, "name": "account_number", "comment": null}, "auto_pay": {"type": "boolean", "index": 3, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 4, "name": "balance", "comment": null}, "batch": {"type": "text", "index": 5, "name": "batch", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 6, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 10, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 11, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 14, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 15, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 17, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 18, "name": "parent_account_id", "comment": null}, "payment_term": {"type": "text", "index": 19, "name": "payment_term", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 20, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 21, "name": "status", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 22, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 23, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_status": {"type": "text", "index": 24, "name": "tax_exempt_status", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 25, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 26, "name": "total_invoice_balance", "comment": null}, "updated_by_id": {"type": "text", "index": 27, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 28, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 29, "name": "vatid", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 30, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__account"}, "model.zuora_source.stg_zuora__account_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__account_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__account_tmp"}, "model.zuora_source.stg_zuora__amendment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__amendment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"amendment_id": {"type": "text", "index": 1, "name": "amendment_id", "comment": null}, "auto_renew": {"type": "integer", "index": 2, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 3, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 4, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 5, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 8, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 9, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 10, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 11, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 12, "name": "effective_date", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 14, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 15, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 16, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 17, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 18, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 19, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 20, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 21, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 22, "name": "status", "comment": null}, "subscription_id": {"type": "text", "index": 23, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 24, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 25, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 26, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 27, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 30, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__amendment"}, "model.zuora_source.stg_zuora__amendment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__amendment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__amendment_tmp"}, "model.zuora_source.stg_zuora__contact": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 3, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 4, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 5, "name": "city", "comment": null}, "country": {"type": "text", "index": 6, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 7, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 9, "name": "description", "comment": null}, "first_name": {"type": "text", "index": 10, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 11, "name": "last_name", "comment": null}, "postal_code": {"type": "text", "index": 12, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "updated_by_id": {"type": "text", "index": 14, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 15, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 16, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 17, "name": "work_phone", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 18, "name": "is_most_recent_record", "comment": null}, "is_most_recent_account_contact": {"type": "boolean", "index": 19, "name": "is_most_recent_account_contact", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__contact"}, "model.zuora_source.stg_zuora__contact_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__contact_tmp"}, "model.zuora_source.stg_zuora__credit_balance_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__credit_balance_adjustment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_balance_adjustment_id": {"type": "text", "index": 1, "name": "credit_balance_adjustment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "adjustment_date": {"type": "date", "index": 5, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 7, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 9, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 10, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 14, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 15, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 16, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 17, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 18, "name": "journal_entry_id", "comment": null}, "number": {"type": "text", "index": 19, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 20, "name": "parent_account_id", "comment": null}, "reason_code": {"type": "text", "index": 21, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 22, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 23, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 24, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 25, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 26, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 27, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 28, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 29, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 30, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 31, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 32, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 33, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__credit_balance_adjustment"}, "model.zuora_source.stg_zuora__credit_balance_adjustment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__credit_balance_adjustment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__credit_balance_adjustment_tmp"}, "model.zuora_source.stg_zuora__invoice": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "text", "index": 1, "name": "invoice_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 3, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 5, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 6, "name": "amount_without_tax", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 7, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 8, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 11, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 14, "name": "credit_balance_adjustment_amount", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 15, "name": "credit_memo_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 16, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 17, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 18, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 19, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 21, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 22, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 23, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 24, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 25, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 26, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 27, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 28, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 29, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 30, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 31, "name": "posted_date", "comment": null}, "refund_amount": {"type": "integer", "index": 32, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 33, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 34, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 35, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 36, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 38, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 39, "name": "tax_amount", "comment": null}, "tax_status": {"type": "integer", "index": 40, "name": "tax_status", "comment": null}, "transaction_currency": {"type": "text", "index": 41, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 42, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 43, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 44, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 45, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice"}, "model.zuora_source.stg_zuora__invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_item_id": {"type": "text", "index": 1, "name": "invoice_item_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 6, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 7, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "charge_amount": {"type": "double precision", "index": 9, "name": "charge_amount", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 10, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 11, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 12, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 13, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 14, "name": "created_date", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 15, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 16, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 17, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 18, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 19, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 20, "name": "journal_entry_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 22, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 23, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 24, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 25, "name": "product_rate_plan_id", "comment": null}, "quantity": {"type": "double precision", "index": 26, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 27, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 28, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 29, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 30, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 31, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 32, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 33, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 34, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 35, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 36, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 37, "name": "tax_amount", "comment": null}, "tax_mode": {"type": "text", "index": 38, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 39, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 40, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 41, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 42, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 43, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 44, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_item"}, "model.zuora_source.stg_zuora__invoice_item_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_item_tmp"}, "model.zuora_source.stg_zuora__invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_payment_id": {"type": "text", "index": 1, "name": "invoice_payment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 4, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 6, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 7, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 9, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 12, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 13, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 14, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 15, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 16, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 17, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 18, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 19, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 20, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 21, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 22, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 23, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 24, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 25, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 26, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 27, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 28, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_payment"}, "model.zuora_source.stg_zuora__invoice_payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_payment_tmp"}, "model.zuora_source.stg_zuora__invoice_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_tmp"}, "model.zuora_source.stg_zuora__order": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__order", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "text", "index": 1, "name": "order_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 3, "name": "bill_to_contact_id", "comment": null}, "category": {"type": "text", "index": 4, "name": "category", "comment": null}, "created_by_id": {"type": "integer", "index": 5, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 6, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 7, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "error_code": {"type": "integer", "index": 9, "name": "error_code", "comment": null}, "error_message": {"type": "integer", "index": 10, "name": "error_message", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "response": {"type": "integer", "index": 13, "name": "response", "comment": null}, "scheduled_date": {"type": "integer", "index": 14, "name": "scheduled_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 15, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 18, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 19, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 20, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__order"}, "model.zuora_source.stg_zuora__order_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__order_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__order_tmp"}, "model.zuora_source.stg_zuora__payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_id": {"type": "text", "index": 1, "name": "payment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 3, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 5, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 6, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 7, "name": "applied_credit_balance_amount", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 9, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 10, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "parent_account_id": {"type": "integer", "index": 18, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 19, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 20, "name": "payment_number", "comment": null}, "refund_amount": {"type": "integer", "index": 21, "name": "refund_amount", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 22, "name": "settled_on", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 23, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 24, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 25, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 26, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 27, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 28, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 29, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 30, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 31, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 32, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment"}, "model.zuora_source.stg_zuora__payment_method": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_method", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_method_id": {"type": "text", "index": 1, "name": "payment_method_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "ach_account_type": {"type": "integer", "index": 3, "name": "ach_account_type", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 5, "name": "bank_transfer_account_type", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "credit_card_type": {"type": "integer", "index": 8, "name": "credit_card_type", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 9, "name": "last_failed_sale_transaction_date", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 10, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 11, "name": "last_transaction_status", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 12, "name": "max_consecutive_payment_failures", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 14, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 15, "name": "payment_method_status", "comment": null}, "paypal_type": {"type": "integer", "index": 16, "name": "paypal_type", "comment": null}, "sub_type": {"type": "integer", "index": 17, "name": "sub_type", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 18, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 19, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 20, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 23, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_method"}, "model.zuora_source.stg_zuora__payment_method_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_method_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_method_tmp"}, "model.zuora_source.stg_zuora__payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_tmp"}, "model.zuora_source.stg_zuora__product": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "text", "index": 1, "name": "product_id", "comment": null}, "category": {"type": "text", "index": 2, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 3, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 4, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 5, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 6, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 7, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "sku": {"type": "text", "index": 9, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 10, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 11, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product"}, "model.zuora_source.stg_zuora__product_rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_rate_plan_id": {"type": "text", "index": 1, "name": "product_rate_plan_id", "comment": null}, "created_by_id": {"type": "text", "index": 2, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 3, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 5, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 6, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 8, "name": "product_id", "comment": null}, "updated_by_id": {"type": "text", "index": 9, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 10, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 11, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan"}, "model.zuora_source.stg_zuora__product_rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_charge", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_rate_plan_charge_id": {"type": "text", "index": 1, "name": "product_rate_plan_charge_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 2, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 3, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 4, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 5, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 6, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 7, "name": "billing_period", "comment": null}, "charge_model": {"type": "text", "index": 8, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 9, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 12, "name": "default_quantity", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 13, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 14, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 15, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 16, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 17, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 18, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 19, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 20, "name": "included_units", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 21, "name": "is_stacked_discount", "comment": null}, "list_price_base": {"type": "text", "index": 22, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 23, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 24, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 25, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 26, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 27, "name": "product_rate_plan_id", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 28, "name": "specific_billing_period", "comment": null}, "tax_mode": {"type": "text", "index": 29, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 30, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 31, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 32, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 33, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 34, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 35, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 36, "name": "updated_date", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 37, "name": "use_discount_specific_accounting_code", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 38, "name": "weekly_bill_cycle_day", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 39, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_charge"}, "model.zuora_source.stg_zuora__product_rate_plan_charge_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_charge_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_charge_tmp"}, "model.zuora_source.stg_zuora__product_rate_plan_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_tmp"}, "model.zuora_source.stg_zuora__product_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_tmp"}, "model.zuora_source.stg_zuora__rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"rate_plan_id": {"type": "text", "index": 1, "name": "rate_plan_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 3, "name": "amendment_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 4, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 5, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 6, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 7, "name": "default_payment_method_id", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 9, "name": "original_rate_plan_id", "comment": null}, "product_id": {"type": "text", "index": 10, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 11, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 12, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 13, "name": "subscription_id", "comment": null}, "updated_by_id": {"type": "text", "index": 14, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 15, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 16, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan"}, "model.zuora_source.stg_zuora__rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_charge", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"rate_plan_charge_id": {"type": "text", "index": 1, "name": "rate_plan_charge_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 5, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 6, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 7, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 8, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 9, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 11, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 12, "name": "billing_period", "comment": null}, "billing_timing": {"type": "text", "index": 13, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 14, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 15, "name": "booking_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 16, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 17, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 18, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 19, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 20, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 21, "name": "created_date", "comment": null}, "credit_option": {"type": "integer", "index": 22, "name": "credit_option", "comment": null}, "default_payment_method_id": {"type": "text", "index": 23, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 24, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 25, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 26, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 27, "name": "dmrc", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 28, "name": "dmrchome_currency", "comment": null}, "dtcv": {"type": "double precision", "index": 29, "name": "dtcv", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 30, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 31, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 32, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 33, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 34, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 35, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 36, "name": "home_currency", "comment": null}, "is_prepaid": {"type": "boolean", "index": 37, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 38, "name": "is_processed", "comment": null}, "mrr": {"type": "double precision", "index": 39, "name": "mrr", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 40, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 41, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 42, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 43, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 44, "name": "original_order_date", "comment": null}, "price_change_option": {"type": "text", "index": 45, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 46, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 47, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 48, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 49, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 50, "name": "product_rate_plan_id", "comment": null}, "quantity": {"type": "double precision", "index": 51, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 52, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 53, "name": "recognized_revenue_accounting_code_id", "comment": null}, "segment": {"type": "integer", "index": 54, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 55, "name": "sold_to_contact_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 56, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 57, "name": "specific_end_date", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 58, "name": "specific_list_price_base", "comment": null}, "subscription_id": {"type": "text", "index": 59, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 60, "name": "tcv", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 61, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 62, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 63, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 64, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 65, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 66, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 67, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 68, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 69, "name": "updated_date", "comment": null}, "version": {"type": "integer", "index": 70, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 71, "name": "weekly_bill_cycle_day", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 72, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_charge"}, "model.zuora_source.stg_zuora__rate_plan_charge_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_charge_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_charge_tmp"}, "model.zuora_source.stg_zuora__rate_plan_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_tmp"}, "model.zuora_source.stg_zuora__refund": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "text", "index": 1, "name": "refund_id", "comment": null}, "accounting_code": {"type": "text", "index": 2, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 4, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 5, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "method_type": {"type": "text", "index": 8, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 9, "name": "payment_method_id", "comment": null}, "refund_date": {"type": "integer", "index": 10, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 11, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 12, "name": "refund_transaction_time", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 13, "name": "settled_on", "comment": null}, "source_type": {"type": "text", "index": 14, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 15, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 16, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 17, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 18, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 19, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 20, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 21, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund"}, "model.zuora_source.stg_zuora__refund_invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_invoice_payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_invoice_payment_id": {"type": "text", "index": 1, "name": "refund_invoice_payment_id", "comment": null}, "created_by_id": {"type": "text", "index": 2, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 3, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 4, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 5, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 6, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 7, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_invoice_payment"}, "model.zuora_source.stg_zuora__refund_invoice_payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_invoice_payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_invoice_payment_tmp"}, "model.zuora_source.stg_zuora__refund_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_tmp"}, "model.zuora_source.stg_zuora__subscription": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__subscription", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"subscription_id": {"type": "text", "index": 1, "name": "subscription_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 3, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 4, "name": "bill_to_contact_id", "comment": null}, "cancel_reason": {"type": "integer", "index": 5, "name": "cancel_reason", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 7, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "text", "index": 9, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 10, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 11, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 12, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "externally_managed_by": {"type": "integer", "index": 14, "name": "externally_managed_by", "comment": null}, "initial_term": {"type": "bigint", "index": 15, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 16, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 17, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 18, "name": "is_invoice_separate", "comment": null}, "is_latest_version": {"type": "boolean", "index": 19, "name": "is_latest_version", "comment": null}, "last_booking_date": {"type": "date", "index": 20, "name": "last_booking_date", "comment": null}, "name": {"type": "text", "index": 21, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 22, "name": "notes", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 23, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 24, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 25, "name": "parent_account_id", "comment": null}, "payment_term": {"type": "integer", "index": 26, "name": "payment_term", "comment": null}, "previous_subscription_id": {"type": "text", "index": 27, "name": "previous_subscription_id", "comment": null}, "renewal_term": {"type": "bigint", "index": 28, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 29, "name": "renewal_term_period_type", "comment": null}, "revision": {"type": "integer", "index": 30, "name": "revision", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 31, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 32, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 33, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 34, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 35, "name": "subscription_start_date", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 36, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 37, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 38, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 39, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 40, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 41, "name": "version", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 42, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__subscription"}, "model.zuora_source.stg_zuora__subscription_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__subscription_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__subscription_tmp"}, "model.zuora_source.stg_zuora__taxation_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__taxation_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"taxation_item_id": {"type": "text", "index": 1, "name": "taxation_item_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amendment_id": {"type": "integer", "index": 5, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 6, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 10, "name": "credit_amount", "comment": null}, "exchange_rate": {"type": "double precision", "index": 11, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 12, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 13, "name": "exempt_amount", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 14, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 15, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 16, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 17, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 18, "name": "journal_entry_id", "comment": null}, "name": {"type": "text", "index": 19, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 20, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 21, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 22, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 23, "name": "product_rate_plan_id", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 24, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 25, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 26, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 27, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 28, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 29, "name": "tax_amount", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 30, "name": "tax_amount_home_currency", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 31, "name": "tax_date", "comment": null}, "tax_description": {"type": "integer", "index": 32, "name": "tax_description", "comment": null}, "tax_mode": {"type": "text", "index": 33, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 34, "name": "tax_rate", "comment": null}, "tax_rate_type": {"type": "text", "index": 35, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 36, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 37, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 38, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 39, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__taxation_item"}, "model.zuora_source.stg_zuora__taxation_item_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__taxation_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__taxation_item_tmp"}}, "sources": {"source.zuora_source.zuora.account": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_account_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.account"}, "source.zuora_source.zuora.amendment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_amendment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.amendment"}, "source.zuora_source.zuora.contact": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_contact_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.contact"}, "source.zuora_source.zuora.credit_balance_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_credit_balance_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.credit_balance_adjustment"}, "source.zuora_source.zuora.invoice": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice"}, "source.zuora_source.zuora.invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice_item"}, "source.zuora_source.zuora.invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice_payment"}, "source.zuora_source.zuora.order": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.order"}, "source.zuora_source.zuora.payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.payment"}, "source.zuora_source.zuora.payment_method": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_method_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.payment_method"}, "source.zuora_source.zuora.product": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product"}, "source.zuora_source.zuora.product_rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product_rate_plan_charge"}, "source.zuora_source.zuora.product_rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product_rate_plan"}, "source.zuora_source.zuora.rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.rate_plan_charge"}, "source.zuora_source.zuora.rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.rate_plan"}, "source.zuora_source.zuora.refund": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.refund"}, "source.zuora_source.zuora.refund_invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.refund_invoice_payment"}, "source.zuora_source.zuora.subscription": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_subscription_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.subscription"}, "source.zuora_source.zuora.taxation_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_taxation_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.taxation_item"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.6.8", "generated_at": "2023-11-17T19:46:08.361092Z", "invocation_id": "8146f5b5-c60d-4f58-8061-364adc42db02", "env": {}}, "nodes": {"seed.zuora_source_integration_tests.zuora_account_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_account_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_account_data"}, "seed.zuora_source_integration_tests.zuora_amendment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_amendment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_amendment_data"}, "seed.zuora_source_integration_tests.zuora_contact_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_contact_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_contact_data"}, "seed.zuora_source_integration_tests.zuora_credit_balance_adjustment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_credit_balance_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_credit_balance_adjustment_data"}, "seed.zuora_source_integration_tests.zuora_invoice_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_data"}, "seed.zuora_source_integration_tests.zuora_invoice_item_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_item_data"}, "seed.zuora_source_integration_tests.zuora_invoice_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_invoice_payment_data"}, "seed.zuora_source_integration_tests.zuora_order_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_order_data"}, "seed.zuora_source_integration_tests.zuora_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_payment_data"}, "seed.zuora_source_integration_tests.zuora_payment_method_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_method_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_payment_method_data"}, "seed.zuora_source_integration_tests.zuora_product_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_data"}, "seed.zuora_source_integration_tests.zuora_product_rate_plan_charge_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_rate_plan_charge_data"}, "seed.zuora_source_integration_tests.zuora_product_rate_plan_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_product_rate_plan_data"}, "seed.zuora_source_integration_tests.zuora_rate_plan_charge_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_rate_plan_charge_data"}, "seed.zuora_source_integration_tests.zuora_rate_plan_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_rate_plan_data"}, "seed.zuora_source_integration_tests.zuora_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_refund_data"}, "seed.zuora_source_integration_tests.zuora_refund_invoice_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_refund_invoice_payment_data"}, "seed.zuora_source_integration_tests.zuora_subscription_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_subscription_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_subscription_data"}, "seed.zuora_source_integration_tests.zuora_taxation_item_data": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_taxation_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zuora_source_integration_tests.zuora_taxation_item_data"}, "model.zuora_source.stg_zuora__account": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "account_number": {"type": "text", "index": 2, "name": "account_number", "comment": null}, "auto_pay": {"type": "boolean", "index": 3, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 4, "name": "balance", "comment": null}, "batch": {"type": "text", "index": 5, "name": "batch", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 6, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 10, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 11, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 14, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 15, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 17, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 18, "name": "parent_account_id", "comment": null}, "payment_term": {"type": "text", "index": 19, "name": "payment_term", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 20, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 21, "name": "status", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 22, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 23, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_status": {"type": "text", "index": 24, "name": "tax_exempt_status", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 25, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 26, "name": "total_invoice_balance", "comment": null}, "updated_by_id": {"type": "text", "index": 27, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 28, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 29, "name": "vatid", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 30, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__account"}, "model.zuora_source.stg_zuora__account_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__account_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__account_tmp"}, "model.zuora_source.stg_zuora__amendment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__amendment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"amendment_id": {"type": "text", "index": 1, "name": "amendment_id", "comment": null}, "auto_renew": {"type": "integer", "index": 2, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 3, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 4, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 5, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 8, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 9, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 10, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 11, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 12, "name": "effective_date", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 14, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 15, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 16, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 17, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 18, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 19, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 20, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 21, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 22, "name": "status", "comment": null}, "subscription_id": {"type": "text", "index": 23, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 24, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 25, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 26, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 27, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 30, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__amendment"}, "model.zuora_source.stg_zuora__amendment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__amendment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__amendment_tmp"}, "model.zuora_source.stg_zuora__contact": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 3, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 4, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 5, "name": "city", "comment": null}, "country": {"type": "text", "index": 6, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 7, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 9, "name": "description", "comment": null}, "first_name": {"type": "text", "index": 10, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 11, "name": "last_name", "comment": null}, "postal_code": {"type": "text", "index": 12, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "updated_by_id": {"type": "text", "index": 14, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 15, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 16, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 17, "name": "work_phone", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 18, "name": "is_most_recent_record", "comment": null}, "is_most_recent_account_contact": {"type": "boolean", "index": 19, "name": "is_most_recent_account_contact", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__contact"}, "model.zuora_source.stg_zuora__contact_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__contact_tmp"}, "model.zuora_source.stg_zuora__credit_balance_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__credit_balance_adjustment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_balance_adjustment_id": {"type": "text", "index": 1, "name": "credit_balance_adjustment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "adjustment_date": {"type": "date", "index": 5, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 7, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 9, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 10, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 14, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 15, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 16, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 17, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 18, "name": "journal_entry_id", "comment": null}, "number": {"type": "text", "index": 19, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 20, "name": "parent_account_id", "comment": null}, "reason_code": {"type": "text", "index": 21, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 22, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 23, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 24, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 25, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 26, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 27, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 28, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 29, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 30, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 31, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 32, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 33, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__credit_balance_adjustment"}, "model.zuora_source.stg_zuora__credit_balance_adjustment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__credit_balance_adjustment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__credit_balance_adjustment_tmp"}, "model.zuora_source.stg_zuora__invoice": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "text", "index": 1, "name": "invoice_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 3, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 5, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 6, "name": "amount_without_tax", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 7, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 8, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 11, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 14, "name": "credit_balance_adjustment_amount", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 15, "name": "credit_memo_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 16, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 17, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 18, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 19, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 21, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 22, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 23, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 24, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 25, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 26, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 27, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 28, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 29, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 30, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 31, "name": "posted_date", "comment": null}, "refund_amount": {"type": "integer", "index": 32, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 33, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 34, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 35, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 36, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 38, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 39, "name": "tax_amount", "comment": null}, "tax_status": {"type": "integer", "index": 40, "name": "tax_status", "comment": null}, "transaction_currency": {"type": "text", "index": 41, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 42, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 43, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 44, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 45, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice"}, "model.zuora_source.stg_zuora__invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_item_id": {"type": "text", "index": 1, "name": "invoice_item_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 6, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 7, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "charge_amount": {"type": "double precision", "index": 9, "name": "charge_amount", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 10, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 11, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 12, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 13, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 14, "name": "created_date", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 15, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 16, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 17, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 18, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 19, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 20, "name": "journal_entry_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 22, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 23, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 24, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 25, "name": "product_rate_plan_id", "comment": null}, "quantity": {"type": "double precision", "index": 26, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 27, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 28, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 29, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 30, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 31, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 32, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 33, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 34, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 35, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 36, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 37, "name": "tax_amount", "comment": null}, "tax_mode": {"type": "text", "index": 38, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 39, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 40, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 41, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 42, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 43, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 44, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_item"}, "model.zuora_source.stg_zuora__invoice_item_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_item_tmp"}, "model.zuora_source.stg_zuora__invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_payment_id": {"type": "text", "index": 1, "name": "invoice_payment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 4, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 6, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 7, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 9, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 12, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 13, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 14, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 15, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 16, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 17, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 18, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 19, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 20, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 21, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 22, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 23, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 24, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 25, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 26, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 27, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 28, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_payment"}, "model.zuora_source.stg_zuora__invoice_payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_payment_tmp"}, "model.zuora_source.stg_zuora__invoice_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__invoice_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__invoice_tmp"}, "model.zuora_source.stg_zuora__order": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__order", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "text", "index": 1, "name": "order_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 3, "name": "bill_to_contact_id", "comment": null}, "category": {"type": "text", "index": 4, "name": "category", "comment": null}, "created_by_id": {"type": "integer", "index": 5, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 6, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 7, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "error_code": {"type": "integer", "index": 9, "name": "error_code", "comment": null}, "error_message": {"type": "integer", "index": 10, "name": "error_message", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "response": {"type": "integer", "index": 13, "name": "response", "comment": null}, "scheduled_date": {"type": "integer", "index": 14, "name": "scheduled_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 15, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 18, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 19, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 20, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__order"}, "model.zuora_source.stg_zuora__order_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__order_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__order_tmp"}, "model.zuora_source.stg_zuora__payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_id": {"type": "text", "index": 1, "name": "payment_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 3, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 5, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 6, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 7, "name": "applied_credit_balance_amount", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 8, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 9, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 10, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "parent_account_id": {"type": "integer", "index": 18, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 19, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 20, "name": "payment_number", "comment": null}, "refund_amount": {"type": "integer", "index": 21, "name": "refund_amount", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 22, "name": "settled_on", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 23, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 24, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 25, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 26, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 27, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 28, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 29, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 30, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 31, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 32, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment"}, "model.zuora_source.stg_zuora__payment_method": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_method", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_method_id": {"type": "text", "index": 1, "name": "payment_method_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "ach_account_type": {"type": "integer", "index": 3, "name": "ach_account_type", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 5, "name": "bank_transfer_account_type", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "credit_card_type": {"type": "integer", "index": 8, "name": "credit_card_type", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 9, "name": "last_failed_sale_transaction_date", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 10, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 11, "name": "last_transaction_status", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 12, "name": "max_consecutive_payment_failures", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 14, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 15, "name": "payment_method_status", "comment": null}, "paypal_type": {"type": "integer", "index": 16, "name": "paypal_type", "comment": null}, "sub_type": {"type": "integer", "index": 17, "name": "sub_type", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 18, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 19, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 20, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 23, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_method"}, "model.zuora_source.stg_zuora__payment_method_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_method_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_method_tmp"}, "model.zuora_source.stg_zuora__payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__payment_tmp"}, "model.zuora_source.stg_zuora__product": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "text", "index": 1, "name": "product_id", "comment": null}, "category": {"type": "text", "index": 2, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 3, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 4, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 5, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 6, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 7, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "sku": {"type": "text", "index": 9, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 10, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 11, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product"}, "model.zuora_source.stg_zuora__product_rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_rate_plan_id": {"type": "text", "index": 1, "name": "product_rate_plan_id", "comment": null}, "created_by_id": {"type": "text", "index": 2, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 3, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 5, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 6, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 8, "name": "product_id", "comment": null}, "updated_by_id": {"type": "text", "index": 9, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 10, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 11, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan"}, "model.zuora_source.stg_zuora__product_rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_charge", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_rate_plan_charge_id": {"type": "text", "index": 1, "name": "product_rate_plan_charge_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 2, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 3, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 4, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 5, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 6, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 7, "name": "billing_period", "comment": null}, "charge_model": {"type": "text", "index": 8, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 9, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 12, "name": "default_quantity", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 13, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 14, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 15, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 16, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 17, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 18, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 19, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 20, "name": "included_units", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 21, "name": "is_stacked_discount", "comment": null}, "list_price_base": {"type": "text", "index": 22, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 23, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 24, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 25, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 26, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 27, "name": "product_rate_plan_id", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 28, "name": "specific_billing_period", "comment": null}, "tax_mode": {"type": "text", "index": 29, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 30, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 31, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 32, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 33, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 34, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 35, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 36, "name": "updated_date", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 37, "name": "use_discount_specific_accounting_code", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 38, "name": "weekly_bill_cycle_day", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 39, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_charge"}, "model.zuora_source.stg_zuora__product_rate_plan_charge_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_charge_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_charge_tmp"}, "model.zuora_source.stg_zuora__product_rate_plan_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_rate_plan_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_rate_plan_tmp"}, "model.zuora_source.stg_zuora__product_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__product_tmp"}, "model.zuora_source.stg_zuora__rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"rate_plan_id": {"type": "text", "index": 1, "name": "rate_plan_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 3, "name": "amendment_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 4, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 5, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 6, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 7, "name": "default_payment_method_id", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 9, "name": "original_rate_plan_id", "comment": null}, "product_id": {"type": "text", "index": 10, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 11, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 12, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 13, "name": "subscription_id", "comment": null}, "updated_by_id": {"type": "text", "index": 14, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 15, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 16, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan"}, "model.zuora_source.stg_zuora__rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_charge", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"rate_plan_charge_id": {"type": "text", "index": 1, "name": "rate_plan_charge_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 5, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 6, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 7, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 8, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 9, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 11, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 12, "name": "billing_period", "comment": null}, "billing_timing": {"type": "text", "index": 13, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 14, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 15, "name": "booking_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 16, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 17, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 18, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 19, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 20, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 21, "name": "created_date", "comment": null}, "credit_option": {"type": "integer", "index": 22, "name": "credit_option", "comment": null}, "default_payment_method_id": {"type": "text", "index": 23, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 24, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 25, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 26, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 27, "name": "dmrc", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 28, "name": "dmrchome_currency", "comment": null}, "dtcv": {"type": "double precision", "index": 29, "name": "dtcv", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 30, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 31, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 32, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 33, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 34, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 35, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 36, "name": "home_currency", "comment": null}, "is_prepaid": {"type": "boolean", "index": 37, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 38, "name": "is_processed", "comment": null}, "mrr": {"type": "double precision", "index": 39, "name": "mrr", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 40, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 41, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 42, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 43, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 44, "name": "original_order_date", "comment": null}, "price_change_option": {"type": "text", "index": 45, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 46, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 47, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 48, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 49, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 50, "name": "product_rate_plan_id", "comment": null}, "quantity": {"type": "double precision", "index": 51, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 52, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 53, "name": "recognized_revenue_accounting_code_id", "comment": null}, "segment": {"type": "integer", "index": 54, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 55, "name": "sold_to_contact_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 56, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 57, "name": "specific_end_date", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 58, "name": "specific_list_price_base", "comment": null}, "subscription_id": {"type": "text", "index": 59, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 60, "name": "tcv", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 61, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 62, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 63, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 64, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 65, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 66, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 67, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 68, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 69, "name": "updated_date", "comment": null}, "version": {"type": "integer", "index": 70, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 71, "name": "weekly_bill_cycle_day", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 72, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_charge"}, "model.zuora_source.stg_zuora__rate_plan_charge_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_charge_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_charge_tmp"}, "model.zuora_source.stg_zuora__rate_plan_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__rate_plan_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__rate_plan_tmp"}, "model.zuora_source.stg_zuora__refund": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "text", "index": 1, "name": "refund_id", "comment": null}, "accounting_code": {"type": "text", "index": 2, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 4, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 5, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "method_type": {"type": "text", "index": 8, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 9, "name": "payment_method_id", "comment": null}, "refund_date": {"type": "integer", "index": 10, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 11, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 12, "name": "refund_transaction_time", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 13, "name": "settled_on", "comment": null}, "source_type": {"type": "text", "index": 14, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 15, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 16, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 17, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 18, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 19, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 20, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 21, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund"}, "model.zuora_source.stg_zuora__refund_invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_invoice_payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_invoice_payment_id": {"type": "text", "index": 1, "name": "refund_invoice_payment_id", "comment": null}, "created_by_id": {"type": "text", "index": 2, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 3, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 4, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 5, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 6, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 7, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_invoice_payment"}, "model.zuora_source.stg_zuora__refund_invoice_payment_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_invoice_payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_invoice_payment_tmp"}, "model.zuora_source.stg_zuora__refund_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__refund_tmp"}, "model.zuora_source.stg_zuora__subscription": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__subscription", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"subscription_id": {"type": "text", "index": 1, "name": "subscription_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 3, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 4, "name": "bill_to_contact_id", "comment": null}, "cancel_reason": {"type": "integer", "index": 5, "name": "cancel_reason", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 7, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "text", "index": 9, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 10, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 11, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 12, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 13, "name": "default_payment_method_id", "comment": null}, "externally_managed_by": {"type": "integer", "index": 14, "name": "externally_managed_by", "comment": null}, "initial_term": {"type": "bigint", "index": 15, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 16, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 17, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 18, "name": "is_invoice_separate", "comment": null}, "is_latest_version": {"type": "boolean", "index": 19, "name": "is_latest_version", "comment": null}, "last_booking_date": {"type": "date", "index": 20, "name": "last_booking_date", "comment": null}, "name": {"type": "text", "index": 21, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 22, "name": "notes", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 23, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 24, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 25, "name": "parent_account_id", "comment": null}, "payment_term": {"type": "integer", "index": 26, "name": "payment_term", "comment": null}, "previous_subscription_id": {"type": "text", "index": 27, "name": "previous_subscription_id", "comment": null}, "renewal_term": {"type": "bigint", "index": 28, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 29, "name": "renewal_term_period_type", "comment": null}, "revision": {"type": "integer", "index": 30, "name": "revision", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 31, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 32, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 33, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 34, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 35, "name": "subscription_start_date", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 36, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 37, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 38, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 39, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 40, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 41, "name": "version", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 42, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__subscription"}, "model.zuora_source.stg_zuora__subscription_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__subscription_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__subscription_tmp"}, "model.zuora_source.stg_zuora__taxation_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__taxation_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"taxation_item_id": {"type": "text", "index": 1, "name": "taxation_item_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 3, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amendment_id": {"type": "integer", "index": 5, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 6, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 10, "name": "credit_amount", "comment": null}, "exchange_rate": {"type": "double precision", "index": 11, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 12, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 13, "name": "exempt_amount", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 14, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 15, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 16, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 17, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 18, "name": "journal_entry_id", "comment": null}, "name": {"type": "text", "index": 19, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 20, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 21, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 22, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 23, "name": "product_rate_plan_id", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 24, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 25, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 26, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 27, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 28, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 29, "name": "tax_amount", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 30, "name": "tax_amount_home_currency", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 31, "name": "tax_date", "comment": null}, "tax_description": {"type": "integer", "index": 32, "name": "tax_description", "comment": null}, "tax_mode": {"type": "text", "index": 33, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 34, "name": "tax_rate", "comment": null}, "tax_rate_type": {"type": "text", "index": 35, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 36, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 37, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 38, "name": "updated_date", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 39, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__taxation_item"}, "model.zuora_source.stg_zuora__taxation_item_tmp": {"metadata": {"type": "VIEW", "schema": "zuora_source_integration_tests_zuora_source", "name": "stg_zuora__taxation_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zuora_source.stg_zuora__taxation_item_tmp"}}, "sources": {"source.zuora_source.zuora.account": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_account_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "text", "index": 4, "name": "account_number", "comment": null}, "additional_email_addresses": {"type": "integer", "index": 5, "name": "additional_email_addresses", "comment": null}, "allow_invoice_edit": {"type": "boolean", "index": 6, "name": "allow_invoice_edit", "comment": null}, "auto_pay": {"type": "boolean", "index": 7, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 8, "name": "balance", "comment": null}, "bcd_setting_option": {"type": "text", "index": 9, "name": "bcd_setting_option", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "bill_to_id": {"type": "integer", "index": 12, "name": "bill_to_id", "comment": null}, "communication_profile_id": {"type": "text", "index": 13, "name": "communication_profile_id", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "credit_balance": {"type": "double precision", "index": 16, "name": "credit_balance", "comment": null}, "crm_id": {"type": "integer", "index": 17, "name": "crm_id", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "customer_service_rep_name": {"type": "integer", "index": 19, "name": "customer_service_rep_name", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "invoice_delivery_prefs_email": {"type": "boolean", "index": 21, "name": "invoice_delivery_prefs_email", "comment": null}, "invoice_delivery_prefs_print": {"type": "boolean", "index": 22, "name": "invoice_delivery_prefs_print", "comment": null}, "invoice_template_id": {"type": "text", "index": 23, "name": "invoice_template_id", "comment": null}, "last_invoice_date": {"type": "timestamp without time zone", "index": 24, "name": "last_invoice_date", "comment": null}, "mrr": {"type": "double precision", "index": 25, "name": "mrr", "comment": null}, "name": {"type": "text", "index": 26, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 27, "name": "notes", "comment": null}, "parent_account_id": {"type": "text", "index": 28, "name": "parent_account_id", "comment": null}, "parent_id": {"type": "text", "index": 29, "name": "parent_id", "comment": null}, "payment_gateway": {"type": "integer", "index": 30, "name": "payment_gateway", "comment": null}, "payment_term": {"type": "text", "index": 31, "name": "payment_term", "comment": null}, "purchase_order_number": {"type": "integer", "index": 32, "name": "purchase_order_number", "comment": null}, "sales_rep_name": {"type": "integer", "index": 33, "name": "sales_rep_name", "comment": null}, "sequence_set_id": {"type": "integer", "index": 34, "name": "sequence_set_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 35, "name": "sold_to_contact_id", "comment": null}, "sold_to_id": {"type": "integer", "index": 36, "name": "sold_to_id", "comment": null}, "status": {"type": "text", "index": 37, "name": "status", "comment": null}, "tax_company_code": {"type": "integer", "index": 38, "name": "tax_company_code", "comment": null}, "tax_exempt_certificate_id": {"type": "integer", "index": 39, "name": "tax_exempt_certificate_id", "comment": null}, "tax_exempt_certificate_type": {"type": "integer", "index": 40, "name": "tax_exempt_certificate_type", "comment": null}, "tax_exempt_description": {"type": "integer", "index": 41, "name": "tax_exempt_description", "comment": null}, "tax_exempt_effective_date": {"type": "timestamp without time zone", "index": 42, "name": "tax_exempt_effective_date", "comment": null}, "tax_exempt_entity_use_code": {"type": "integer", "index": 43, "name": "tax_exempt_entity_use_code", "comment": null}, "tax_exempt_expiration_date": {"type": "timestamp without time zone", "index": 44, "name": "tax_exempt_expiration_date", "comment": null}, "tax_exempt_issuing_jurisdiction": {"type": "integer", "index": 45, "name": "tax_exempt_issuing_jurisdiction", "comment": null}, "tax_exempt_status": {"type": "text", "index": 46, "name": "tax_exempt_status", "comment": null}, "testcustom_1_c": {"type": "integer", "index": 47, "name": "testcustom_1_c", "comment": null}, "testcustom_2_c": {"type": "integer", "index": 48, "name": "testcustom_2_c", "comment": null}, "total_debit_memo_balance": {"type": "double precision", "index": 49, "name": "total_debit_memo_balance", "comment": null}, "total_invoice_balance": {"type": "double precision", "index": 50, "name": "total_invoice_balance", "comment": null}, "unapplied_balance": {"type": "double precision", "index": 51, "name": "unapplied_balance", "comment": null}, "unapplied_credit_memo_amount": {"type": "double precision", "index": 52, "name": "unapplied_credit_memo_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "vatid": {"type": "integer", "index": 55, "name": "vatid", "comment": null}, "batch": {"type": "text", "index": 56, "name": "batch", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.account"}, "source.zuora_source.zuora.amendment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_amendment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_renew": {"type": "integer", "index": 4, "name": "auto_renew", "comment": null}, "booking_date": {"type": "date", "index": 5, "name": "booking_date", "comment": null}, "code": {"type": "text", "index": 6, "name": "code", "comment": null}, "contract_effective_date": {"type": "date", "index": 7, "name": "contract_effective_date", "comment": null}, "created_by_id": {"type": "integer", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "current_term": {"type": "bigint", "index": 10, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 11, "name": "current_term_period_type", "comment": null}, "customer_acceptance_date": {"type": "date", "index": 12, "name": "customer_acceptance_date", "comment": null}, "description": {"type": "integer", "index": 13, "name": "description", "comment": null}, "effective_date": {"type": "date", "index": 14, "name": "effective_date", "comment": null}, "effective_policy": {"type": "integer", "index": 15, "name": "effective_policy", "comment": null}, "name": {"type": "text", "index": 16, "name": "name", "comment": null}, "new_rate_plan_id": {"type": "integer", "index": 17, "name": "new_rate_plan_id", "comment": null}, "removed_rate_plan_id": {"type": "integer", "index": 18, "name": "removed_rate_plan_id", "comment": null}, "renewal_setting": {"type": "text", "index": 19, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 20, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 21, "name": "renewal_term_period_type", "comment": null}, "resume_date": {"type": "integer", "index": 22, "name": "resume_date", "comment": null}, "service_activation_date": {"type": "date", "index": 23, "name": "service_activation_date", "comment": null}, "specific_update_date": {"type": "integer", "index": 24, "name": "specific_update_date", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "sub_type": {"type": "integer", "index": 26, "name": "sub_type", "comment": null}, "subscription_id": {"type": "text", "index": 27, "name": "subscription_id", "comment": null}, "suspend_date": {"type": "integer", "index": 28, "name": "suspend_date", "comment": null}, "term_start_date": {"type": "integer", "index": 29, "name": "term_start_date", "comment": null}, "term_type": {"type": "integer", "index": 30, "name": "term_type", "comment": null}, "type": {"type": "text", "index": 31, "name": "type", "comment": null}, "updated_by_id": {"type": "integer", "index": 32, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 33, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.amendment"}, "source.zuora_source.zuora.contact": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_contact_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "county": {"type": "integer", "index": 9, "name": "county", "comment": null}, "created_by_id": {"type": "text", "index": 10, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 11, "name": "created_date", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fax": {"type": "integer", "index": 13, "name": "fax", "comment": null}, "first_name": {"type": "text", "index": 14, "name": "first_name", "comment": null}, "home_phone": {"type": "integer", "index": 15, "name": "home_phone", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "nick_name": {"type": "integer", "index": 18, "name": "nick_name", "comment": null}, "other_phone": {"type": "integer", "index": 19, "name": "other_phone", "comment": null}, "other_phone_type": {"type": "text", "index": 20, "name": "other_phone_type", "comment": null}, "personal_email": {"type": "integer", "index": 21, "name": "personal_email", "comment": null}, "postal_code": {"type": "text", "index": 22, "name": "postal_code", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_region": {"type": "integer", "index": 24, "name": "tax_region", "comment": null}, "updated_by_id": {"type": "text", "index": 25, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 26, "name": "updated_date", "comment": null}, "work_email": {"type": "text", "index": 27, "name": "work_email", "comment": null}, "work_phone": {"type": "integer", "index": 28, "name": "work_phone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.contact"}, "source.zuora_source.zuora.credit_balance_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_credit_balance_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "adjustment_date": {"type": "date", "index": 8, "name": "adjustment_date", "comment": null}, "amount": {"type": "double precision", "index": 9, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 10, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 11, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 13, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 14, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 15, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 16, "name": "created_date", "comment": null}, "customer_cash_on_account_accounting_code_id": {"type": "text", "index": 17, "name": "customer_cash_on_account_accounting_code_id", "comment": null}, "default_payment_method_id": {"type": "text", "index": 18, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 19, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 20, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 21, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 22, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 24, "name": "journal_run_id", "comment": null}, "number": {"type": "text", "index": 25, "name": "number", "comment": null}, "parent_account_id": {"type": "text", "index": 26, "name": "parent_account_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 27, "name": "provider_exchange_rate_date", "comment": null}, "reason_code": {"type": "text", "index": 28, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 29, "name": "reference_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 30, "name": "sold_to_contact_id", "comment": null}, "source_transaction_id": {"type": "text", "index": 31, "name": "source_transaction_id", "comment": null}, "source_transaction_number": {"type": "text", "index": 32, "name": "source_transaction_number", "comment": null}, "source_transaction_type": {"type": "text", "index": 33, "name": "source_transaction_type", "comment": null}, "status": {"type": "text", "index": 34, "name": "status", "comment": null}, "transaction_currency": {"type": "text", "index": 35, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 36, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 37, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 38, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 39, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.credit_balance_adjustment"}, "source.zuora_source.zuora.invoice": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "adjustment_amount": {"type": "double precision", "index": 5, "name": "adjustment_amount", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "amount_without_tax": {"type": "double precision", "index": 9, "name": "amount_without_tax", "comment": null}, "amount_without_tax_currency_rounding": {"type": "integer", "index": 10, "name": "amount_without_tax_currency_rounding", "comment": null}, "amount_without_tax_home_currency": {"type": "double precision", "index": 11, "name": "amount_without_tax_home_currency", "comment": null}, "auto_pay": {"type": "boolean", "index": 12, "name": "auto_pay", "comment": null}, "balance": {"type": "double precision", "index": 13, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 14, "name": "bill_to_contact_id", "comment": null}, "comments": {"type": "integer", "index": 15, "name": "comments", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "credit_balance_adjustment_amount": {"type": "double precision", "index": 18, "name": "credit_balance_adjustment_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "due_date": {"type": "date", "index": 20, "name": "due_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 23, "name": "home_currency", "comment": null}, "includes_one_time": {"type": "boolean", "index": 24, "name": "includes_one_time", "comment": null}, "includes_recurring": {"type": "boolean", "index": 25, "name": "includes_recurring", "comment": null}, "includes_usage": {"type": "boolean", "index": 26, "name": "includes_usage", "comment": null}, "invoice_date": {"type": "date", "index": 27, "name": "invoice_date", "comment": null}, "invoice_number": {"type": "text", "index": 28, "name": "invoice_number", "comment": null}, "last_email_sent_date": {"type": "timestamp without time zone", "index": 29, "name": "last_email_sent_date", "comment": null}, "parent_account_id": {"type": "integer", "index": 30, "name": "parent_account_id", "comment": null}, "payment_amount": {"type": "double precision", "index": 31, "name": "payment_amount", "comment": null}, "payment_term": {"type": "integer", "index": 32, "name": "payment_term", "comment": null}, "posted_by": {"type": "text", "index": 33, "name": "posted_by", "comment": null}, "posted_date": {"type": "timestamp without time zone", "index": 34, "name": "posted_date", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 35, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 36, "name": "refund_amount", "comment": null}, "reversed": {"type": "boolean", "index": 37, "name": "reversed", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 38, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 39, "name": "source", "comment": null}, "source_id": {"type": "text", "index": 40, "name": "source_id", "comment": null}, "source_type": {"type": "text", "index": 41, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 42, "name": "status", "comment": null}, "target_date": {"type": "date", "index": 43, "name": "target_date", "comment": null}, "tax_amount": {"type": "double precision", "index": 44, "name": "tax_amount", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 45, "name": "tax_exempt_amount", "comment": null}, "tax_message": {"type": "integer", "index": 46, "name": "tax_message", "comment": null}, "tax_status": {"type": "integer", "index": 47, "name": "tax_status", "comment": null}, "template_id": {"type": "integer", "index": 48, "name": "template_id", "comment": null}, "transaction_currency": {"type": "text", "index": 49, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 50, "name": "transferred_to_accounting", "comment": null}, "updated_by_id": {"type": "text", "index": 51, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 52, "name": "updated_date", "comment": null}, "sequence_set_id": {"type": "integer", "index": 53, "name": "sequence_set_id", "comment": null}, "credit_memo_amount": {"type": "double precision", "index": 54, "name": "credit_memo_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice"}, "source.zuora_source.zuora.invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "text", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "applied_to_invoice_item_id": {"type": "integer", "index": 9, "name": "applied_to_invoice_item_id", "comment": null}, "balance": {"type": "double precision", "index": 10, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 11, "name": "bill_to_contact_id", "comment": null}, "booking_reference": {"type": "integer", "index": 12, "name": "booking_reference", "comment": null}, "charge_amount": {"type": "double precision", "index": 13, "name": "charge_amount", "comment": null}, "charge_amount_currency_rounding": {"type": "integer", "index": 14, "name": "charge_amount_currency_rounding", "comment": null}, "charge_amount_home_currency": {"type": "double precision", "index": 15, "name": "charge_amount_home_currency", "comment": null}, "charge_date": {"type": "timestamp without time zone", "index": 16, "name": "charge_date", "comment": null}, "charge_name": {"type": "text", "index": 17, "name": "charge_name", "comment": null}, "created_by_id": {"type": "text", "index": 18, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 19, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 20, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 21, "name": "deferred_revenue_accounting_code_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 22, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 23, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 25, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 26, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 27, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 28, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 29, "name": "parent_account_id", "comment": null}, "processing_type": {"type": "integer", "index": 30, "name": "processing_type", "comment": null}, "product_id": {"type": "text", "index": 31, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 32, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 33, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 34, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 35, "name": "quantity", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 36, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 37, "name": "rate_plan_id", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 38, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_start_date": {"type": "integer", "index": 39, "name": "rev_rec_start_date", "comment": null}, "service_end_date": {"type": "date", "index": 40, "name": "service_end_date", "comment": null}, "service_start_date": {"type": "date", "index": 41, "name": "service_start_date", "comment": null}, "sku": {"type": "text", "index": 42, "name": "sku", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 43, "name": "sold_to_contact_id", "comment": null}, "source_item_type": {"type": "integer", "index": 44, "name": "source_item_type", "comment": null}, "subscription_id": {"type": "text", "index": 45, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 46, "name": "tax_amount", "comment": null}, "tax_code": {"type": "text", "index": 47, "name": "tax_code", "comment": null}, "tax_exempt_amount": {"type": "integer", "index": 48, "name": "tax_exempt_amount", "comment": null}, "tax_mode": {"type": "text", "index": 49, "name": "tax_mode", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "unit_price": {"type": "double precision", "index": 51, "name": "unit_price", "comment": null}, "uom": {"type": "text", "index": 52, "name": "uom", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice_item"}, "source.zuora_source.zuora.invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_period_id": {"type": "text", "index": 6, "name": "accounting_period_id", "comment": null}, "amount": {"type": "double precision", "index": 7, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "double precision", "index": 8, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 9, "name": "amount_home_currency", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "cash_accounting_code_id": {"type": "text", "index": 11, "name": "cash_accounting_code_id", "comment": null}, "created_by_id": {"type": "text", "index": 12, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 13, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 16, "name": "exchange_rate_date", "comment": null}, "home_currency": {"type": "text", "index": 17, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 18, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "text", "index": 19, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "text", "index": 20, "name": "journal_run_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 21, "name": "parent_account_id", "comment": null}, "payment_id": {"type": "text", "index": 22, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 23, "name": "payment_method_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 24, "name": "provider_exchange_rate_date", "comment": null}, "refund_amount": {"type": "integer", "index": 25, "name": "refund_amount", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 26, "name": "sold_to_contact_id", "comment": null}, "transaction_currency": {"type": "text", "index": 27, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 28, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 29, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.invoice_payment"}, "source.zuora_source.zuora.order": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 5, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "integer", "index": 6, "name": "created_by_id", "comment": null}, "created_by_migration": {"type": "boolean", "index": 7, "name": "created_by_migration", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 8, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 9, "name": "default_payment_method_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "order_date": {"type": "date", "index": 11, "name": "order_date", "comment": null}, "order_number": {"type": "text", "index": 12, "name": "order_number", "comment": null}, "parent_account_id": {"type": "text", "index": 13, "name": "parent_account_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 14, "name": "sold_to_contact_id", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_by_id": {"type": "integer", "index": 17, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 18, "name": "updated_date", "comment": null}, "category": {"type": "text", "index": 19, "name": "category", "comment": null}, "error_message": {"type": "integer", "index": 20, "name": "error_message", "comment": null}, "scheduled_date_policy": {"type": "integer", "index": 21, "name": "scheduled_date_policy", "comment": null}, "response": {"type": "integer", "index": 22, "name": "response", "comment": null}, "error_code": {"type": "integer", "index": 23, "name": "error_code", "comment": null}, "scheduled_date": {"type": "integer", "index": 24, "name": "scheduled_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.order"}, "source.zuora_source.zuora.payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 6, "name": "amount", "comment": null}, "amount_currency_rounding": {"type": "integer", "index": 7, "name": "amount_currency_rounding", "comment": null}, "amount_home_currency": {"type": "double precision", "index": 8, "name": "amount_home_currency", "comment": null}, "applied_amount": {"type": "double precision", "index": 9, "name": "applied_amount", "comment": null}, "applied_credit_balance_amount": {"type": "double precision", "index": 10, "name": "applied_credit_balance_amount", "comment": null}, "auth_transaction_id": {"type": "integer", "index": 11, "name": "auth_transaction_id", "comment": null}, "bank_identification_number": {"type": "integer", "index": 12, "name": "bank_identification_number", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 13, "name": "bill_to_contact_id", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 14, "name": "cancelled_on", "comment": null}, "comment": {"type": "text", "index": 15, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 16, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 17, "name": "created_date", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "default_payment_method_id": {"type": "text", "index": 19, "name": "default_payment_method_id", "comment": null}, "effective_date": {"type": "date", "index": 20, "name": "effective_date", "comment": null}, "exchange_rate": {"type": "double precision", "index": 21, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 22, "name": "exchange_rate_date", "comment": null}, "gateway": {"type": "integer", "index": 23, "name": "gateway", "comment": null}, "gateway_order_id": {"type": "integer", "index": 24, "name": "gateway_order_id", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 25, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 26, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 27, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 28, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "text", "index": 29, "name": "gateway_state", "comment": null}, "home_currency": {"type": "text", "index": 30, "name": "home_currency", "comment": null}, "is_standalone": {"type": "integer", "index": 31, "name": "is_standalone", "comment": null}, "marked_for_submission_on": {"type": "integer", "index": 32, "name": "marked_for_submission_on", "comment": null}, "parent_account_id": {"type": "integer", "index": 33, "name": "parent_account_id", "comment": null}, "payment_method_id": {"type": "text", "index": 34, "name": "payment_method_id", "comment": null}, "payment_number": {"type": "text", "index": 35, "name": "payment_number", "comment": null}, "payout_id": {"type": "integer", "index": 36, "name": "payout_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 37, "name": "provider_exchange_rate_date", "comment": null}, "reference_id": {"type": "integer", "index": 38, "name": "reference_id", "comment": null}, "referenced_payment_id": {"type": "integer", "index": 39, "name": "referenced_payment_id", "comment": null}, "refund_amount": {"type": "integer", "index": 40, "name": "refund_amount", "comment": null}, "second_payment_reference_id": {"type": "integer", "index": 41, "name": "second_payment_reference_id", "comment": null}, "settled_on": {"type": "timestamp without time zone", "index": 42, "name": "settled_on", "comment": null}, "soft_descriptor": {"type": "integer", "index": 43, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 44, "name": "soft_descriptor_phone", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 45, "name": "sold_to_contact_id", "comment": null}, "source": {"type": "text", "index": 46, "name": "source", "comment": null}, "source_name": {"type": "integer", "index": 47, "name": "source_name", "comment": null}, "status": {"type": "text", "index": 48, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 49, "name": "submitted_on", "comment": null}, "transaction_currency": {"type": "text", "index": 50, "name": "transaction_currency", "comment": null}, "transferred_to_accounting": {"type": "integer", "index": 51, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 52, "name": "type", "comment": null}, "unapplied_amount": {"type": "double precision", "index": 53, "name": "unapplied_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 54, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 55, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.payment"}, "source.zuora_source.zuora.payment_method": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_payment_method_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "ach_aba_code": {"type": "integer", "index": 5, "name": "ach_aba_code", "comment": null}, "ach_account_name": {"type": "integer", "index": 6, "name": "ach_account_name", "comment": null}, "ach_account_number_mask": {"type": "integer", "index": 7, "name": "ach_account_number_mask", "comment": null}, "ach_account_type": {"type": "integer", "index": 8, "name": "ach_account_type", "comment": null}, "ach_address_1": {"type": "integer", "index": 9, "name": "ach_address_1", "comment": null}, "ach_address_2": {"type": "integer", "index": 10, "name": "ach_address_2", "comment": null}, "ach_bank_name": {"type": "integer", "index": 11, "name": "ach_bank_name", "comment": null}, "ach_city": {"type": "integer", "index": 12, "name": "ach_city", "comment": null}, "ach_country": {"type": "integer", "index": 13, "name": "ach_country", "comment": null}, "ach_postal_code": {"type": "integer", "index": 14, "name": "ach_postal_code", "comment": null}, "ach_state": {"type": "integer", "index": 15, "name": "ach_state", "comment": null}, "active": {"type": "boolean", "index": 16, "name": "active", "comment": null}, "bank_branch_code": {"type": "integer", "index": 17, "name": "bank_branch_code", "comment": null}, "bank_check_digit": {"type": "integer", "index": 18, "name": "bank_check_digit", "comment": null}, "bank_city": {"type": "integer", "index": 19, "name": "bank_city", "comment": null}, "bank_code": {"type": "integer", "index": 20, "name": "bank_code", "comment": null}, "bank_identification_number": {"type": "integer", "index": 21, "name": "bank_identification_number", "comment": null}, "bank_name": {"type": "integer", "index": 22, "name": "bank_name", "comment": null}, "bank_postal_code": {"type": "integer", "index": 23, "name": "bank_postal_code", "comment": null}, "bank_street_name": {"type": "integer", "index": 24, "name": "bank_street_name", "comment": null}, "bank_street_number": {"type": "integer", "index": 25, "name": "bank_street_number", "comment": null}, "bank_transfer_account_name": {"type": "integer", "index": 26, "name": "bank_transfer_account_name", "comment": null}, "bank_transfer_account_number_mask": {"type": "integer", "index": 27, "name": "bank_transfer_account_number_mask", "comment": null}, "bank_transfer_account_type": {"type": "integer", "index": 28, "name": "bank_transfer_account_type", "comment": null}, "bank_transfer_type": {"type": "integer", "index": 29, "name": "bank_transfer_type", "comment": null}, "business_identification_code": {"type": "integer", "index": 30, "name": "business_identification_code", "comment": null}, "city": {"type": "integer", "index": 31, "name": "city", "comment": null}, "company_name": {"type": "integer", "index": 32, "name": "company_name", "comment": null}, "country": {"type": "integer", "index": 33, "name": "country", "comment": null}, "created_by_id": {"type": "text", "index": 34, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 35, "name": "created_date", "comment": null}, "credit_card_address_1": {"type": "integer", "index": 36, "name": "credit_card_address_1", "comment": null}, "credit_card_address_2": {"type": "integer", "index": 37, "name": "credit_card_address_2", "comment": null}, "credit_card_city": {"type": "integer", "index": 38, "name": "credit_card_city", "comment": null}, "credit_card_country": {"type": "integer", "index": 39, "name": "credit_card_country", "comment": null}, "credit_card_expiration_month": {"type": "integer", "index": 40, "name": "credit_card_expiration_month", "comment": null}, "credit_card_expiration_year": {"type": "integer", "index": 41, "name": "credit_card_expiration_year", "comment": null}, "credit_card_holder_name": {"type": "integer", "index": 42, "name": "credit_card_holder_name", "comment": null}, "credit_card_mask_number": {"type": "integer", "index": 43, "name": "credit_card_mask_number", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 44, "name": "credit_card_postal_code", "comment": null}, "credit_card_state": {"type": "integer", "index": 45, "name": "credit_card_state", "comment": null}, "credit_card_type": {"type": "integer", "index": 46, "name": "credit_card_type", "comment": null}, "device_session_id": {"type": "integer", "index": 47, "name": "device_session_id", "comment": null}, "email": {"type": "integer", "index": 48, "name": "email", "comment": null}, "existing_mandate": {"type": "integer", "index": 49, "name": "existing_mandate", "comment": null}, "first_name": {"type": "integer", "index": 50, "name": "first_name", "comment": null}, "iban": {"type": "integer", "index": 51, "name": "iban", "comment": null}, "identity_number": {"type": "integer", "index": 52, "name": "identity_number", "comment": null}, "ipaddress": {"type": "integer", "index": 53, "name": "ipaddress", "comment": null}, "is_company": {"type": "boolean", "index": 54, "name": "is_company", "comment": null}, "last_failed_sale_transaction_date": {"type": "timestamp without time zone", "index": 55, "name": "last_failed_sale_transaction_date", "comment": null}, "last_name": {"type": "integer", "index": 56, "name": "last_name", "comment": null}, "last_transaction_date_time": {"type": "timestamp without time zone", "index": 57, "name": "last_transaction_date_time", "comment": null}, "last_transaction_status": {"type": "text", "index": 58, "name": "last_transaction_status", "comment": null}, "mandate_creation_date": {"type": "integer", "index": 59, "name": "mandate_creation_date", "comment": null}, "mandate_id": {"type": "integer", "index": 60, "name": "mandate_id", "comment": null}, "mandate_reason": {"type": "integer", "index": 61, "name": "mandate_reason", "comment": null}, "mandate_received": {"type": "integer", "index": 62, "name": "mandate_received", "comment": null}, "mandate_status": {"type": "integer", "index": 63, "name": "mandate_status", "comment": null}, "mandate_update_date": {"type": "integer", "index": 64, "name": "mandate_update_date", "comment": null}, "max_consecutive_payment_failures": {"type": "bigint", "index": 65, "name": "max_consecutive_payment_failures", "comment": null}, "method_reference_id": {"type": "integer", "index": 66, "name": "method_reference_id", "comment": null}, "method_specific_data": {"type": "integer", "index": 67, "name": "method_specific_data", "comment": null}, "name": {"type": "text", "index": 68, "name": "name", "comment": null}, "num_consecutive_failures": {"type": "bigint", "index": 69, "name": "num_consecutive_failures", "comment": null}, "payment_method_status": {"type": "text", "index": 70, "name": "payment_method_status", "comment": null}, "payment_retry_window": {"type": "integer", "index": 71, "name": "payment_retry_window", "comment": null}, "paypal_baid": {"type": "integer", "index": 72, "name": "paypal_baid", "comment": null}, "paypal_email": {"type": "integer", "index": 73, "name": "paypal_email", "comment": null}, "paypal_preapproval_key": {"type": "integer", "index": 74, "name": "paypal_preapproval_key", "comment": null}, "paypal_type": {"type": "integer", "index": 75, "name": "paypal_type", "comment": null}, "phone": {"type": "integer", "index": 76, "name": "phone", "comment": null}, "postal_code": {"type": "integer", "index": 77, "name": "postal_code", "comment": null}, "second_token_id": {"type": "integer", "index": 78, "name": "second_token_id", "comment": null}, "state": {"type": "integer", "index": 79, "name": "state", "comment": null}, "street_name": {"type": "integer", "index": 80, "name": "street_name", "comment": null}, "street_number": {"type": "integer", "index": 81, "name": "street_number", "comment": null}, "sub_type": {"type": "integer", "index": 82, "name": "sub_type", "comment": null}, "token_id": {"type": "integer", "index": 83, "name": "token_id", "comment": null}, "total_number_of_error_payments": {"type": "bigint", "index": 84, "name": "total_number_of_error_payments", "comment": null}, "total_number_of_processed_payments": {"type": "bigint", "index": 85, "name": "total_number_of_processed_payments", "comment": null}, "type": {"type": "text", "index": 86, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 87, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 88, "name": "updated_date", "comment": null}, "use_default_retry_rule": {"type": "boolean", "index": 89, "name": "use_default_retry_rule", "comment": null}, "user_reference_id": {"type": "integer", "index": 90, "name": "user_reference_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.payment_method"}, "source.zuora_source.zuora.product": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "allow_feature_changes": {"type": "boolean", "index": 4, "name": "allow_feature_changes", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "created_by_id": {"type": "text", "index": 6, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 7, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 9, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 10, "name": "effective_start_date", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "sku": {"type": "text", "index": 12, "name": "sku", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product"}, "source.zuora_source.zuora.product_rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 4, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 5, "name": "accounting_code", "comment": null}, "apply_discount_to": {"type": "text", "index": 6, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 7, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 8, "name": "bill_cycle_type", "comment": null}, "billing_period": {"type": "text", "index": 9, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 10, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 11, "name": "billing_timing", "comment": null}, "charge_model": {"type": "text", "index": 12, "name": "charge_model", "comment": null}, "charge_type": {"type": "text", "index": 13, "name": "charge_type", "comment": null}, "created_by_id": {"type": "text", "index": 14, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 15, "name": "created_date", "comment": null}, "default_quantity": {"type": "double precision", "index": 16, "name": "default_quantity", "comment": null}, "deferred_revenue_account": {"type": "text", "index": 17, "name": "deferred_revenue_account", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 18, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "discount_class_id": {"type": "integer", "index": 20, "name": "discount_class_id", "comment": null}, "discount_level": {"type": "text", "index": 21, "name": "discount_level", "comment": null}, "end_date_condition": {"type": "text", "index": 22, "name": "end_date_condition", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "integer", "index": 23, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "integer", "index": 24, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "included_units": {"type": "double precision", "index": 25, "name": "included_units", "comment": null}, "legacy_revenue_reporting": {"type": "boolean", "index": 26, "name": "legacy_revenue_reporting", "comment": null}, "list_price_base": {"type": "text", "index": 27, "name": "list_price_base", "comment": null}, "max_quantity": {"type": "double precision", "index": 28, "name": "max_quantity", "comment": null}, "min_quantity": {"type": "double precision", "index": 29, "name": "min_quantity", "comment": null}, "name": {"type": "text", "index": 30, "name": "name", "comment": null}, "number_of_period": {"type": "integer", "index": 31, "name": "number_of_period", "comment": null}, "overage_calculation_option": {"type": "text", "index": 32, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 33, "name": "overage_unused_units_credit_option", "comment": null}, "price_change_option": {"type": "text", "index": 34, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "integer", "index": 35, "name": "price_increase_percentage", "comment": null}, "product_id": {"type": "text", "index": 36, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 37, "name": "product_rate_plan_id", "comment": null}, "rating_group": {"type": "integer", "index": 38, "name": "rating_group", "comment": null}, "recognized_revenue_account": {"type": "text", "index": 39, "name": "recognized_revenue_account", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 40, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 41, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 42, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 43, "name": "revenue_recognition_rule_name", "comment": null}, "smoothing_model": {"type": "integer", "index": 44, "name": "smoothing_model", "comment": null}, "specific_billing_period": {"type": "bigint", "index": 45, "name": "specific_billing_period", "comment": null}, "tax_code": {"type": "text", "index": 46, "name": "tax_code", "comment": null}, "tax_mode": {"type": "text", "index": 47, "name": "tax_mode", "comment": null}, "taxable": {"type": "boolean", "index": 48, "name": "taxable", "comment": null}, "trigger_event": {"type": "text", "index": 49, "name": "trigger_event", "comment": null}, "uom": {"type": "integer", "index": 50, "name": "uom", "comment": null}, "up_to_periods": {"type": "bigint", "index": 51, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 52, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 53, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 54, "name": "updated_date", "comment": null}, "usage_record_rating_option": {"type": "integer", "index": 55, "name": "usage_record_rating_option", "comment": null}, "use_discount_specific_accounting_code": {"type": "boolean", "index": 56, "name": "use_discount_specific_accounting_code", "comment": null}, "use_tenant_default_for_price_change": {"type": "boolean", "index": 57, "name": "use_tenant_default_for_price_change", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 58, "name": "weekly_bill_cycle_day", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 59, "name": "specific_list_price_base", "comment": null}, "price_upsell_quantity_stacked": {"type": "boolean", "index": 60, "name": "price_upsell_quantity_stacked", "comment": null}, "is_stacked_discount": {"type": "boolean", "index": 61, "name": "is_stacked_discount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product_rate_plan_charge"}, "source.zuora_source.zuora.product_rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_product_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "effective_end_date": {"type": "date", "index": 7, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 8, "name": "effective_start_date", "comment": null}, "external_id_source_system": {"type": "integer", "index": 9, "name": "external_id_source_system", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "product_id": {"type": "text", "index": 11, "name": "product_id", "comment": null}, "promotion_code_c": {"type": "text", "index": 12, "name": "promotion_code_c", "comment": null}, "updated_by_id": {"type": "text", "index": 13, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 14, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.product_rate_plan"}, "source.zuora_source.zuora.rate_plan_charge": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_charge_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "amended_by_order_on": {"type": "date", "index": 7, "name": "amended_by_order_on", "comment": null}, "amendment_id": {"type": "text", "index": 8, "name": "amendment_id", "comment": null}, "apply_discount_to": {"type": "integer", "index": 9, "name": "apply_discount_to", "comment": null}, "bill_cycle_day": {"type": "bigint", "index": 10, "name": "bill_cycle_day", "comment": null}, "bill_cycle_type": {"type": "text", "index": 11, "name": "bill_cycle_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 12, "name": "bill_to_contact_id", "comment": null}, "bill_to_contact_snapshot_id": {"type": "text", "index": 13, "name": "bill_to_contact_snapshot_id", "comment": null}, "billing_period": {"type": "text", "index": 14, "name": "billing_period", "comment": null}, "billing_period_alignment": {"type": "text", "index": 15, "name": "billing_period_alignment", "comment": null}, "billing_timing": {"type": "text", "index": 16, "name": "billing_timing", "comment": null}, "booking_exchange_rate": {"type": "double precision", "index": 17, "name": "booking_exchange_rate", "comment": null}, "booking_exchange_rate_date": {"type": "date", "index": 18, "name": "booking_exchange_rate_date", "comment": null}, "booking_provider_exchange_rate_date": {"type": "date", "index": 19, "name": "booking_provider_exchange_rate_date", "comment": null}, "charge_model": {"type": "text", "index": 20, "name": "charge_model", "comment": null}, "charge_number": {"type": "text", "index": 21, "name": "charge_number", "comment": null}, "charge_type": {"type": "text", "index": 22, "name": "charge_type", "comment": null}, "charged_through_date": {"type": "date", "index": 23, "name": "charged_through_date", "comment": null}, "created_by_id": {"type": "text", "index": 24, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 25, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 26, "name": "default_payment_method_id", "comment": null}, "deferred_revenue_accounting_code_id": {"type": "text", "index": 27, "name": "deferred_revenue_accounting_code_id", "comment": null}, "description": {"type": "integer", "index": 28, "name": "description", "comment": null}, "discount_level": {"type": "integer", "index": 29, "name": "discount_level", "comment": null}, "dmrc": {"type": "double precision", "index": 30, "name": "dmrc", "comment": null}, "dmrccurrency_rounding": {"type": "integer", "index": 31, "name": "dmrccurrency_rounding", "comment": null}, "dmrchome_currency": {"type": "double precision", "index": 32, "name": "dmrchome_currency", "comment": null}, "drawdown_rate": {"type": "integer", "index": 33, "name": "drawdown_rate", "comment": null}, "drawdown_uom": {"type": "integer", "index": 34, "name": "drawdown_uom", "comment": null}, "dtcv": {"type": "double precision", "index": 35, "name": "dtcv", "comment": null}, "dtcvcurrency_rounding": {"type": "integer", "index": 36, "name": "dtcvcurrency_rounding", "comment": null}, "dtcvhome_currency": {"type": "double precision", "index": 37, "name": "dtcvhome_currency", "comment": null}, "effective_end_date": {"type": "date", "index": 38, "name": "effective_end_date", "comment": null}, "effective_start_date": {"type": "date", "index": 39, "name": "effective_start_date", "comment": null}, "end_date_condition": {"type": "text", "index": 40, "name": "end_date_condition", "comment": null}, "exchange_rate": {"type": "double precision", "index": 41, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "date", "index": 42, "name": "exchange_rate_date", "comment": null}, "exclude_item_billing_from_revenue_accounting": {"type": "boolean", "index": 43, "name": "exclude_item_billing_from_revenue_accounting", "comment": null}, "exclude_item_booking_from_revenue_accounting": {"type": "boolean", "index": 44, "name": "exclude_item_booking_from_revenue_accounting", "comment": null}, "home_currency": {"type": "text", "index": 45, "name": "home_currency", "comment": null}, "is_last_segment": {"type": "boolean", "index": 46, "name": "is_last_segment", "comment": null}, "is_prepaid": {"type": "boolean", "index": 47, "name": "is_prepaid", "comment": null}, "is_processed": {"type": "boolean", "index": 48, "name": "is_processed", "comment": null}, "list_price_base": {"type": "text", "index": 49, "name": "list_price_base", "comment": null}, "mrr": {"type": "double precision", "index": 50, "name": "mrr", "comment": null}, "mrrcurrency_rounding": {"type": "integer", "index": 51, "name": "mrrcurrency_rounding", "comment": null}, "mrrhome_currency": {"type": "double precision", "index": 52, "name": "mrrhome_currency", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "number_of_periods": {"type": "integer", "index": 54, "name": "number_of_periods", "comment": null}, "original_id": {"type": "text", "index": 55, "name": "original_id", "comment": null}, "original_order_date": {"type": "date", "index": 56, "name": "original_order_date", "comment": null}, "overage_calculation_option": {"type": "text", "index": 57, "name": "overage_calculation_option", "comment": null}, "overage_unused_units_credit_option": {"type": "text", "index": 58, "name": "overage_unused_units_credit_option", "comment": null}, "parent_account_id": {"type": "text", "index": 59, "name": "parent_account_id", "comment": null}, "payment_term_snapshot": {"type": "text", "index": 60, "name": "payment_term_snapshot", "comment": null}, "prepaid_operation_type": {"type": "integer", "index": 61, "name": "prepaid_operation_type", "comment": null}, "prepaid_quantity": {"type": "integer", "index": 62, "name": "prepaid_quantity", "comment": null}, "prepaid_total_quantity": {"type": "integer", "index": 63, "name": "prepaid_total_quantity", "comment": null}, "prepaid_uom": {"type": "integer", "index": 64, "name": "prepaid_uom", "comment": null}, "price_change_option": {"type": "text", "index": 65, "name": "price_change_option", "comment": null}, "price_increase_percentage": {"type": "double precision", "index": 66, "name": "price_increase_percentage", "comment": null}, "processed_through_date": {"type": "date", "index": 67, "name": "processed_through_date", "comment": null}, "product_id": {"type": "text", "index": 68, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 69, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 70, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "date", "index": 71, "name": "provider_exchange_rate_date", "comment": null}, "quantity": {"type": "double precision", "index": 72, "name": "quantity", "comment": null}, "rate_plan_id": {"type": "text", "index": 73, "name": "rate_plan_id", "comment": null}, "rating_group": {"type": "text", "index": 74, "name": "rating_group", "comment": null}, "recognized_revenue_accounting_code_id": {"type": "text", "index": 75, "name": "recognized_revenue_accounting_code_id", "comment": null}, "rev_rec_code": {"type": "integer", "index": 76, "name": "rev_rec_code", "comment": null}, "rev_rec_trigger_condition": {"type": "integer", "index": 77, "name": "rev_rec_trigger_condition", "comment": null}, "revenue_recognition_rule_name": {"type": "text", "index": 78, "name": "revenue_recognition_rule_name", "comment": null}, "segment": {"type": "integer", "index": 79, "name": "segment", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 80, "name": "sold_to_contact_id", "comment": null}, "sold_to_contact_snapshot_id": {"type": "text", "index": 81, "name": "sold_to_contact_snapshot_id", "comment": null}, "specific_billing_period": {"type": "integer", "index": 82, "name": "specific_billing_period", "comment": null}, "specific_end_date": {"type": "integer", "index": 83, "name": "specific_end_date", "comment": null}, "subscription_id": {"type": "text", "index": 84, "name": "subscription_id", "comment": null}, "tcv": {"type": "double precision", "index": 85, "name": "tcv", "comment": null}, "tcvcurrency_rounding": {"type": "integer", "index": 86, "name": "tcvcurrency_rounding", "comment": null}, "tcvhome_currency": {"type": "double precision", "index": 87, "name": "tcvhome_currency", "comment": null}, "transaction_currency": {"type": "text", "index": 88, "name": "transaction_currency", "comment": null}, "trigger_date": {"type": "integer", "index": 89, "name": "trigger_date", "comment": null}, "trigger_event": {"type": "text", "index": 90, "name": "trigger_event", "comment": null}, "uom": {"type": "text", "index": 91, "name": "uom", "comment": null}, "up_to_periods": {"type": "integer", "index": 92, "name": "up_to_periods", "comment": null}, "up_to_periods_type": {"type": "text", "index": 93, "name": "up_to_periods_type", "comment": null}, "updated_by_id": {"type": "text", "index": 94, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 95, "name": "updated_date", "comment": null}, "validity_period_type": {"type": "integer", "index": 96, "name": "validity_period_type", "comment": null}, "version": {"type": "integer", "index": 97, "name": "version", "comment": null}, "weekly_bill_cycle_day": {"type": "integer", "index": 98, "name": "weekly_bill_cycle_day", "comment": null}, "invoice_owner_id": {"type": "text", "index": 99, "name": "invoice_owner_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 100, "name": "subscription_owner_id", "comment": null}, "credit_option": {"type": "integer", "index": 101, "name": "credit_option", "comment": null}, "rollover_apply": {"type": "text", "index": 102, "name": "rollover_apply", "comment": null}, "rollover_periods": {"type": "integer", "index": 103, "name": "rollover_periods", "comment": null}, "is_rollover": {"type": "boolean", "index": 104, "name": "is_rollover", "comment": null}, "specific_list_price_base": {"type": "integer", "index": 105, "name": "specific_list_price_base", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.rate_plan_charge"}, "source.zuora_source.zuora.rate_plan": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_rate_plan_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "amendment_id": {"type": "text", "index": 5, "name": "amendment_id", "comment": null}, "amendment_type": {"type": "text", "index": 6, "name": "amendment_type", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 7, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "default_payment_method_id": {"type": "text", "index": 10, "name": "default_payment_method_id", "comment": null}, "externally_managed_plan_id": {"type": "integer", "index": 11, "name": "externally_managed_plan_id", "comment": null}, "invoice_owner_id": {"type": "text", "index": 12, "name": "invoice_owner_id", "comment": null}, "name": {"type": "text", "index": 13, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 14, "name": "parent_account_id", "comment": null}, "product_id": {"type": "text", "index": 15, "name": "product_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 16, "name": "product_rate_plan_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 17, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 18, "name": "subscription_id", "comment": null}, "subscription_owner_id": {"type": "text", "index": 19, "name": "subscription_owner_id", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 20, "name": "subscription_version_amendment_id", "comment": null}, "updated_by_id": {"type": "text", "index": 21, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 22, "name": "updated_date", "comment": null}, "original_rate_plan_id": {"type": "text", "index": 23, "name": "original_rate_plan_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.rate_plan"}, "source.zuora_source.zuora.refund": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounting_code": {"type": "text", "index": 4, "name": "accounting_code", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "cancelled_on": {"type": "timestamp without time zone", "index": 6, "name": "cancelled_on", "comment": null}, "comment": {"type": "integer", "index": 7, "name": "comment", "comment": null}, "created_by_id": {"type": "text", "index": 8, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 9, "name": "created_date", "comment": null}, "gateway": {"type": "integer", "index": 10, "name": "gateway", "comment": null}, "gateway_reconciliation_reason": {"type": "integer", "index": 11, "name": "gateway_reconciliation_reason", "comment": null}, "gateway_reconciliation_status": {"type": "integer", "index": 12, "name": "gateway_reconciliation_status", "comment": null}, "gateway_response": {"type": "integer", "index": 13, "name": "gateway_response", "comment": null}, "gateway_response_code": {"type": "integer", "index": 14, "name": "gateway_response_code", "comment": null}, "gateway_state": {"type": "integer", "index": 15, "name": "gateway_state", "comment": null}, "marked_for_submission_on": {"type": "text", "index": 16, "name": "marked_for_submission_on", "comment": null}, "method_type": {"type": "text", "index": 17, "name": "method_type", "comment": null}, "payment_method_id": {"type": "text", "index": 18, "name": "payment_method_id", "comment": null}, "payout_id": {"type": "integer", "index": 19, "name": "payout_id", "comment": null}, "reason_code": {"type": "integer", "index": 20, "name": "reason_code", "comment": null}, "reference_id": {"type": "integer", "index": 21, "name": "reference_id", "comment": null}, "refund_date": {"type": "integer", "index": 22, "name": "refund_date", "comment": null}, "refund_number": {"type": "integer", "index": 23, "name": "refund_number", "comment": null}, "refund_transaction_time": {"type": "timestamp without time zone", "index": 24, "name": "refund_transaction_time", "comment": null}, "second_refund_reference_id": {"type": "integer", "index": 25, "name": "second_refund_reference_id", "comment": null}, "soft_descriptor": {"type": "integer", "index": 26, "name": "soft_descriptor", "comment": null}, "soft_descriptor_phone": {"type": "integer", "index": 27, "name": "soft_descriptor_phone", "comment": null}, "source_type": {"type": "text", "index": 28, "name": "source_type", "comment": null}, "status": {"type": "text", "index": 29, "name": "status", "comment": null}, "submitted_on": {"type": "timestamp without time zone", "index": 30, "name": "submitted_on", "comment": null}, "transferred_to_accounting": {"type": "text", "index": 31, "name": "transferred_to_accounting", "comment": null}, "type": {"type": "text", "index": 32, "name": "type", "comment": null}, "updated_by_id": {"type": "text", "index": 33, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 34, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.refund"}, "source.zuora_source.zuora.refund_invoice_payment": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_refund_invoice_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_by_id": {"type": "text", "index": 4, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 5, "name": "created_date", "comment": null}, "refund_amount": {"type": "integer", "index": 6, "name": "refund_amount", "comment": null}, "updated_by_id": {"type": "text", "index": 7, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 8, "name": "updated_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.refund_invoice_payment"}, "source.zuora_source.zuora.subscription": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_subscription_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "auto_renew": {"type": "boolean", "index": 5, "name": "auto_renew", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 6, "name": "bill_to_contact_id", "comment": null}, "cancelled_date": {"type": "timestamp without time zone", "index": 7, "name": "cancelled_date", "comment": null}, "contract_acceptance_date": {"type": "timestamp without time zone", "index": 8, "name": "contract_acceptance_date", "comment": null}, "contract_effective_date": {"type": "timestamp without time zone", "index": 9, "name": "contract_effective_date", "comment": null}, "cpq_bundle_json_id_qt": {"type": "integer", "index": 10, "name": "cpq_bundle_json_id_qt", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "creator_account_id": {"type": "text", "index": 13, "name": "creator_account_id", "comment": null}, "creator_invoice_owner_id": {"type": "text", "index": 14, "name": "creator_invoice_owner_id", "comment": null}, "current_term": {"type": "bigint", "index": 15, "name": "current_term", "comment": null}, "current_term_period_type": {"type": "text", "index": 16, "name": "current_term_period_type", "comment": null}, "default_payment_method_id": {"type": "text", "index": 17, "name": "default_payment_method_id", "comment": null}, "initial_term": {"type": "bigint", "index": 18, "name": "initial_term", "comment": null}, "initial_term_period_type": {"type": "text", "index": 19, "name": "initial_term_period_type", "comment": null}, "invoice_owner_id": {"type": "text", "index": 20, "name": "invoice_owner_id", "comment": null}, "is_invoice_separate": {"type": "boolean", "index": 21, "name": "is_invoice_separate", "comment": null}, "name": {"type": "text", "index": 22, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 23, "name": "notes", "comment": null}, "opportunity_close_date_qt": {"type": "integer", "index": 24, "name": "opportunity_close_date_qt", "comment": null}, "opportunity_name_qt": {"type": "integer", "index": 25, "name": "opportunity_name_qt", "comment": null}, "original_created_date": {"type": "timestamp without time zone", "index": 26, "name": "original_created_date", "comment": null}, "original_id": {"type": "text", "index": 27, "name": "original_id", "comment": null}, "parent_account_id": {"type": "integer", "index": 28, "name": "parent_account_id", "comment": null}, "previous_subscription_id": {"type": "text", "index": 29, "name": "previous_subscription_id", "comment": null}, "quote_business_type_qt": {"type": "integer", "index": 30, "name": "quote_business_type_qt", "comment": null}, "quote_number_qt": {"type": "integer", "index": 31, "name": "quote_number_qt", "comment": null}, "quote_type_qt": {"type": "integer", "index": 32, "name": "quote_type_qt", "comment": null}, "renewal_setting": {"type": "text", "index": 33, "name": "renewal_setting", "comment": null}, "renewal_term": {"type": "bigint", "index": 34, "name": "renewal_term", "comment": null}, "renewal_term_period_type": {"type": "text", "index": 35, "name": "renewal_term_period_type", "comment": null}, "service_activation_date": {"type": "timestamp without time zone", "index": 36, "name": "service_activation_date", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 37, "name": "sold_to_contact_id", "comment": null}, "status": {"type": "text", "index": 38, "name": "status", "comment": null}, "subscription_end_date": {"type": "timestamp without time zone", "index": 39, "name": "subscription_end_date", "comment": null}, "subscription_start_date": {"type": "timestamp without time zone", "index": 40, "name": "subscription_start_date", "comment": null}, "subscription_version_amendment_id": {"type": "text", "index": 41, "name": "subscription_version_amendment_id", "comment": null}, "term_end_date": {"type": "timestamp without time zone", "index": 42, "name": "term_end_date", "comment": null}, "term_start_date": {"type": "timestamp without time zone", "index": 43, "name": "term_start_date", "comment": null}, "term_type": {"type": "text", "index": 44, "name": "term_type", "comment": null}, "updated_by_id": {"type": "text", "index": 45, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 46, "name": "updated_date", "comment": null}, "version": {"type": "bigint", "index": 47, "name": "version", "comment": null}, "is_latest_version": {"type": "boolean", "index": 48, "name": "is_latest_version", "comment": null}, "cancel_reason": {"type": "integer", "index": 49, "name": "cancel_reason", "comment": null}, "externally_managed_by": {"type": "integer", "index": 50, "name": "externally_managed_by", "comment": null}, "payment_term": {"type": "integer", "index": 51, "name": "payment_term", "comment": null}, "testcustomaakash_c": {"type": "text", "index": 52, "name": "testcustomaakash_c", "comment": null}, "last_booking_date": {"type": "date", "index": 53, "name": "last_booking_date", "comment": null}, "revision": {"type": "integer", "index": 54, "name": "revision", "comment": null}, "custom_date_field_c": {"type": "integer", "index": 55, "name": "custom_date_field_c", "comment": null}, "invoice_template_id": {"type": "integer", "index": 56, "name": "invoice_template_id", "comment": null}, "sequence_set_id": {"type": "integer", "index": 57, "name": "sequence_set_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.subscription"}, "source.zuora_source.zuora.taxation_item": {"metadata": {"type": "BASE TABLE", "schema": "zuora_source_integration_tests", "name": "zuora_taxation_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_receivable_accounting_code_id": {"type": "text", "index": 5, "name": "account_receivable_accounting_code_id", "comment": null}, "accounting_code": {"type": "text", "index": 6, "name": "accounting_code", "comment": null}, "accounting_period_id": {"type": "integer", "index": 7, "name": "accounting_period_id", "comment": null}, "amendment_id": {"type": "integer", "index": 8, "name": "amendment_id", "comment": null}, "balance": {"type": "double precision", "index": 9, "name": "balance", "comment": null}, "bill_to_contact_id": {"type": "text", "index": 10, "name": "bill_to_contact_id", "comment": null}, "created_by_id": {"type": "text", "index": 11, "name": "created_by_id", "comment": null}, "created_date": {"type": "timestamp without time zone", "index": 12, "name": "created_date", "comment": null}, "credit_amount": {"type": "integer", "index": 13, "name": "credit_amount", "comment": null}, "default_payment_method_id": {"type": "text", "index": 14, "name": "default_payment_method_id", "comment": null}, "exchange_rate": {"type": "double precision", "index": 15, "name": "exchange_rate", "comment": null}, "exchange_rate_date": {"type": "text", "index": 16, "name": "exchange_rate_date", "comment": null}, "exempt_amount": {"type": "integer", "index": 17, "name": "exempt_amount", "comment": null}, "exempt_amount_currency_rounding": {"type": "integer", "index": 18, "name": "exempt_amount_currency_rounding", "comment": null}, "exempt_amount_home_currency": {"type": "integer", "index": 19, "name": "exempt_amount_home_currency", "comment": null}, "home_currency": {"type": "text", "index": 20, "name": "home_currency", "comment": null}, "invoice_id": {"type": "text", "index": 21, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 22, "name": "invoice_item_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 23, "name": "journal_entry_id", "comment": null}, "journal_run_id": {"type": "integer", "index": 24, "name": "journal_run_id", "comment": null}, "jurisdiction": {"type": "text", "index": 25, "name": "jurisdiction", "comment": null}, "location_code": {"type": "integer", "index": 26, "name": "location_code", "comment": null}, "name": {"type": "text", "index": 27, "name": "name", "comment": null}, "payment_amount": {"type": "integer", "index": 28, "name": "payment_amount", "comment": null}, "product_id": {"type": "text", "index": 29, "name": "product_id", "comment": null}, "product_rate_plan_charge_id": {"type": "text", "index": 30, "name": "product_rate_plan_charge_id", "comment": null}, "product_rate_plan_id": {"type": "text", "index": 31, "name": "product_rate_plan_id", "comment": null}, "provider_exchange_rate_date": {"type": "text", "index": 32, "name": "provider_exchange_rate_date", "comment": null}, "rate_plan_charge_id": {"type": "text", "index": 33, "name": "rate_plan_charge_id", "comment": null}, "rate_plan_id": {"type": "text", "index": 34, "name": "rate_plan_id", "comment": null}, "sales_tax_payable_accounting_code_id": {"type": "text", "index": 35, "name": "sales_tax_payable_accounting_code_id", "comment": null}, "sold_to_contact_id": {"type": "text", "index": 36, "name": "sold_to_contact_id", "comment": null}, "subscription_id": {"type": "text", "index": 37, "name": "subscription_id", "comment": null}, "tax_amount": {"type": "double precision", "index": 38, "name": "tax_amount", "comment": null}, "tax_amount_currency_rounding": {"type": "integer", "index": 39, "name": "tax_amount_currency_rounding", "comment": null}, "tax_amount_home_currency": {"type": "integer", "index": 40, "name": "tax_amount_home_currency", "comment": null}, "tax_code": {"type": "text", "index": 41, "name": "tax_code", "comment": null}, "tax_code_description": {"type": "integer", "index": 42, "name": "tax_code_description", "comment": null}, "tax_date": {"type": "timestamp without time zone", "index": 43, "name": "tax_date", "comment": null}, "tax_mode": {"type": "text", "index": 44, "name": "tax_mode", "comment": null}, "tax_rate": {"type": "double precision", "index": 45, "name": "tax_rate", "comment": null}, "tax_rate_description": {"type": "text", "index": 46, "name": "tax_rate_description", "comment": null}, "tax_rate_type": {"type": "text", "index": 47, "name": "tax_rate_type", "comment": null}, "transaction_currency": {"type": "text", "index": 48, "name": "transaction_currency", "comment": null}, "updated_by_id": {"type": "text", "index": 49, "name": "updated_by_id", "comment": null}, "updated_date": {"type": "timestamp without time zone", "index": 50, "name": "updated_date", "comment": null}, "parent_account_id": {"type": "text", "index": 51, "name": "parent_account_id", "comment": null}, "seller_registration": {"type": "integer", "index": 52, "name": "seller_registration", "comment": null}, "tax_description": {"type": "integer", "index": 53, "name": "tax_description", "comment": null}, "customer_code": {"type": "integer", "index": 54, "name": "customer_code", "comment": null}, "tax_rule_id": {"type": "integer", "index": 55, "name": "tax_rule_id", "comment": null}, "exempt_certificate": {"type": "integer", "index": 56, "name": "exempt_certificate", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zuora_source.zuora.taxation_item"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 5631ac6..2bcc794 100644 --- a/docs/index.html +++ b/docs/index.html @@ -24,7 +24,7 @@
-