diff --git a/.github/workflows/check_docs.yml b/.github/workflows/check_docs.yml new file mode 100644 index 0000000..5db0fc8 --- /dev/null +++ b/.github/workflows/check_docs.yml @@ -0,0 +1,35 @@ +name: 'check docs' +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + changed-files: + runs-on: ubuntu-latest + name: test changed-files + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@v29.0.4 + with: + files: docs/** + + - name: Check to see if docs folder hasn't changed + if: steps.changed-files.outputs.any_changed == 'false' + run: | + echo "Docs have not been regenerated." + exit 1 + + - name: Check if docs folder has changed + if: steps.changed-files.outputs.any_changed == 'true' + run: | + echo "Docs have been regenerated!" + exit 0 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 2710741..04930fd 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,4 @@ target/ dbt_modules/ logs/ - dbt_packages/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6c9f8..f25b52d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# dbt_quickbooks_source v0.5.1 +## Features +- Addition of the `credit_card_payment_txn` (enabled/disabled using the `using_credit_card_payment_txn` variable) source as well as the accompanying staging models. This source includes all credit card payment transactions and will be used in downstream General Ledger generation to ensure accurate reporting of all transaction types. ([#29](https://github.com/fivetran/dbt_quickbooks_source/pull/29)) + >**Note**: the `credit_card_payment_txn` source and models are disabled by default. In order to enabled them, you will want to set the `using_credit_card_payment_txn` variable to `true` in your dbt_project.yml. + +## Under the Hood +- A GitHub workflow has been added to ensure the dbt docs are regenerated before each merge to the `main` release branch. # dbt_quickbooks_source v0.5.0 ## 🚨 Breaking Changes 🚨 - It was discovered that IDs from the source tables can sometimes be strings. The previous build of the package interpreted all IDs as integers. To ensure the package operates as intended, the package has been updated to cast all IDs to the string datatype. If you were leveraging the end models in downstream analysis, this change could break your join conditions. Be sure to be aware of any join conditions you may have downstream before upgrading your QuickBooks package. ([#36](https://github.com/fivetran/dbt_quickbooks/pull/36)) ([#25](https://github.com/fivetran/dbt_quickbooks_source/pull/25)) ([#24](https://github.com/fivetran/dbt_quickbooks_source/pull/24)) diff --git a/README.md b/README.md index 429ce40..35fba1d 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ models: ``` ### Disabling models -This package takes into consideration that not every QuickBooks account utilizes the same transactional tables, and allows you to disable the corresponding functionality. By default, most variables' values are assumed to be `true` (with exception of purchase orders). Add variables for only the tables you want to disable or enable respectively: +This package takes into consideration that not every QuickBooks account utilizes the same transactional tables, and allows you to disable the corresponding functionality. By default, most variables' values are assumed to be `true` (with exception of purchase orders and credit card payments). Add variables for only the tables you want to disable or enable respectively: ```yml # dbt_project.yml @@ -79,6 +79,7 @@ vars: using_vendor_credit: false #disable if you don't have vendor credits in QuickBooks using_sales_receipt: false #disable if you don't have sales receipts in QuickBooks using_purchase_order: true #enable if you want to include purchase orders in your staging models + using_credit_card_payment_txn: true #enable if you want to include credit card payment transactions in your staging models ``` ## Contributions diff --git a/dbt_project.yml b/dbt_project.yml index 7342510..c10c830 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -19,6 +19,7 @@ vars: bill: "{{ source('quickbooks','bill') }}" bundle_item: "{{ source('quickbooks','bundle_item') }}" bundle: "{{ source('quickbooks','bundle') }}" + credit_card_payment_txn: "{{ source('quickbooks','credit_card_payment_txn') }}" credit_memo_line: "{{ source('quickbooks','credit_memo_line') }}" credit_memo: "{{ source('quickbooks','credit_memo') }}" customer: "{{ source('quickbooks','customer') }}" diff --git a/docs/catalog.json b/docs/catalog.json index 30e06e9..9cc6c80 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": "0.19.0", "generated_at": "2021-03-11T16:18:36.309559Z", "invocation_id": "fd1112b1-d87b-4c9c-b6d0-769ca5bc7bf3", "env": {}}, "nodes": {"seed.quickbooks_source_integration_tests.purchase_order_linked_txn_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "purchase_order_linked_txn_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_order_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_order_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "bill_id": {"type": "INT64", "comment": null, "index": 4, "name": "bill_id"}, "purchase_id": {"type": "INT64", "comment": null, "index": 5, "name": "purchase_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 6, "name": "vendor_credit_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 9.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 288.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.purchase_order_linked_txn_data"}, "seed.quickbooks_source_integration_tests.bill_linked_txn_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bill_linked_txn_data", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "bill_payment_id": {"type": "INT64", "comment": null, "index": 4, "name": "bill_payment_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 320.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bill_linked_txn_data"}, "seed.quickbooks_source_integration_tests.purchase_order_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "purchase_order_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_order_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_order_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "INT64", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "FLOAT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "STRING", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "FLOAT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1038.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.purchase_order_line_data"}, "seed.quickbooks_source_integration_tests.bill_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bill_line_data", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1420.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bill_line_data"}, "seed.quickbooks_source_integration_tests.credit_memo_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "credit_memo_line_data", "comment": null, "owner": null}, "columns": {"credit_memo_id": {"type": "INT64", "comment": null, "index": 1, "name": "credit_memo_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "FLOAT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 9.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 911.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.credit_memo_line_data"}, "seed.quickbooks_source_integration_tests.bundle_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bundle_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 5, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 6, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "print_grouped_items": {"type": "BOOL", "comment": null, "index": 8, "name": "print_grouped_items"}, "purchase_cost": {"type": "INT64", "comment": null, "index": 9, "name": "purchase_cost"}, "sync_token": {"type": "INT64", "comment": null, "index": 10, "name": "sync_token"}, "taxable": {"type": "BOOL", "comment": null, "index": 11, "name": "taxable"}, "unit_price": {"type": "INT64", "comment": null, "index": 12, "name": "unit_price"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 13, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1304.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bundle_data"}, "seed.quickbooks_source_integration_tests.invoice_line_bundle_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "invoice_line_bundle_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "amount": {"type": "FLOAT64", "comment": null, "index": 5, "name": "amount"}, "class_id": {"type": "INT64", "comment": null, "index": 6, "name": "class_id"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "discount_amount": {"type": "INT64", "comment": null, "index": 8, "name": "discount_amount"}, "discount_rate": {"type": "INT64", "comment": null, "index": 9, "name": "discount_rate"}, "invoice_line_index": {"type": "INT64", "comment": null, "index": 10, "name": "invoice_line_index"}, "item_id": {"type": "INT64", "comment": null, "index": 11, "name": "item_id"}, "line_num": {"type": "INT64", "comment": null, "index": 12, "name": "line_num"}, "quantity": {"type": "FLOAT64", "comment": null, "index": 13, "name": "quantity"}, "service_date": {"type": "INT64", "comment": null, "index": 14, "name": "service_date"}, "tax_code_id": {"type": "STRING", "comment": null, "index": 15, "name": "tax_code_id"}, "unit_price": {"type": "INT64", "comment": null, "index": 16, "name": "unit_price"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_quantity"}, "sales_item_tax_code_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_account_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1173.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.invoice_line_bundle_data"}, "seed.quickbooks_source_integration_tests.refund_receipt_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "refund_receipt_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "INT64", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "check_payment_account_number": {"type": "INT64", "comment": null, "index": 8, "name": "check_payment_account_number"}, "check_payment_bank_name": {"type": "INT64", "comment": null, "index": 9, "name": "check_payment_bank_name"}, "check_payment_check_number": {"type": "INT64", "comment": null, "index": 10, "name": "check_payment_check_number"}, "check_payment_name_on_account": {"type": "INT64", "comment": null, "index": 11, "name": "check_payment_name_on_account"}, "check_payment_status": {"type": "INT64", "comment": null, "index": 12, "name": "check_payment_status"}, "class_id": {"type": "INT64", "comment": null, "index": 13, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 14, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 17, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 18, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 19, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 20, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 21, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 22, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 23, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 24, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 25, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 26, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 27, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 28, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 29, "name": "customer_memo"}, "department_id": {"type": "INT64", "comment": null, "index": 30, "name": "department_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 31, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 32, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 33, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 34, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 35, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 36, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 37, "name": "payment_method_id"}, "payment_reference_number": {"type": "INT64", "comment": null, "index": 38, "name": "payment_reference_number"}, "payment_type": {"type": "INT64", "comment": null, "index": 39, "name": "payment_type"}, "print_status": {"type": "INT64", "comment": null, "index": 40, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 41, "name": "private_note"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 42, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 43, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 44, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 45, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 46, "name": "total_tax"}, "transaction_date": {"type": "INT64", "comment": null, "index": 47, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 48, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 49, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 212.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.refund_receipt_data"}, "seed.quickbooks_source_integration_tests.sales_receipt_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "sales_receipt_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "sales_receipt_id": {"type": "INT64", "comment": null, "index": 2, "name": "sales_receipt_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1320.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.sales_receipt_line_data"}, "seed.quickbooks_source_integration_tests.item_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "item_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "asset_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "asset_account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "INT64", "comment": null, "index": 6, "name": "description"}, "expense_account_id": {"type": "INT64", "comment": null, "index": 7, "name": "expense_account_id"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 8, "name": "fully_qualified_name"}, "income_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "income_account_id"}, "inventory_start_date": {"type": "INT64", "comment": null, "index": 10, "name": "inventory_start_date"}, "level": {"type": "INT64", "comment": null, "index": 11, "name": "level"}, "name": {"type": "STRING", "comment": null, "index": 12, "name": "name"}, "parent_item_id": {"type": "INT64", "comment": null, "index": 13, "name": "parent_item_id"}, "purchase_cost": {"type": "INT64", "comment": null, "index": 14, "name": "purchase_cost"}, "purchase_description": {"type": "INT64", "comment": null, "index": 15, "name": "purchase_description"}, "purchase_tax_code_id": {"type": "INT64", "comment": null, "index": 16, "name": "purchase_tax_code_id"}, "purchase_tax_included": {"type": "INT64", "comment": null, "index": 17, "name": "purchase_tax_included"}, "quantity_on_hand": {"type": "INT64", "comment": null, "index": 18, "name": "quantity_on_hand"}, "sales_tax_code_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_tax_code_id"}, "sales_tax_included": {"type": "INT64", "comment": null, "index": 20, "name": "sales_tax_included"}, "stock_keeping_unit": {"type": "INT64", "comment": null, "index": 21, "name": "stock_keeping_unit"}, "sub_item": {"type": "INT64", "comment": null, "index": 22, "name": "sub_item"}, "sync_token": {"type": "INT64", "comment": null, "index": 23, "name": "sync_token"}, "taxable": {"type": "BOOL", "comment": null, "index": 24, "name": "taxable"}, "track_quantity_on_hand": {"type": "BOOL", "comment": null, "index": 25, "name": "track_quantity_on_hand"}, "type": {"type": "STRING", "comment": null, "index": 26, "name": "type"}, "unit_price": {"type": "INT64", "comment": null, "index": 27, "name": "unit_price"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 28, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 507.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.item_data"}, "seed.quickbooks_source_integration_tests.bill_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bill_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "balance": {"type": "INT64", "comment": null, "index": 4, "name": "balance"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "doc_number": {"type": "DATE", "comment": null, "index": 8, "name": "doc_number"}, "due_date": {"type": "DATE", "comment": null, "index": 9, "name": "due_date"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 10, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 11, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 12, "name": "home_balance"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 13, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 14, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_term_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 16, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 17, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 18, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 20, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 784.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bill_data"}, "seed.quickbooks_source_integration_tests.vendor_credit_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "vendor_credit_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 2, "name": "vendor_credit_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}, "private_note": {"type": "INT64", "comment": null, "index": 19, "name": "private_note"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 226.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.vendor_credit_line_data"}, "seed.quickbooks_source_integration_tests.estimate_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "estimate_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "accepted_by": {"type": "INT64", "comment": null, "index": 4, "name": "accepted_by"}, "accepted_date": {"type": "INT64", "comment": null, "index": 5, "name": "accepted_date"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 6, "name": "apply_tax_after_discount"}, "bill_email": {"type": "STRING", "comment": null, "index": 7, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 8, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 9, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 11, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 12, "name": "custom_p_o_number"}, "custom_sales_rep": {"type": "INT64", "comment": null, "index": 13, "name": "custom_sales_rep"}, "customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 15, "name": "customer_memo"}, "delivery_type": {"type": "INT64", "comment": null, "index": 16, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 17, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 18, "name": "doc_number"}, "due_date": {"type": "INT64", "comment": null, "index": 19, "name": "due_date"}, "email_status": {"type": "STRING", "comment": null, "index": 20, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 21, "name": "exchange_rate"}, "expiration_date": {"type": "INT64", "comment": null, "index": 22, "name": "expiration_date"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 23, "name": "global_tax_calculation"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 24, "name": "home_total_amount"}, "print_status": {"type": "STRING", "comment": null, "index": 25, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 26, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 27, "name": "sales_term_id"}, "ship_date": {"type": "INT64", "comment": null, "index": 28, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 29, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 30, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 31, "name": "tax_code_id"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 32, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 33, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 34, "name": "transaction_date"}, "transaction_status": {"type": "STRING", "comment": null, "index": 35, "name": "transaction_status"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 36, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1714.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.estimate_data"}, "seed.quickbooks_source_integration_tests.refund_receipt_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "refund_receipt_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "refund_id": {"type": "INT64", "comment": null, "index": 2, "name": "refund_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 312.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.refund_receipt_line_data"}, "seed.quickbooks_source_integration_tests.deposit_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "deposit_line_data", "comment": null, "owner": null}, "columns": {"deposit_id": {"type": "INT64", "comment": null, "index": 1, "name": "deposit_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "deposit_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_account_id"}, "deposit_check_number": {"type": "INT64", "comment": null, "index": 6, "name": "deposit_check_number"}, "deposit_class_id": {"type": "INT64", "comment": null, "index": 7, "name": "deposit_class_id"}, "deposit_customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "deposit_customer_id"}, "deposit_payment_method_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_payment_method_id"}, "deposit_tax_applicable_on": {"type": "INT64", "comment": null, "index": 10, "name": "deposit_tax_applicable_on"}, "deposit_tax_code_id": {"type": "INT64", "comment": null, "index": 11, "name": "deposit_tax_code_id"}, "deposit_transaction_type": {"type": "INT64", "comment": null, "index": 12, "name": "deposit_transaction_type"}, "description": {"type": "STRING", "comment": null, "index": 13, "name": "description"}, "detail_type": {"type": "STRING", "comment": null, "index": 14, "name": "detail_type"}, "expense_id": {"type": "INT64", "comment": null, "index": 15, "name": "expense_id"}, "invoice_id": {"type": "INT64", "comment": null, "index": 16, "name": "invoice_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 17, "name": "journal_entry_id"}, "payment_id": {"type": "INT64", "comment": null, "index": 18, "name": "payment_id"}, "purchase_id": {"type": "INT64", "comment": null, "index": 19, "name": "purchase_id"}, "refund_receipt_id": {"type": "INT64", "comment": null, "index": 20, "name": "refund_receipt_id"}, "sales_receipt_id": {"type": "INT64", "comment": null, "index": 21, "name": "sales_receipt_id"}, "transfer_id": {"type": "INT64", "comment": null, "index": 22, "name": "transfer_id"}, "bill_id": {"type": "INT64", "comment": null, "index": 23, "name": "bill_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 24, "name": "vendor_credit_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 788.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.deposit_line_data"}, "seed.quickbooks_source_integration_tests.purchase_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "purchase_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "credit": {"type": "INT64", "comment": null, "index": 6, "name": "credit"}, "currency_id": {"type": "STRING", "comment": null, "index": 7, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 10, "name": "doc_number"}, "employee_id": {"type": "INT64", "comment": null, "index": 11, "name": "employee_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 12, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 13, "name": "global_tax_calculation"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 14, "name": "payment_method_id"}, "payment_type": {"type": "STRING", "comment": null, "index": 15, "name": "payment_type"}, "print_status": {"type": "INT64", "comment": null, "index": 16, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 17, "name": "private_note"}, "remit_to_address_id": {"type": "INT64", "comment": null, "index": 18, "name": "remit_to_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 19, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 20, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 21, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 22, "name": "total_tax"}, "transaction_date": {"type": "INT64", "comment": null, "index": 23, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 24, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 25, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 26, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 572.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.purchase_data"}, "seed.quickbooks_source_integration_tests.payment_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "payment_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "payment_id": {"type": "INT64", "comment": null, "index": 2, "name": "payment_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "FLOAT64", "comment": null, "index": 4, "name": "amount"}, "check_id": {"type": "INT64", "comment": null, "index": 5, "name": "check_id"}, "credit_card_charge_id": {"type": "INT64", "comment": null, "index": 6, "name": "credit_card_charge_id"}, "credit_card_credit_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_credit_id"}, "credit_memo_id": {"type": "INT64", "comment": null, "index": 8, "name": "credit_memo_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_id"}, "expense_id": {"type": "INT64", "comment": null, "index": 10, "name": "expense_id"}, "invoice_id": {"type": "INT64", "comment": null, "index": 11, "name": "invoice_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 12, "name": "journal_entry_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 440.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.payment_line_data"}, "seed.quickbooks_source_integration_tests.address_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "address_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "city": {"type": "STRING", "comment": null, "index": 3, "name": "city"}, "country": {"type": "STRING", "comment": null, "index": 4, "name": "country"}, "country_sub_division_code": {"type": "STRING", "comment": null, "index": 5, "name": "country_sub_division_code"}, "latitude": {"type": "INT64", "comment": null, "index": 6, "name": "latitude"}, "line_1": {"type": "STRING", "comment": null, "index": 7, "name": "line_1"}, "line_2": {"type": "STRING", "comment": null, "index": 8, "name": "line_2"}, "line_3": {"type": "INT64", "comment": null, "index": 9, "name": "line_3"}, "line_4": {"type": "INT64", "comment": null, "index": 10, "name": "line_4"}, "line_5": {"type": "INT64", "comment": null, "index": 11, "name": "line_5"}, "longitude": {"type": "INT64", "comment": null, "index": 12, "name": "longitude"}, "postal_code": {"type": "INT64", "comment": null, "index": 13, "name": "postal_code"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 116.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.address_data"}, "seed.quickbooks_source_integration_tests.vendor_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "vendor_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "account_number": {"type": "INT64", "comment": null, "index": 3, "name": "account_number"}, "active": {"type": "BOOL", "comment": null, "index": 4, "name": "active"}, "alternate_phone": {"type": "INT64", "comment": null, "index": 5, "name": "alternate_phone"}, "balance": {"type": "INT64", "comment": null, "index": 6, "name": "balance"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "company_name": {"type": "STRING", "comment": null, "index": 8, "name": "company_name"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "display_name": {"type": "STRING", "comment": null, "index": 11, "name": "display_name"}, "email": {"type": "STRING", "comment": null, "index": 12, "name": "email"}, "family_name": {"type": "INT64", "comment": null, "index": 13, "name": "family_name"}, "fax_number": {"type": "INT64", "comment": null, "index": 14, "name": "fax_number"}, "given_name": {"type": "INT64", "comment": null, "index": 15, "name": "given_name"}, "middle_name": {"type": "INT64", "comment": null, "index": 16, "name": "middle_name"}, "mobile_phone": {"type": "INT64", "comment": null, "index": 17, "name": "mobile_phone"}, "other_contacts": {"type": "INT64", "comment": null, "index": 18, "name": "other_contacts"}, "primary_phone": {"type": "INT64", "comment": null, "index": 19, "name": "primary_phone"}, "print_on_check_name": {"type": "STRING", "comment": null, "index": 20, "name": "print_on_check_name"}, "suffix": {"type": "INT64", "comment": null, "index": 21, "name": "suffix"}, "sync_token": {"type": "INT64", "comment": null, "index": 22, "name": "sync_token"}, "tax_identifier": {"type": "INT64", "comment": null, "index": 23, "name": "tax_identifier"}, "term_id": {"type": "INT64", "comment": null, "index": 24, "name": "term_id"}, "title": {"type": "INT64", "comment": null, "index": 25, "name": "title"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 26, "name": "updated_at"}, "vendor_1099": {"type": "BOOL", "comment": null, "index": 27, "name": "vendor_1099"}, "web_url": {"type": "INT64", "comment": null, "index": 28, "name": "web_url"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1510.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.vendor_data"}, "seed.quickbooks_source_integration_tests.purchase_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "purchase_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1420.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.purchase_line_data"}, "seed.quickbooks_source_integration_tests.account_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "account_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "account_number": {"type": "INT64", "comment": null, "index": 3, "name": "account_number"}, "account_sub_type": {"type": "STRING", "comment": null, "index": 4, "name": "account_sub_type"}, "account_type": {"type": "STRING", "comment": null, "index": 5, "name": "account_type"}, "active": {"type": "BOOL", "comment": null, "index": 6, "name": "active"}, "balance": {"type": "INT64", "comment": null, "index": 7, "name": "balance"}, "balance_with_sub_accounts": {"type": "INT64", "comment": null, "index": 8, "name": "balance_with_sub_accounts"}, "classification": {"type": "STRING", "comment": null, "index": 9, "name": "classification"}, "created_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 11, "name": "currency_id"}, "description": {"type": "INT64", "comment": null, "index": 12, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 13, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 14, "name": "name"}, "parent_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "parent_account_id"}, "sub_account": {"type": "BOOL", "comment": null, "index": 16, "name": "sub_account"}, "sync_token": {"type": "INT64", "comment": null, "index": 17, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 18, "name": "tax_code_id"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1833.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.account_data"}, "seed.quickbooks_source_integration_tests.invoice_linked_txn_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "invoice_linked_txn_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "charge_credit_id": {"type": "INT64", "comment": null, "index": 4, "name": "charge_credit_id"}, "estimate_id": {"type": "INT64", "comment": null, "index": 5, "name": "estimate_id"}, "payment_id": {"type": "INT64", "comment": null, "index": 6, "name": "payment_id"}, "reimburse_charge_id": {"type": "INT64", "comment": null, "index": 7, "name": "reimburse_charge_id"}, "statement_charge_id": {"type": "INT64", "comment": null, "index": 8, "name": "statement_charge_id"}, "time_activity_id": {"type": "INT64", "comment": null, "index": 9, "name": "time_activity_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 14.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 448.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.invoice_linked_txn_data"}, "seed.quickbooks_source_integration_tests.journal_entry_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "journal_entry_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "adjustment": {"type": "BOOL", "comment": null, "index": 4, "name": "adjustment"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "doc_number": {"type": "STRING", "comment": null, "index": 7, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 8, "name": "exchange_rate"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 9, "name": "home_total_amount"}, "private_note": {"type": "STRING", "comment": null, "index": 10, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 11, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 12, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 13, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 14, "name": "total_tax"}, "transaction_date": {"type": "DATE", "comment": null, "index": 15, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 16, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1217.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.journal_entry_data"}, "seed.quickbooks_source_integration_tests.purchase_order_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "purchase_order_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "class_id": {"type": "INT64", "comment": null, "index": 4, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "custom_customer_type": {"type": "STRING", "comment": null, "index": 7, "name": "custom_customer_type"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 8, "name": "custom_p_o_number"}, "doc_number": {"type": "INT64", "comment": null, "index": 9, "name": "doc_number"}, "due_date": {"type": "INT64", "comment": null, "index": 10, "name": "due_date"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 12, "name": "global_tax_calculation"}, "memo": {"type": "STRING", "comment": null, "index": 13, "name": "memo"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 14, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 15, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 17, "name": "shipping_address_id"}, "status": {"type": "STRING", "comment": null, "index": 18, "name": "status"}, "sync_token": {"type": "INT64", "comment": null, "index": 19, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 20, "name": "tax_code_id"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 21, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 22, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 23, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 24, "name": "updated_at"}, "vendor_address_id": {"type": "INT64", "comment": null, "index": 25, "name": "vendor_address_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 26, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2042.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.purchase_order_data"}, "seed.quickbooks_source_integration_tests.bill_payment_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bill_payment_line_data", "comment": null, "owner": null}, "columns": {"bill_payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_payment_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bill_id": {"type": "INT64", "comment": null, "index": 5, "name": "bill_id"}, "check_id": {"type": "INT64", "comment": null, "index": 6, "name": "check_id"}, "credit_card_charge_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_charge_id"}, "credit_card_credit_id": {"type": "INT64", "comment": null, "index": 8, "name": "credit_card_credit_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_id"}, "expense_id": {"type": "INT64", "comment": null, "index": 10, "name": "expense_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 11, "name": "journal_entry_id"}, "linked_bill_payment_id": {"type": "INT64", "comment": null, "index": 12, "name": "linked_bill_payment_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 13, "name": "vendor_credit_id"}, "bill_payment_credit_card_id": {"type": "INT64", "comment": null, "index": 14, "name": "bill_payment_credit_card_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 400.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bill_payment_line_data"}, "seed.quickbooks_source_integration_tests.department_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "department_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 5, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 6, "name": "name"}, "parent_department_id": {"type": "INT64", "comment": null, "index": 7, "name": "parent_department_id"}, "sub_department": {"type": "BOOL", "comment": null, "index": 8, "name": "sub_department"}, "sync_token": {"type": "INT64", "comment": null, "index": 9, "name": "sync_token"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 6.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 660.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.department_data"}, "seed.quickbooks_source_integration_tests.vendor_credit_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "vendor_credit_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "balance": {"type": "INT64", "comment": null, "index": 4, "name": "balance"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 8, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 9, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 10, "name": "global_tax_calculation"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 11, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 12, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 13, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 14, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 15, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 16, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 17, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 190.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.vendor_credit_data"}, "seed.quickbooks_source_integration_tests.journal_entry_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "journal_entry_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 2, "name": "journal_entry_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "amount": {"type": "INT64", "comment": null, "index": 5, "name": "amount"}, "billable_status": {"type": "INT64", "comment": null, "index": 6, "name": "billable_status"}, "class_id": {"type": "INT64", "comment": null, "index": 7, "name": "class_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "description": {"type": "STRING", "comment": null, "index": 10, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 11, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 12, "name": "description_tax_code_id"}, "employee_id": {"type": "INT64", "comment": null, "index": 13, "name": "employee_id"}, "posting_type": {"type": "STRING", "comment": null, "index": 14, "name": "posting_type"}, "tax_amount": {"type": "INT64", "comment": null, "index": 15, "name": "tax_amount"}, "tax_applicable_on": {"type": "INT64", "comment": null, "index": 16, "name": "tax_applicable_on"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "tax_code_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 18, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 535.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.journal_entry_line_data"}, "seed.quickbooks_source_integration_tests.bundle_item_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bundle_item_data", "comment": null, "owner": null}, "columns": {"bundle_id": {"type": "INT64", "comment": null, "index": 1, "name": "bundle_id"}, "item_id": {"type": "INT64", "comment": null, "index": 2, "name": "item_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "item_quantity": {"type": "INT64", "comment": null, "index": 4, "name": "item_quantity"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 416.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bundle_item_data"}, "seed.quickbooks_source_integration_tests.bill_payment_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "bill_payment_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "check_bank_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "check_bank_account_id"}, "check_print_status": {"type": "STRING", "comment": null, "index": 5, "name": "check_print_status"}, "created_at": {"type": "DATETIME", "comment": null, "index": 6, "name": "created_at"}, "credit_card_account_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_account_id"}, "currency_id": {"type": "STRING", "comment": null, "index": 8, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 10, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "pay_type": {"type": "STRING", "comment": null, "index": 12, "name": "pay_type"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 13, "name": "payable_account_id"}, "private_note": {"type": "INT64", "comment": null, "index": 14, "name": "private_note"}, "process_bill_payment": {"type": "INT64", "comment": null, "index": 15, "name": "process_bill_payment"}, "sync_token": {"type": "INT64", "comment": null, "index": 16, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 17, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 18, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 20, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1130.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.bill_payment_data"}, "seed.quickbooks_source_integration_tests.sales_receipt_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "sales_receipt_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "INT64", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 8, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 10, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 11, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 12, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 13, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 14, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 17, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 18, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 19, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 20, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 21, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 22, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 23, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 24, "name": "customer_memo"}, "delivery_time": {"type": "INT64", "comment": null, "index": 25, "name": "delivery_time"}, "delivery_type": {"type": "INT64", "comment": null, "index": 26, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 27, "name": "department_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 28, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 29, "name": "doc_number"}, "email_status": {"type": "INT64", "comment": null, "index": 30, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 31, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 32, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 33, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 34, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 35, "name": "payment_method_id"}, "payment_reference_number": {"type": "INT64", "comment": null, "index": 36, "name": "payment_reference_number"}, "print_status": {"type": "INT64", "comment": null, "index": 37, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 38, "name": "private_note"}, "ship_date": {"type": "INT64", "comment": null, "index": 39, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 40, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 41, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 42, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 43, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 44, "name": "total_tax"}, "tracking_number": {"type": "INT64", "comment": null, "index": 45, "name": "tracking_number"}, "transaction_date": {"type": "INT64", "comment": null, "index": 46, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 47, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 48, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1060.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.sales_receipt_data"}, "seed.quickbooks_source_integration_tests.deposit_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "deposit_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "cash_back_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "cash_back_account_id"}, "cash_back_amount": {"type": "INT64", "comment": null, "index": 6, "name": "cash_back_amount"}, "cash_back_memo": {"type": "INT64", "comment": null, "index": 7, "name": "cash_back_memo"}, "created_at": {"type": "DATETIME", "comment": null, "index": 8, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 9, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 10, "name": "department_id"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 11, "name": "global_tax_calculation"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 12, "name": "home_total_amount"}, "private_note": {"type": "STRING", "comment": null, "index": 13, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 14, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 15, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 16, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 17, "name": "transaction_source"}, "transaction_status": {"type": "INT64", "comment": null, "index": 18, "name": "transaction_status"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 596.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.deposit_data"}, "seed.quickbooks_source_integration_tests.customer_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "customer_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "alternate_phone_number": {"type": "INT64", "comment": null, "index": 4, "name": "alternate_phone_number"}, "ar_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "ar_account_id"}, "balance": {"type": "INT64", "comment": null, "index": 6, "name": "balance"}, "balance_with_jobs": {"type": "INT64", "comment": null, "index": 7, "name": "balance_with_jobs"}, "bill_address_id": {"type": "INT64", "comment": null, "index": 8, "name": "bill_address_id"}, "bill_with_parent": {"type": "BOOL", "comment": null, "index": 9, "name": "bill_with_parent"}, "company_name": {"type": "STRING", "comment": null, "index": 10, "name": "company_name"}, "created_at": {"type": "DATETIME", "comment": null, "index": 11, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 12, "name": "currency_id"}, "default_tax_code_id": {"type": "INT64", "comment": null, "index": 13, "name": "default_tax_code_id"}, "display_name": {"type": "STRING", "comment": null, "index": 14, "name": "display_name"}, "email": {"type": "STRING", "comment": null, "index": 15, "name": "email"}, "family_name": {"type": "STRING", "comment": null, "index": 16, "name": "family_name"}, "fax_number": {"type": "INT64", "comment": null, "index": 17, "name": "fax_number"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 18, "name": "fully_qualified_name"}, "given_name": {"type": "STRING", "comment": null, "index": 19, "name": "given_name"}, "job": {"type": "BOOL", "comment": null, "index": 20, "name": "job"}, "level": {"type": "INT64", "comment": null, "index": 21, "name": "level"}, "middle_name": {"type": "INT64", "comment": null, "index": 22, "name": "middle_name"}, "mobile_number": {"type": "INT64", "comment": null, "index": 23, "name": "mobile_number"}, "notes": {"type": "INT64", "comment": null, "index": 24, "name": "notes"}, "open_balance_date": {"type": "INT64", "comment": null, "index": 25, "name": "open_balance_date"}, "parent_customer_id": {"type": "INT64", "comment": null, "index": 26, "name": "parent_customer_id"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 27, "name": "payment_method_id"}, "phone_number": {"type": "INT64", "comment": null, "index": 28, "name": "phone_number"}, "preferred_delivery_method": {"type": "STRING", "comment": null, "index": 29, "name": "preferred_delivery_method"}, "print_on_check_name": {"type": "STRING", "comment": null, "index": 30, "name": "print_on_check_name"}, "resale_number": {"type": "INT64", "comment": null, "index": 31, "name": "resale_number"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 32, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 33, "name": "shipping_address_id"}, "suffix": {"type": "INT64", "comment": null, "index": 34, "name": "suffix"}, "sync_token": {"type": "INT64", "comment": null, "index": 35, "name": "sync_token"}, "tax_exemption_reason_id": {"type": "INT64", "comment": null, "index": 36, "name": "tax_exemption_reason_id"}, "taxable": {"type": "BOOL", "comment": null, "index": 37, "name": "taxable"}, "title": {"type": "INT64", "comment": null, "index": 38, "name": "title"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 39, "name": "updated_at"}, "website": {"type": "INT64", "comment": null, "index": 40, "name": "website"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1001.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.customer_data"}, "seed.quickbooks_source_integration_tests.invoice_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "invoice_line_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "FLOAT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "FLOAT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}, "item_id": {"type": "INT64", "comment": null, "index": 25, "name": "item_id"}, "quantity": {"type": "INT64", "comment": null, "index": 26, "name": "quantity"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 27, "name": "tax_code_id"}, "account_id": {"type": "INT64", "comment": null, "index": 28, "name": "account_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 648.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.invoice_line_data"}, "seed.quickbooks_source_integration_tests.transfer_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "transfer_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "from_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "from_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 7, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 8, "name": "sync_token"}, "to_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "to_account_id"}, "transaction_date": {"type": "DATE", "comment": null, "index": 10, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 11, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 214.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.transfer_data"}, "seed.quickbooks_source_integration_tests.estimate_line_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "estimate_line_data", "comment": null, "owner": null}, "columns": {"estimate_id": {"type": "INT64", "comment": null, "index": 1, "name": "estimate_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}, "item_id": {"type": "INT64", "comment": null, "index": 25, "name": "item_id"}, "quantity": {"type": "INT64", "comment": null, "index": 26, "name": "quantity"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 27, "name": "tax_code_id"}, "account_id": {"type": "INT64", "comment": null, "index": 28, "name": "account_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 985.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.estimate_line_data"}, "seed.quickbooks_source_integration_tests.invoice_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "invoice_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "allow_ipnpayment": {"type": "BOOL", "comment": null, "index": 4, "name": "allow_ipnpayment"}, "allow_online_achpayment": {"type": "BOOL", "comment": null, "index": 5, "name": "allow_online_achpayment"}, "allow_online_credit_card_payment": {"type": "BOOL", "comment": null, "index": 6, "name": "allow_online_credit_card_payment"}, "allow_online_payment": {"type": "BOOL", "comment": null, "index": 7, "name": "allow_online_payment"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 8, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 9, "name": "balance"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 10, "name": "billing_address_id"}, "billing_bcc_email": {"type": "STRING", "comment": null, "index": 11, "name": "billing_bcc_email"}, "billing_cc_email": {"type": "INT64", "comment": null, "index": 12, "name": "billing_cc_email"}, "billing_email": {"type": "STRING", "comment": null, "index": 13, "name": "billing_email"}, "class_id": {"type": "INT64", "comment": null, "index": 14, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 15, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 16, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 17, "name": "custom_p_o_number"}, "custom_sales_rep": {"type": "INT64", "comment": null, "index": 18, "name": "custom_sales_rep"}, "customer_id": {"type": "INT64", "comment": null, "index": 19, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 20, "name": "customer_memo"}, "delivery_time": {"type": "DATETIME", "comment": null, "index": 21, "name": "delivery_time"}, "delivery_type": {"type": "STRING", "comment": null, "index": 22, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 23, "name": "department_id"}, "deposit": {"type": "INT64", "comment": null, "index": 24, "name": "deposit"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 25, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 26, "name": "doc_number"}, "due_date": {"type": "DATETIME", "comment": null, "index": 27, "name": "due_date"}, "email_status": {"type": "STRING", "comment": null, "index": 28, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 29, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 30, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 31, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 32, "name": "home_total_amount"}, "print_status": {"type": "STRING", "comment": null, "index": 33, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 34, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 35, "name": "sales_term_id"}, "ship_date": {"type": "INT64", "comment": null, "index": 36, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 37, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 38, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 39, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 40, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 41, "name": "total_tax"}, "tracking_number": {"type": "INT64", "comment": null, "index": 42, "name": "tracking_number"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 43, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 44, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 45, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1257.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.invoice_data"}, "seed.quickbooks_source_integration_tests.payment_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "payment_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 5, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 6, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 8, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 9, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 10, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 11, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 12, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 13, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 14, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 17, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 18, "name": "customer_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 19, "name": "deposit_to_account_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 20, "name": "exchange_rate"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 21, "name": "payment_method_id"}, "private_note": {"type": "STRING", "comment": null, "index": 22, "name": "private_note"}, "process_payment": {"type": "BOOL", "comment": null, "index": 23, "name": "process_payment"}, "receivable_account_id": {"type": "INT64", "comment": null, "index": 24, "name": "receivable_account_id"}, "reference_number": {"type": "INT64", "comment": null, "index": 25, "name": "reference_number"}, "sync_token": {"type": "INT64", "comment": null, "index": 26, "name": "sync_token"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 27, "name": "total_amount"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 28, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 29, "name": "transaction_source"}, "transaction_status": {"type": "INT64", "comment": null, "index": 30, "name": "transaction_status"}, "unapplied_amount": {"type": "INT64", "comment": null, "index": 31, "name": "unapplied_amount"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 32, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1143.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.payment_data"}, "seed.quickbooks_source_integration_tests.credit_memo_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "credit_memo_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 8, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 11, "name": "custom_p_o_number"}, "customer_id": {"type": "INT64", "comment": null, "index": 12, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 13, "name": "customer_memo"}, "department_id": {"type": "INT64", "comment": null, "index": 14, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 15, "name": "doc_number"}, "email_status": {"type": "STRING", "comment": null, "index": 16, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 17, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 18, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 19, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 20, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 21, "name": "payment_method_id"}, "print_status": {"type": "STRING", "comment": null, "index": 22, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 23, "name": "private_note"}, "remaining_credit": {"type": "INT64", "comment": null, "index": 24, "name": "remaining_credit"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 25, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 26, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 27, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 28, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 29, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 30, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 31, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1764.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.quickbooks_source_integration_tests.credit_memo_data"}, "model.quickbooks_source.stg_quickbooks__estimate_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__estimate_line_tmp", "comment": null, "owner": null}, "columns": {"estimate_id": {"type": "INT64", "comment": null, "index": 1, "name": "estimate_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}, "item_id": {"type": "INT64", "comment": null, "index": 25, "name": "item_id"}, "quantity": {"type": "INT64", "comment": null, "index": 26, "name": "quantity"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 27, "name": "tax_code_id"}, "account_id": {"type": "INT64", "comment": null, "index": 28, "name": "account_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__estimate_line_tmp"}, "model.quickbooks_source.stg_quickbooks__payment_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__payment_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "payment_id": {"type": "INT64", "comment": null, "index": 2, "name": "payment_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "FLOAT64", "comment": null, "index": 4, "name": "amount"}, "check_id": {"type": "INT64", "comment": null, "index": 5, "name": "check_id"}, "credit_card_charge_id": {"type": "INT64", "comment": null, "index": 6, "name": "credit_card_charge_id"}, "credit_card_credit_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_credit_id"}, "credit_memo_id": {"type": "INT64", "comment": null, "index": 8, "name": "credit_memo_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_id"}, "expense_id": {"type": "INT64", "comment": null, "index": 10, "name": "expense_id"}, "invoice_id": {"type": "INT64", "comment": null, "index": 11, "name": "invoice_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 12, "name": "journal_entry_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__payment_line_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "class_id": {"type": "INT64", "comment": null, "index": 4, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "custom_customer_type": {"type": "STRING", "comment": null, "index": 7, "name": "custom_customer_type"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 8, "name": "custom_p_o_number"}, "doc_number": {"type": "INT64", "comment": null, "index": 9, "name": "doc_number"}, "due_date": {"type": "INT64", "comment": null, "index": 10, "name": "due_date"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 12, "name": "global_tax_calculation"}, "memo": {"type": "STRING", "comment": null, "index": 13, "name": "memo"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 14, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 15, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 17, "name": "shipping_address_id"}, "status": {"type": "STRING", "comment": null, "index": 18, "name": "status"}, "sync_token": {"type": "INT64", "comment": null, "index": 19, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 20, "name": "tax_code_id"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 21, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 22, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 23, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 24, "name": "updated_at"}, "vendor_address_id": {"type": "INT64", "comment": null, "index": 25, "name": "vendor_address_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 26, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_payment_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_payment_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "check_bank_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "check_bank_account_id"}, "check_print_status": {"type": "STRING", "comment": null, "index": 5, "name": "check_print_status"}, "created_at": {"type": "DATETIME", "comment": null, "index": 6, "name": "created_at"}, "credit_card_account_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_account_id"}, "currency_id": {"type": "STRING", "comment": null, "index": 8, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 10, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "pay_type": {"type": "STRING", "comment": null, "index": 12, "name": "pay_type"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 13, "name": "payable_account_id"}, "private_note": {"type": "INT64", "comment": null, "index": 14, "name": "private_note"}, "process_bill_payment": {"type": "INT64", "comment": null, "index": 15, "name": "process_bill_payment"}, "sync_token": {"type": "INT64", "comment": null, "index": 16, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 17, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 18, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 20, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_payment_tmp"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__sales_receipt_line", "comment": null, "owner": null}, "columns": {"sales_receipt_id": {"type": "INT64", "comment": null, "index": 1, "name": "sales_receipt_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "INT64", "comment": null, "index": 3, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 4, "name": "description"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "discount_account_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "sales_item_account_id"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 7, "name": "sales_item_item_id"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 8, "name": "sales_item_tax_code_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 9, "name": "sales_item_quantity"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 10, "name": "sales_item_unit_price"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1240.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__sales_receipt_line"}, "model.quickbooks_source.stg_quickbooks__credit_memo_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__credit_memo_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 8, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 11, "name": "custom_p_o_number"}, "customer_id": {"type": "INT64", "comment": null, "index": 12, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 13, "name": "customer_memo"}, "department_id": {"type": "INT64", "comment": null, "index": 14, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 15, "name": "doc_number"}, "email_status": {"type": "STRING", "comment": null, "index": 16, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 17, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 18, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 19, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 20, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 21, "name": "payment_method_id"}, "print_status": {"type": "STRING", "comment": null, "index": 22, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 23, "name": "private_note"}, "remaining_credit": {"type": "INT64", "comment": null, "index": 24, "name": "remaining_credit"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 25, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 26, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 27, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 28, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 29, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 30, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 31, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__credit_memo_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_payment_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_payment_line", "comment": null, "owner": null}, "columns": {"bill_payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_payment_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "INT64", "comment": null, "index": 3, "name": "amount"}, "bill_id": {"type": "INT64", "comment": null, "index": 4, "name": "bill_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_id"}, "expense_id": {"type": "INT64", "comment": null, "index": 6, "name": "expense_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 7, "name": "journal_entry_id"}, "linked_bill_payment_id": {"type": "INT64", "comment": null, "index": 8, "name": "linked_bill_payment_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 9, "name": "vendor_credit_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 320.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_payment_line"}, "model.quickbooks_source.stg_quickbooks__invoice_linked_txn": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_linked_txn", "comment": null, "owner": null}, "columns": {"invoice_id": {"type": "INT64", "comment": null, "index": 1, "name": "invoice_id"}, "payment_id": {"type": "INT64", "comment": null, "index": 2, "name": "payment_id"}, "estimate_id": {"type": "INT64", "comment": null, "index": 3, "name": "estimate_id"}, "index": {"type": "INT64", "comment": null, "index": 4, "name": "index"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 14.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 336.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_linked_txn"}, "model.quickbooks_source.stg_quickbooks__vendor_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "account_number": {"type": "INT64", "comment": null, "index": 3, "name": "account_number"}, "active": {"type": "BOOL", "comment": null, "index": 4, "name": "active"}, "alternate_phone": {"type": "INT64", "comment": null, "index": 5, "name": "alternate_phone"}, "balance": {"type": "INT64", "comment": null, "index": 6, "name": "balance"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "company_name": {"type": "STRING", "comment": null, "index": 8, "name": "company_name"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "display_name": {"type": "STRING", "comment": null, "index": 11, "name": "display_name"}, "email": {"type": "STRING", "comment": null, "index": 12, "name": "email"}, "family_name": {"type": "INT64", "comment": null, "index": 13, "name": "family_name"}, "fax_number": {"type": "INT64", "comment": null, "index": 14, "name": "fax_number"}, "given_name": {"type": "INT64", "comment": null, "index": 15, "name": "given_name"}, "middle_name": {"type": "INT64", "comment": null, "index": 16, "name": "middle_name"}, "mobile_phone": {"type": "INT64", "comment": null, "index": 17, "name": "mobile_phone"}, "other_contacts": {"type": "INT64", "comment": null, "index": 18, "name": "other_contacts"}, "primary_phone": {"type": "INT64", "comment": null, "index": 19, "name": "primary_phone"}, "print_on_check_name": {"type": "STRING", "comment": null, "index": 20, "name": "print_on_check_name"}, "suffix": {"type": "INT64", "comment": null, "index": 21, "name": "suffix"}, "sync_token": {"type": "INT64", "comment": null, "index": 22, "name": "sync_token"}, "tax_identifier": {"type": "INT64", "comment": null, "index": 23, "name": "tax_identifier"}, "term_id": {"type": "INT64", "comment": null, "index": 24, "name": "term_id"}, "title": {"type": "INT64", "comment": null, "index": 25, "name": "title"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 26, "name": "updated_at"}, "vendor_1099": {"type": "BOOL", "comment": null, "index": 27, "name": "vendor_1099"}, "web_url": {"type": "INT64", "comment": null, "index": 28, "name": "web_url"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_order_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_order_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "INT64", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "FLOAT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "STRING", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "FLOAT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order_line_tmp"}, "model.quickbooks_source.stg_quickbooks__deposit_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__deposit_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "cash_back_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "cash_back_account_id"}, "cash_back_amount": {"type": "INT64", "comment": null, "index": 6, "name": "cash_back_amount"}, "cash_back_memo": {"type": "INT64", "comment": null, "index": 7, "name": "cash_back_memo"}, "created_at": {"type": "DATETIME", "comment": null, "index": 8, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 9, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 10, "name": "department_id"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 11, "name": "global_tax_calculation"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 12, "name": "home_total_amount"}, "private_note": {"type": "STRING", "comment": null, "index": 13, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 14, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 15, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 16, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 17, "name": "transaction_source"}, "transaction_status": {"type": "INT64", "comment": null, "index": 18, "name": "transaction_status"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__deposit_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor_credit_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 2, "name": "vendor_credit_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}, "private_note": {"type": "INT64", "comment": null, "index": 19, "name": "private_note"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor_credit_line_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor_credit_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "balance": {"type": "INT64", "comment": null, "index": 4, "name": "balance"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 8, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 9, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 10, "name": "global_tax_calculation"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 11, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 12, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 13, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 14, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 15, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 16, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 17, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor_credit_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order_linked_txn", "comment": null, "owner": null}, "columns": {"purchase_order_id": {"type": "INT64", "comment": null, "index": 1, "name": "purchase_order_id"}, "bill_id": {"type": "INT64", "comment": null, "index": 2, "name": "bill_id"}, "purchase_id": {"type": "INT64", "comment": null, "index": 3, "name": "purchase_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 4, "name": "vendor_credit_id"}, "index": {"type": "INT64", "comment": null, "index": 5, "name": "index"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 9.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 216.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn"}, "model.quickbooks_source.stg_quickbooks__bill_payment": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_payment", "comment": null, "owner": null}, "columns": {"bill_payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_payment_id"}, "check_bank_account_id": {"type": "INT64", "comment": null, "index": 2, "name": "check_bank_account_id"}, "check_print_status": {"type": "STRING", "comment": null, "index": 3, "name": "check_print_status"}, "credit_card_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "credit_card_account_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 5, "name": "exchange_rate"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "pay_type": {"type": "STRING", "comment": null, "index": 8, "name": "pay_type"}, "total_amount": {"type": "INT64", "comment": null, "index": 9, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 10, "name": "transaction_date"}, "vendor_id": {"type": "INT64", "comment": null, "index": 11, "name": "vendor_id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 12, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_payment"}, "model.quickbooks_source.stg_quickbooks__credit_memo": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__credit_memo", "comment": null, "owner": null}, "columns": {"credit_memo_id": {"type": "INT64", "comment": null, "index": 1, "name": "credit_memo_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "total_amount": {"type": "INT64", "comment": null, "index": 4, "name": "total_amount"}, "currency_id": {"type": "STRING", "comment": null, "index": 5, "name": "currency_id"}, "class_id": {"type": "INT64", "comment": null, "index": 6, "name": "class_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "customer_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 9, "name": "exchange_rate"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 10, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 11, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 649.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__credit_memo"}, "model.quickbooks_source.stg_quickbooks__credit_memo_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__credit_memo_line", "comment": null, "owner": null}, "columns": {"credit_memo_id": {"type": "INT64", "comment": null, "index": 1, "name": "credit_memo_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "INT64", "comment": null, "index": 3, "name": "amount"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "sales_item_account_id"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 5, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 6, "name": "sales_item_quantity"}, "sales_item_unit_price": {"type": "FLOAT64", "comment": null, "index": 7, "name": "sales_item_unit_price"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 8, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 9, "name": "discount_class_id"}, "description": {"type": "STRING", "comment": null, "index": 10, "name": "description"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 9.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 794.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__credit_memo_line"}, "model.quickbooks_source.stg_quickbooks__transfer": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__transfer", "comment": null, "owner": null}, "columns": {"transfer_id": {"type": "INT64", "comment": null, "index": 1, "name": "transfer_id"}, "amount": {"type": "INT64", "comment": null, "index": 2, "name": "amount"}, "from_account_id": {"type": "INT64", "comment": null, "index": 3, "name": "from_account_id"}, "to_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "to_account_id"}, "transaction_date": {"type": "DATE", "comment": null, "index": 5, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 6, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 82.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__transfer"}, "model.quickbooks_source.stg_quickbooks__vendor_credit": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor_credit", "comment": null, "owner": null}, "columns": {"vendor_credit_id": {"type": "INT64", "comment": null, "index": 1, "name": "vendor_credit_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "total_amount": {"type": "INT64", "comment": null, "index": 4, "name": "total_amount"}, "currency_id": {"type": "STRING", "comment": null, "index": 5, "name": "currency_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 6, "name": "exchange_rate"}, "created_at": {"type": "DATETIME", "comment": null, "index": 7, "name": "created_at"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 8, "name": "payable_account_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "private_note": {"type": "STRING", "comment": null, "index": 10, "name": "private_note"}, "transaction_date": {"type": "DATE", "comment": null, "index": 11, "name": "transaction_date"}, "vendor_id": {"type": "INT64", "comment": null, "index": 12, "name": "vendor_id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 13, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 142.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor_credit"}, "model.quickbooks_source.stg_quickbooks__account": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__account", "comment": null, "owner": null}, "columns": {"account_id": {"type": "INT64", "comment": null, "index": 1, "name": "account_id"}, "account_number": {"type": "STRING", "comment": null, "index": 2, "name": "account_number"}, "is_sub_account": {"type": "BOOL", "comment": null, "index": 3, "name": "is_sub_account"}, "parent_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "parent_account_id"}, "name": {"type": "STRING", "comment": null, "index": 5, "name": "name"}, "account_type": {"type": "STRING", "comment": null, "index": 6, "name": "account_type"}, "account_sub_type": {"type": "STRING", "comment": null, "index": 7, "name": "account_sub_type"}, "classification": {"type": "STRING", "comment": null, "index": 8, "name": "classification"}, "balance": {"type": "INT64", "comment": null, "index": 9, "name": "balance"}, "balance_with_sub_accounts": {"type": "INT64", "comment": null, "index": 10, "name": "balance_with_sub_accounts"}, "is_active": {"type": "BOOL", "comment": null, "index": 11, "name": "is_active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 12, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 13, "name": "currency_id"}, "description": {"type": "INT64", "comment": null, "index": 14, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 15, "name": "fully_qualified_name"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 16, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1671.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__account"}, "model.quickbooks_source.stg_quickbooks__journal_entry_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__journal_entry_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "adjustment": {"type": "BOOL", "comment": null, "index": 4, "name": "adjustment"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "doc_number": {"type": "STRING", "comment": null, "index": 7, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 8, "name": "exchange_rate"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 9, "name": "home_total_amount"}, "private_note": {"type": "STRING", "comment": null, "index": 10, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 11, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 12, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 13, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 14, "name": "total_tax"}, "transaction_date": {"type": "DATE", "comment": null, "index": 15, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 16, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__journal_entry_tmp"}, "model.quickbooks_source.stg_quickbooks__deposit": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__deposit", "comment": null, "owner": null}, "columns": {"deposit_id": {"type": "INT64", "comment": null, "index": 1, "name": "deposit_id"}, "account_id": {"type": "INT64", "comment": null, "index": 2, "name": "account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 4, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 5, "name": "department_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 6, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 7, "name": "transaction_date"}, "transaction_status": {"type": "INT64", "comment": null, "index": 8, "name": "transaction_status"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 9, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 230.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__deposit"}, "model.quickbooks_source.stg_quickbooks__purchase_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_line", "comment": null, "owner": null}, "columns": {"purchase_id": {"type": "INT64", "comment": null, "index": 1, "name": "purchase_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 3, "name": "account_expense_account_id"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_class_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_customer_id"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 7, "name": "account_expense_tax_code_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 8, "name": "item_expense_item_id"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 9, "name": "item_expense_billable_status"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 10, "name": "item_expense_customer_id"}, "amount": {"type": "INT64", "comment": null, "index": 11, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 12, "name": "description"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1340.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_line"}, "model.quickbooks_source.stg_quickbooks__bundle_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bundle_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 5, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 6, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "print_grouped_items": {"type": "BOOL", "comment": null, "index": 8, "name": "print_grouped_items"}, "purchase_cost": {"type": "INT64", "comment": null, "index": 9, "name": "purchase_cost"}, "sync_token": {"type": "INT64", "comment": null, "index": 10, "name": "sync_token"}, "taxable": {"type": "BOOL", "comment": null, "index": 11, "name": "taxable"}, "unit_price": {"type": "INT64", "comment": null, "index": 12, "name": "unit_price"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 13, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bundle_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order_line", "comment": null, "owner": null}, "columns": {"purchase_order_id": {"type": "INT64", "comment": null, "index": 1, "name": "purchase_order_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 3, "name": "account_expense_account_id"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_class_id"}, "account_expense_billable_status": {"type": "INT64", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_customer_id"}, "account_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_tax_code_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 8, "name": "item_expense_item_id"}, "item_expense_billable_status": {"type": "STRING", "comment": null, "index": 9, "name": "item_expense_billable_status"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 10, "name": "item_expense_customer_id"}, "amount": {"type": "FLOAT64", "comment": null, "index": 11, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 12, "name": "description"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 719.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order_line"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__sales_receipt_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "INT64", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 8, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 9, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 10, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 11, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 12, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 13, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 14, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 17, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 18, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 19, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 20, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 21, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 22, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 23, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 24, "name": "customer_memo"}, "delivery_time": {"type": "INT64", "comment": null, "index": 25, "name": "delivery_time"}, "delivery_type": {"type": "INT64", "comment": null, "index": 26, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 27, "name": "department_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 28, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 29, "name": "doc_number"}, "email_status": {"type": "INT64", "comment": null, "index": 30, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 31, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 32, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 33, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 34, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 35, "name": "payment_method_id"}, "payment_reference_number": {"type": "INT64", "comment": null, "index": 36, "name": "payment_reference_number"}, "print_status": {"type": "INT64", "comment": null, "index": 37, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 38, "name": "private_note"}, "ship_date": {"type": "INT64", "comment": null, "index": 39, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 40, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 41, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 42, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 43, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 44, "name": "total_tax"}, "tracking_number": {"type": "INT64", "comment": null, "index": 45, "name": "tracking_number"}, "transaction_date": {"type": "INT64", "comment": null, "index": 46, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 47, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 48, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__sales_receipt_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor_credit_line", "comment": null, "owner": null}, "columns": {"vendor_credit_id": {"type": "INT64", "comment": null, "index": 1, "name": "vendor_credit_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 3, "name": "account_expense_customer_id"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 6, "name": "account_expense_tax_code_id"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 9, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 10, "name": "item_expense_quantity"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 11, "name": "item_expense_unit_price"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_class_id"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_billable_status"}, "amount": {"type": "INT64", "comment": null, "index": 14, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 15, "name": "description"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 210.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor_credit_line"}, "model.quickbooks_source.stg_quickbooks__invoice": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice", "comment": null, "owner": null}, "columns": {"invoice_id": {"type": "INT64", "comment": null, "index": 1, "name": "invoice_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "total_amount": {"type": "INT64", "comment": null, "index": 4, "name": "total_amount"}, "currency_id": {"type": "STRING", "comment": null, "index": 5, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 6, "name": "department_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 7, "name": "deposit_to_account_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 8, "name": "exchange_rate"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 9, "name": "transaction_date"}, "customer_id": {"type": "INT64", "comment": null, "index": 10, "name": "customer_id"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 11, "name": "billing_address_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 12, "name": "shipping_address_id"}, "delivery_type": {"type": "STRING", "comment": null, "index": 13, "name": "delivery_type"}, "due_date": {"type": "DATETIME", "comment": null, "index": 14, "name": "due_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 15, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 89.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice"}, "model.quickbooks_source.stg_quickbooks__journal_entry_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__journal_entry_line", "comment": null, "owner": null}, "columns": {"journal_entry_id": {"type": "INT64", "comment": null, "index": 1, "name": "journal_entry_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "account_id": {"type": "INT64", "comment": null, "index": 3, "name": "account_id"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "customer_id": {"type": "INT64", "comment": null, "index": 5, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 6, "name": "department_id"}, "class_id": {"type": "INT64", "comment": null, "index": 7, "name": "class_id"}, "description": {"type": "STRING", "comment": null, "index": 8, "name": "description"}, "billable_status": {"type": "INT64", "comment": null, "index": 9, "name": "billable_status"}, "posting_type": {"type": "STRING", "comment": null, "index": 10, "name": "posting_type"}, "vendor_id": {"type": "INT64", "comment": null, "index": 11, "name": "vendor_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 455.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__journal_entry_line"}, "model.quickbooks_source.stg_quickbooks__bill_payment_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_payment_line_tmp", "comment": null, "owner": null}, "columns": {"bill_payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_payment_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bill_id": {"type": "INT64", "comment": null, "index": 5, "name": "bill_id"}, "check_id": {"type": "INT64", "comment": null, "index": 6, "name": "check_id"}, "credit_card_charge_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_charge_id"}, "credit_card_credit_id": {"type": "INT64", "comment": null, "index": 8, "name": "credit_card_credit_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_id"}, "expense_id": {"type": "INT64", "comment": null, "index": 10, "name": "expense_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 11, "name": "journal_entry_id"}, "linked_bill_payment_id": {"type": "INT64", "comment": null, "index": 12, "name": "linked_bill_payment_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 13, "name": "vendor_credit_id"}, "bill_payment_credit_card_id": {"type": "INT64", "comment": null, "index": 14, "name": "bill_payment_credit_card_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_payment_line_tmp"}, "model.quickbooks_source.stg_quickbooks__account_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__account_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "account_number": {"type": "INT64", "comment": null, "index": 3, "name": "account_number"}, "account_sub_type": {"type": "STRING", "comment": null, "index": 4, "name": "account_sub_type"}, "account_type": {"type": "STRING", "comment": null, "index": 5, "name": "account_type"}, "active": {"type": "BOOL", "comment": null, "index": 6, "name": "active"}, "balance": {"type": "INT64", "comment": null, "index": 7, "name": "balance"}, "balance_with_sub_accounts": {"type": "INT64", "comment": null, "index": 8, "name": "balance_with_sub_accounts"}, "classification": {"type": "STRING", "comment": null, "index": 9, "name": "classification"}, "created_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 11, "name": "currency_id"}, "description": {"type": "INT64", "comment": null, "index": 12, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 13, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 14, "name": "name"}, "parent_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "parent_account_id"}, "sub_account": {"type": "BOOL", "comment": null, "index": 16, "name": "sub_account"}, "sync_token": {"type": "INT64", "comment": null, "index": 17, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 18, "name": "tax_code_id"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__account_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order_linked_txn_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_order_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_order_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "bill_id": {"type": "INT64", "comment": null, "index": 4, "name": "bill_id"}, "purchase_id": {"type": "INT64", "comment": null, "index": 5, "name": "purchase_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 6, "name": "vendor_credit_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__journal_entry_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__journal_entry_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 2, "name": "journal_entry_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "amount": {"type": "INT64", "comment": null, "index": 5, "name": "amount"}, "billable_status": {"type": "INT64", "comment": null, "index": 6, "name": "billable_status"}, "class_id": {"type": "INT64", "comment": null, "index": 7, "name": "class_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "description": {"type": "STRING", "comment": null, "index": 10, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 11, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 12, "name": "description_tax_code_id"}, "employee_id": {"type": "INT64", "comment": null, "index": 13, "name": "employee_id"}, "posting_type": {"type": "STRING", "comment": null, "index": 14, "name": "posting_type"}, "tax_amount": {"type": "INT64", "comment": null, "index": 15, "name": "tax_amount"}, "tax_applicable_on": {"type": "INT64", "comment": null, "index": 16, "name": "tax_applicable_on"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "tax_code_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 18, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__journal_entry_line_tmp"}, "model.quickbooks_source.stg_quickbooks__item_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__item_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "asset_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "asset_account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "INT64", "comment": null, "index": 6, "name": "description"}, "expense_account_id": {"type": "INT64", "comment": null, "index": 7, "name": "expense_account_id"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 8, "name": "fully_qualified_name"}, "income_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "income_account_id"}, "inventory_start_date": {"type": "INT64", "comment": null, "index": 10, "name": "inventory_start_date"}, "level": {"type": "INT64", "comment": null, "index": 11, "name": "level"}, "name": {"type": "STRING", "comment": null, "index": 12, "name": "name"}, "parent_item_id": {"type": "INT64", "comment": null, "index": 13, "name": "parent_item_id"}, "purchase_cost": {"type": "INT64", "comment": null, "index": 14, "name": "purchase_cost"}, "purchase_description": {"type": "INT64", "comment": null, "index": 15, "name": "purchase_description"}, "purchase_tax_code_id": {"type": "INT64", "comment": null, "index": 16, "name": "purchase_tax_code_id"}, "purchase_tax_included": {"type": "INT64", "comment": null, "index": 17, "name": "purchase_tax_included"}, "quantity_on_hand": {"type": "INT64", "comment": null, "index": 18, "name": "quantity_on_hand"}, "sales_tax_code_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_tax_code_id"}, "sales_tax_included": {"type": "INT64", "comment": null, "index": 20, "name": "sales_tax_included"}, "stock_keeping_unit": {"type": "INT64", "comment": null, "index": 21, "name": "stock_keeping_unit"}, "sub_item": {"type": "INT64", "comment": null, "index": 22, "name": "sub_item"}, "sync_token": {"type": "INT64", "comment": null, "index": 23, "name": "sync_token"}, "taxable": {"type": "BOOL", "comment": null, "index": 24, "name": "taxable"}, "track_quantity_on_hand": {"type": "BOOL", "comment": null, "index": 25, "name": "track_quantity_on_hand"}, "type": {"type": "STRING", "comment": null, "index": 26, "name": "type"}, "unit_price": {"type": "INT64", "comment": null, "index": 27, "name": "unit_price"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 28, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__item_tmp"}, "model.quickbooks_source.stg_quickbooks__bill": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "currency_id": {"type": "STRING", "comment": null, "index": 4, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 5, "name": "department_id"}, "due_date_at": {"type": "DATE", "comment": null, "index": 6, "name": "due_date_at"}, "transaction_date": {"type": "DATE", "comment": null, "index": 7, "name": "transaction_date"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 8, "name": "exchange_rate"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "payable_account_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 10, "name": "total_amount"}, "vendor_id": {"type": "INT64", "comment": null, "index": 11, "name": "vendor_id"}, "private_note": {"type": "STRING", "comment": null, "index": 12, "name": "private_note"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 13, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 340.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill"}, "model.quickbooks_source.stg_quickbooks__department": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__department", "comment": null, "owner": null}, "columns": {"department_id": {"type": "INT64", "comment": null, "index": 1, "name": "department_id"}, "is_active": {"type": "BOOL", "comment": null, "index": 2, "name": "is_active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "updated_at"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 5, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 6, "name": "name"}, "is_sub_department": {"type": "BOOL", "comment": null, "index": 7, "name": "is_sub_department"}, "parent_department_id": {"type": "INT64", "comment": null, "index": 8, "name": "parent_department_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 6.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 564.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__department"}, "model.quickbooks_source.stg_quickbooks__address_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__address_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "city": {"type": "STRING", "comment": null, "index": 3, "name": "city"}, "country": {"type": "STRING", "comment": null, "index": 4, "name": "country"}, "country_sub_division_code": {"type": "STRING", "comment": null, "index": 5, "name": "country_sub_division_code"}, "latitude": {"type": "INT64", "comment": null, "index": 6, "name": "latitude"}, "line_1": {"type": "STRING", "comment": null, "index": 7, "name": "line_1"}, "line_2": {"type": "STRING", "comment": null, "index": 8, "name": "line_2"}, "line_3": {"type": "INT64", "comment": null, "index": 9, "name": "line_3"}, "line_4": {"type": "INT64", "comment": null, "index": 10, "name": "line_4"}, "line_5": {"type": "INT64", "comment": null, "index": 11, "name": "line_5"}, "longitude": {"type": "INT64", "comment": null, "index": 12, "name": "longitude"}, "postal_code": {"type": "INT64", "comment": null, "index": 13, "name": "postal_code"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__address_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_linked_txn": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_linked_txn", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "bill_payment_id": {"type": "INT64", "comment": null, "index": 3, "name": "bill_payment_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 240.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_linked_txn"}, "model.quickbooks_source.stg_quickbooks__bill_linked_txn_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_linked_txn_tmp", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "bill_payment_id": {"type": "INT64", "comment": null, "index": 4, "name": "bill_payment_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__bundle": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bundle", "comment": null, "owner": null}, "columns": {"bundle_id": {"type": "INT64", "comment": null, "index": 1, "name": "bundle_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "created_at"}, "is_active": {"type": "BOOL", "comment": null, "index": 3, "name": "is_active"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 4, "name": "fully_qualified_name"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 590.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bundle"}, "model.quickbooks_source.stg_quickbooks__deposit_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__deposit_line_tmp", "comment": null, "owner": null}, "columns": {"deposit_id": {"type": "INT64", "comment": null, "index": 1, "name": "deposit_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "deposit_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_account_id"}, "deposit_check_number": {"type": "INT64", "comment": null, "index": 6, "name": "deposit_check_number"}, "deposit_class_id": {"type": "INT64", "comment": null, "index": 7, "name": "deposit_class_id"}, "deposit_customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "deposit_customer_id"}, "deposit_payment_method_id": {"type": "INT64", "comment": null, "index": 9, "name": "deposit_payment_method_id"}, "deposit_tax_applicable_on": {"type": "INT64", "comment": null, "index": 10, "name": "deposit_tax_applicable_on"}, "deposit_tax_code_id": {"type": "INT64", "comment": null, "index": 11, "name": "deposit_tax_code_id"}, "deposit_transaction_type": {"type": "INT64", "comment": null, "index": 12, "name": "deposit_transaction_type"}, "description": {"type": "STRING", "comment": null, "index": 13, "name": "description"}, "detail_type": {"type": "STRING", "comment": null, "index": 14, "name": "detail_type"}, "expense_id": {"type": "INT64", "comment": null, "index": 15, "name": "expense_id"}, "invoice_id": {"type": "INT64", "comment": null, "index": 16, "name": "invoice_id"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 17, "name": "journal_entry_id"}, "payment_id": {"type": "INT64", "comment": null, "index": 18, "name": "payment_id"}, "purchase_id": {"type": "INT64", "comment": null, "index": 19, "name": "purchase_id"}, "refund_receipt_id": {"type": "INT64", "comment": null, "index": 20, "name": "refund_receipt_id"}, "sales_receipt_id": {"type": "INT64", "comment": null, "index": 21, "name": "sales_receipt_id"}, "transfer_id": {"type": "INT64", "comment": null, "index": 22, "name": "transfer_id"}, "bill_id": {"type": "INT64", "comment": null, "index": 23, "name": "bill_id"}, "vendor_credit_id": {"type": "INT64", "comment": null, "index": 24, "name": "vendor_credit_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__deposit_line_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "allow_ipnpayment": {"type": "BOOL", "comment": null, "index": 4, "name": "allow_ipnpayment"}, "allow_online_achpayment": {"type": "BOOL", "comment": null, "index": 5, "name": "allow_online_achpayment"}, "allow_online_credit_card_payment": {"type": "BOOL", "comment": null, "index": 6, "name": "allow_online_credit_card_payment"}, "allow_online_payment": {"type": "BOOL", "comment": null, "index": 7, "name": "allow_online_payment"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 8, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 9, "name": "balance"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 10, "name": "billing_address_id"}, "billing_bcc_email": {"type": "STRING", "comment": null, "index": 11, "name": "billing_bcc_email"}, "billing_cc_email": {"type": "INT64", "comment": null, "index": 12, "name": "billing_cc_email"}, "billing_email": {"type": "STRING", "comment": null, "index": 13, "name": "billing_email"}, "class_id": {"type": "INT64", "comment": null, "index": 14, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 15, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 16, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 17, "name": "custom_p_o_number"}, "custom_sales_rep": {"type": "INT64", "comment": null, "index": 18, "name": "custom_sales_rep"}, "customer_id": {"type": "INT64", "comment": null, "index": 19, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 20, "name": "customer_memo"}, "delivery_time": {"type": "DATETIME", "comment": null, "index": 21, "name": "delivery_time"}, "delivery_type": {"type": "STRING", "comment": null, "index": 22, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 23, "name": "department_id"}, "deposit": {"type": "INT64", "comment": null, "index": 24, "name": "deposit"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 25, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 26, "name": "doc_number"}, "due_date": {"type": "DATETIME", "comment": null, "index": 27, "name": "due_date"}, "email_status": {"type": "STRING", "comment": null, "index": 28, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 29, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 30, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 31, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 32, "name": "home_total_amount"}, "print_status": {"type": "STRING", "comment": null, "index": 33, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 34, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 35, "name": "sales_term_id"}, "ship_date": {"type": "INT64", "comment": null, "index": 36, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 37, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 38, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 39, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 40, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 41, "name": "total_tax"}, "tracking_number": {"type": "INT64", "comment": null, "index": 42, "name": "tracking_number"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 43, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 44, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 45, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_tmp"}, "model.quickbooks_source.stg_quickbooks__estimate": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__estimate", "comment": null, "owner": null}, "columns": {"estimate_id": {"type": "INT64", "comment": null, "index": 1, "name": "estimate_id"}, "class_id": {"type": "INT64", "comment": null, "index": 2, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 4, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 5, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 6, "name": "department_id"}, "due_date": {"type": "INT64", "comment": null, "index": 7, "name": "due_date"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 8, "name": "total_amount"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 9, "name": "transaction_date"}, "transaction_status": {"type": "STRING", "comment": null, "index": 10, "name": "transaction_status"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 11, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 560.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__estimate"}, "model.quickbooks_source.stg_quickbooks__journal_entry": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__journal_entry", "comment": null, "owner": null}, "columns": {"journal_entry_id": {"type": "INT64", "comment": null, "index": 1, "name": "journal_entry_id"}, "is_adjustment": {"type": "BOOL", "comment": null, "index": 2, "name": "is_adjustment"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 4, "name": "currency_id"}, "doc_number": {"type": "STRING", "comment": null, "index": 5, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 6, "name": "exchange_rate"}, "private_note": {"type": "STRING", "comment": null, "index": 7, "name": "private_note"}, "total_amount": {"type": "INT64", "comment": null, "index": 8, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 9, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 10, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 9.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 963.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__journal_entry"}, "model.quickbooks_source.stg_quickbooks__transfer_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__transfer_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "from_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "from_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 7, "name": "private_note"}, "sync_token": {"type": "INT64", "comment": null, "index": 8, "name": "sync_token"}, "to_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "to_account_id"}, "transaction_date": {"type": "DATE", "comment": null, "index": 10, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 11, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__transfer_tmp"}, "model.quickbooks_source.stg_quickbooks__address": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__address", "comment": null, "owner": null}, "columns": {"address_id": {"type": "INT64", "comment": null, "index": 1, "name": "address_id"}, "city": {"type": "STRING", "comment": null, "index": 2, "name": "city"}, "country": {"type": "STRING", "comment": null, "index": 3, "name": "country"}, "address_1": {"type": "STRING", "comment": null, "index": 4, "name": "address_1"}, "address_2": {"type": "STRING", "comment": null, "index": 5, "name": "address_2"}, "postal_code": {"type": "INT64", "comment": null, "index": 6, "name": "postal_code"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 104.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__address"}, "model.quickbooks_source.stg_quickbooks__purchase_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "purchase_id": {"type": "INT64", "comment": null, "index": 2, "name": "purchase_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_line_tmp"}, "model.quickbooks_source.stg_quickbooks__credit_memo_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__credit_memo_line_tmp", "comment": null, "owner": null}, "columns": {"credit_memo_id": {"type": "INT64", "comment": null, "index": 1, "name": "credit_memo_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "FLOAT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__credit_memo_line_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_line_bundle_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_line_bundle_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "amount": {"type": "FLOAT64", "comment": null, "index": 5, "name": "amount"}, "class_id": {"type": "INT64", "comment": null, "index": 6, "name": "class_id"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "discount_amount": {"type": "INT64", "comment": null, "index": 8, "name": "discount_amount"}, "discount_rate": {"type": "INT64", "comment": null, "index": 9, "name": "discount_rate"}, "invoice_line_index": {"type": "INT64", "comment": null, "index": 10, "name": "invoice_line_index"}, "item_id": {"type": "INT64", "comment": null, "index": 11, "name": "item_id"}, "line_num": {"type": "INT64", "comment": null, "index": 12, "name": "line_num"}, "quantity": {"type": "FLOAT64", "comment": null, "index": 13, "name": "quantity"}, "service_date": {"type": "INT64", "comment": null, "index": 14, "name": "service_date"}, "tax_code_id": {"type": "STRING", "comment": null, "index": 15, "name": "tax_code_id"}, "unit_price": {"type": "INT64", "comment": null, "index": 16, "name": "unit_price"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_quantity"}, "sales_item_tax_code_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_account_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_line_bundle_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "balance": {"type": "INT64", "comment": null, "index": 4, "name": "balance"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 6, "name": "currency_id"}, "department_id": {"type": "INT64", "comment": null, "index": 7, "name": "department_id"}, "doc_number": {"type": "DATE", "comment": null, "index": 8, "name": "doc_number"}, "due_date": {"type": "DATE", "comment": null, "index": 9, "name": "due_date"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 10, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 11, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 12, "name": "home_balance"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 13, "name": "payable_account_id"}, "private_note": {"type": "STRING", "comment": null, "index": 14, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_term_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 16, "name": "sync_token"}, "total_amount": {"type": "INT64", "comment": null, "index": 17, "name": "total_amount"}, "transaction_date": {"type": "DATE", "comment": null, "index": 18, "name": "transaction_date"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 19, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 20, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "FLOAT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "FLOAT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}, "item_id": {"type": "INT64", "comment": null, "index": 25, "name": "item_id"}, "quantity": {"type": "INT64", "comment": null, "index": 26, "name": "quantity"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 27, "name": "tax_code_id"}, "account_id": {"type": "INT64", "comment": null, "index": 28, "name": "account_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_line_tmp"}, "model.quickbooks_source.stg_quickbooks__estimate_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__estimate_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "accepted_by": {"type": "INT64", "comment": null, "index": 4, "name": "accepted_by"}, "accepted_date": {"type": "INT64", "comment": null, "index": 5, "name": "accepted_date"}, "apply_tax_after_discount": {"type": "BOOL", "comment": null, "index": 6, "name": "apply_tax_after_discount"}, "bill_email": {"type": "STRING", "comment": null, "index": 7, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 8, "name": "billing_address_id"}, "class_id": {"type": "INT64", "comment": null, "index": 9, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 11, "name": "currency_id"}, "custom_p_o_number": {"type": "INT64", "comment": null, "index": 12, "name": "custom_p_o_number"}, "custom_sales_rep": {"type": "INT64", "comment": null, "index": 13, "name": "custom_sales_rep"}, "customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 15, "name": "customer_memo"}, "delivery_type": {"type": "INT64", "comment": null, "index": 16, "name": "delivery_type"}, "department_id": {"type": "INT64", "comment": null, "index": 17, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 18, "name": "doc_number"}, "due_date": {"type": "INT64", "comment": null, "index": 19, "name": "due_date"}, "email_status": {"type": "STRING", "comment": null, "index": 20, "name": "email_status"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 21, "name": "exchange_rate"}, "expiration_date": {"type": "INT64", "comment": null, "index": 22, "name": "expiration_date"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 23, "name": "global_tax_calculation"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 24, "name": "home_total_amount"}, "print_status": {"type": "STRING", "comment": null, "index": 25, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 26, "name": "private_note"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 27, "name": "sales_term_id"}, "ship_date": {"type": "INT64", "comment": null, "index": 28, "name": "ship_date"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 29, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 30, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 31, "name": "tax_code_id"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 32, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 33, "name": "total_tax"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 34, "name": "transaction_date"}, "transaction_status": {"type": "STRING", "comment": null, "index": 35, "name": "transaction_status"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 36, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__estimate_tmp"}, "model.quickbooks_source.stg_quickbooks__deposit_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__deposit_line", "comment": null, "owner": null}, "columns": {"deposit_id": {"type": "INT64", "comment": null, "index": 1, "name": "deposit_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "INT64", "comment": null, "index": 3, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 4, "name": "description"}, "deposit_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_account_id"}, "deposit_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "deposit_class_id"}, "deposit_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "deposit_customer_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 494.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__deposit_line"}, "model.quickbooks_source.stg_quickbooks__invoice_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_line", "comment": null, "owner": null}, "columns": {"invoice_id": {"type": "INT64", "comment": null, "index": 1, "name": "invoice_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "FLOAT64", "comment": null, "index": 3, "name": "amount"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "sales_item_account_id"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 5, "name": "sales_item_item_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "sales_item_class_id"}, "sales_item_quantity": {"type": "FLOAT64", "comment": null, "index": 7, "name": "sales_item_quantity"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 8, "name": "sales_item_unit_price"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 9, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_class_id"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "quantity": {"type": "INT64", "comment": null, "index": 12, "name": "quantity"}, "bundle_quantity": {"type": "FLOAT64", "comment": null, "index": 13, "name": "bundle_quantity"}, "bundle_id": {"type": "INT64", "comment": null, "index": 14, "name": "bundle_id"}, "account_id": {"type": "INT64", "comment": null, "index": 15, "name": "account_id"}, "item_id": {"type": "INT64", "comment": null, "index": 16, "name": "item_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 538.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_line"}, "model.quickbooks_source.stg_quickbooks__bundle_item": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bundle_item", "comment": null, "owner": null}, "columns": {"bundle_id": {"type": "INT64", "comment": null, "index": 1, "name": "bundle_id"}, "item_id": {"type": "INT64", "comment": null, "index": 2, "name": "item_id"}, "item_quantity": {"type": "INT64", "comment": null, "index": 3, "name": "item_quantity"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 312.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bundle_item"}, "model.quickbooks_source.stg_quickbooks__payment": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__payment", "comment": null, "owner": null}, "columns": {"payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "payment_id"}, "unapplied_amount": {"type": "INT64", "comment": null, "index": 2, "name": "unapplied_amount"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 3, "name": "total_amount"}, "currency_id": {"type": "STRING", "comment": null, "index": 4, "name": "currency_id"}, "receivable_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "receivable_account_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "deposit_to_account_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 7, "name": "exchange_rate"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 8, "name": "transaction_date"}, "customer_id": {"type": "INT64", "comment": null, "index": 9, "name": "customer_id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 10, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 594.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__payment"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__refund_receipt_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "apply_tax_after_discount": {"type": "INT64", "comment": null, "index": 4, "name": "apply_tax_after_discount"}, "balance": {"type": "INT64", "comment": null, "index": 5, "name": "balance"}, "bill_email": {"type": "STRING", "comment": null, "index": 6, "name": "bill_email"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 7, "name": "billing_address_id"}, "check_payment_account_number": {"type": "INT64", "comment": null, "index": 8, "name": "check_payment_account_number"}, "check_payment_bank_name": {"type": "INT64", "comment": null, "index": 9, "name": "check_payment_bank_name"}, "check_payment_check_number": {"type": "INT64", "comment": null, "index": 10, "name": "check_payment_check_number"}, "check_payment_name_on_account": {"type": "INT64", "comment": null, "index": 11, "name": "check_payment_name_on_account"}, "check_payment_status": {"type": "INT64", "comment": null, "index": 12, "name": "check_payment_status"}, "class_id": {"type": "INT64", "comment": null, "index": 13, "name": "class_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 14, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 17, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 18, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 19, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 20, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 21, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 22, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 23, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 24, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 25, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 26, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 27, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 28, "name": "customer_id"}, "customer_memo": {"type": "STRING", "comment": null, "index": 29, "name": "customer_memo"}, "department_id": {"type": "INT64", "comment": null, "index": 30, "name": "department_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 31, "name": "deposit_to_account_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 32, "name": "doc_number"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 33, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 34, "name": "global_tax_calculation"}, "home_balance": {"type": "INT64", "comment": null, "index": 35, "name": "home_balance"}, "home_total_amount": {"type": "INT64", "comment": null, "index": 36, "name": "home_total_amount"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 37, "name": "payment_method_id"}, "payment_reference_number": {"type": "INT64", "comment": null, "index": 38, "name": "payment_reference_number"}, "payment_type": {"type": "INT64", "comment": null, "index": 39, "name": "payment_type"}, "print_status": {"type": "INT64", "comment": null, "index": 40, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 41, "name": "private_note"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 42, "name": "shipping_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 43, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 44, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 45, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 46, "name": "total_tax"}, "transaction_date": {"type": "INT64", "comment": null, "index": 47, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 48, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 49, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__refund_receipt_tmp"}, "model.quickbooks_source.stg_quickbooks__item": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__item", "comment": null, "owner": null}, "columns": {"item_id": {"type": "INT64", "comment": null, "index": 1, "name": "item_id"}, "is_active": {"type": "BOOL", "comment": null, "index": 2, "name": "is_active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "income_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "income_account_id"}, "asset_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "asset_account_id"}, "expense_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "expense_account_id"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "purchase_cost": {"type": "INT64", "comment": null, "index": 8, "name": "purchase_cost"}, "taxable": {"type": "BOOL", "comment": null, "index": 9, "name": "taxable"}, "type": {"type": "STRING", "comment": null, "index": 10, "name": "type"}, "unit_price": {"type": "INT64", "comment": null, "index": 11, "name": "unit_price"}, "inventory_start_date": {"type": "INT64", "comment": null, "index": 12, "name": "inventory_start_date"}, "parent_item_id": {"type": "INT64", "comment": null, "index": 13, "name": "parent_item_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 330.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__item"}, "model.quickbooks_source.stg_quickbooks__sales_receipt": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__sales_receipt", "comment": null, "owner": null}, "columns": {"sales_receipt_id": {"type": "INT64", "comment": null, "index": 1, "name": "sales_receipt_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "total_amount": {"type": "INT64", "comment": null, "index": 4, "name": "total_amount"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_to_account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 6, "name": "created_at"}, "customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 8, "name": "department_id"}, "class_id": {"type": "INT64", "comment": null, "index": 9, "name": "class_id"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "transaction_date": {"type": "INT64", "comment": null, "index": 12, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 13, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__sales_receipt"}, "model.quickbooks_source.stg_quickbooks__payment_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__payment_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "credit_card_amount": {"type": "INT64", "comment": null, "index": 5, "name": "credit_card_amount"}, "credit_card_auth_code": {"type": "INT64", "comment": null, "index": 6, "name": "credit_card_auth_code"}, "credit_card_billing_address_street": {"type": "INT64", "comment": null, "index": 7, "name": "credit_card_billing_address_street"}, "credit_card_cc_expiry_month": {"type": "INT64", "comment": null, "index": 8, "name": "credit_card_cc_expiry_month"}, "credit_card_cc_expiry_year": {"type": "INT64", "comment": null, "index": 9, "name": "credit_card_cc_expiry_year"}, "credit_card_cctrans_id": {"type": "INT64", "comment": null, "index": 10, "name": "credit_card_cctrans_id"}, "credit_card_name_on_account": {"type": "INT64", "comment": null, "index": 11, "name": "credit_card_name_on_account"}, "credit_card_postal_code": {"type": "INT64", "comment": null, "index": 12, "name": "credit_card_postal_code"}, "credit_card_process_payment": {"type": "INT64", "comment": null, "index": 13, "name": "credit_card_process_payment"}, "credit_card_status": {"type": "INT64", "comment": null, "index": 14, "name": "credit_card_status"}, "credit_card_transaction_authorization_time": {"type": "INT64", "comment": null, "index": 15, "name": "credit_card_transaction_authorization_time"}, "credit_card_type": {"type": "INT64", "comment": null, "index": 16, "name": "credit_card_type"}, "currency_id": {"type": "STRING", "comment": null, "index": 17, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 18, "name": "customer_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 19, "name": "deposit_to_account_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 20, "name": "exchange_rate"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 21, "name": "payment_method_id"}, "private_note": {"type": "STRING", "comment": null, "index": 22, "name": "private_note"}, "process_payment": {"type": "BOOL", "comment": null, "index": 23, "name": "process_payment"}, "receivable_account_id": {"type": "INT64", "comment": null, "index": 24, "name": "receivable_account_id"}, "reference_number": {"type": "INT64", "comment": null, "index": 25, "name": "reference_number"}, "sync_token": {"type": "INT64", "comment": null, "index": 26, "name": "sync_token"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 27, "name": "total_amount"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 28, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 29, "name": "transaction_source"}, "transaction_status": {"type": "INT64", "comment": null, "index": 30, "name": "transaction_status"}, "unapplied_amount": {"type": "INT64", "comment": null, "index": 31, "name": "unapplied_amount"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 32, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__payment_tmp"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__refund_receipt_line", "comment": null, "owner": null}, "columns": {"refund_id": {"type": "INT64", "comment": null, "index": 1, "name": "refund_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "INT64", "comment": null, "index": 3, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 4, "name": "description"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "discount_account_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "sales_item_account_id"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 7, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 8, "name": "sales_item_quantity"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 9, "name": "sales_item_unit_price"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 10, "name": "sales_item_tax_code_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 280.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__refund_receipt_line"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__sales_receipt_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "sales_receipt_id": {"type": "INT64", "comment": null, "index": 2, "name": "sales_receipt_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__sales_receipt_line_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__vendor", "comment": null, "owner": null}, "columns": {"vendor_id": {"type": "INT64", "comment": null, "index": 1, "name": "vendor_id"}, "account_number": {"type": "INT64", "comment": null, "index": 2, "name": "account_number"}, "is_active": {"type": "BOOL", "comment": null, "index": 3, "name": "is_active"}, "balance": {"type": "INT64", "comment": null, "index": 4, "name": "balance"}, "billing_address_id": {"type": "INT64", "comment": null, "index": 5, "name": "billing_address_id"}, "company_name": {"type": "STRING", "comment": null, "index": 6, "name": "company_name"}, "created_at": {"type": "DATETIME", "comment": null, "index": 7, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 8, "name": "currency_id"}, "display_name": {"type": "STRING", "comment": null, "index": 9, "name": "display_name"}, "web_url": {"type": "INT64", "comment": null, "index": 10, "name": "web_url"}, "is_vendor_1099": {"type": "BOOL", "comment": null, "index": 11, "name": "is_vendor_1099"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 828.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__vendor"}, "model.quickbooks_source.stg_quickbooks__purchase": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase", "comment": null, "owner": null}, "columns": {"purchase_id": {"type": "INT64", "comment": null, "index": 1, "name": "purchase_id"}, "account_id": {"type": "INT64", "comment": null, "index": 2, "name": "account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "created_at"}, "doc_number": {"type": "STRING", "comment": null, "index": 4, "name": "doc_number"}, "currency_id": {"type": "STRING", "comment": null, "index": 5, "name": "currency_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 6, "name": "exchange_rate"}, "credit": {"type": "INT64", "comment": null, "index": 7, "name": "credit"}, "total_amount": {"type": "INT64", "comment": null, "index": 8, "name": "total_amount"}, "payment_type": {"type": "STRING", "comment": null, "index": 9, "name": "payment_type"}, "department_id": {"type": "INT64", "comment": null, "index": 10, "name": "department_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 11, "name": "customer_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 12, "name": "vendor_id"}, "transaction_date": {"type": "INT64", "comment": null, "index": 13, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 14, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase"}, "model.quickbooks_source.stg_quickbooks__department_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__department_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 4, "name": "created_at"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 5, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 6, "name": "name"}, "parent_department_id": {"type": "INT64", "comment": null, "index": 7, "name": "parent_department_id"}, "sub_department": {"type": "BOOL", "comment": null, "index": 8, "name": "sub_department"}, "sync_token": {"type": "INT64", "comment": null, "index": 9, "name": "sync_token"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 10, "name": "updated_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__department_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_line_bundle": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_line_bundle", "comment": null, "owner": null}, "columns": {"invoice_id": {"type": "INT64", "comment": null, "index": 1, "name": "invoice_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "class_id": {"type": "INT64", "comment": null, "index": 3, "name": "class_id"}, "description": {"type": "STRING", "comment": null, "index": 4, "name": "description"}, "amount": {"type": "FLOAT64", "comment": null, "index": 5, "name": "amount"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 6, "name": "sales_item_item_id"}, "item_id": {"type": "INT64", "comment": null, "index": 7, "name": "item_id"}, "quantity": {"type": "FLOAT64", "comment": null, "index": 8, "name": "quantity"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 9, "name": "sales_item_quantity"}, "account_id": {"type": "INT64", "comment": null, "index": 10, "name": "account_id"}, "unit_price": {"type": "INT64", "comment": null, "index": 11, "name": "unit_price"}, "invoice_line_index": {"type": "INT64", "comment": null, "index": 12, "name": "invoice_line_index"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 900.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_line_bundle"}, "model.quickbooks_source.stg_quickbooks__purchase_order": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_order", "comment": null, "owner": null}, "columns": {"purchase_order_id": {"type": "INT64", "comment": null, "index": 1, "name": "purchase_order_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "created_at"}, "custom_po_number": {"type": "STRING", "comment": null, "index": 3, "name": "custom_po_number"}, "doc_number": {"type": "STRING", "comment": null, "index": 4, "name": "doc_number"}, "currency_id": {"type": "STRING", "comment": null, "index": 5, "name": "currency_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 6, "name": "exchange_rate"}, "total_amount": {"type": "FLOAT64", "comment": null, "index": 7, "name": "total_amount"}, "payable_account_id": {"type": "INT64", "comment": null, "index": 8, "name": "payable_account_id"}, "vendor_id": {"type": "INT64", "comment": null, "index": 9, "name": "vendor_id"}, "transaction_date": {"type": "DATETIME", "comment": null, "index": 10, "name": "transaction_date"}, "status": {"type": "STRING", "comment": null, "index": 11, "name": "status"}, "due_date": {"type": "INT64", "comment": null, "index": 12, "name": "due_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 13, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 792.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_order"}, "model.quickbooks_source.stg_quickbooks__customer_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__customer_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "alternate_phone_number": {"type": "INT64", "comment": null, "index": 4, "name": "alternate_phone_number"}, "ar_account_id": {"type": "INT64", "comment": null, "index": 5, "name": "ar_account_id"}, "balance": {"type": "INT64", "comment": null, "index": 6, "name": "balance"}, "balance_with_jobs": {"type": "INT64", "comment": null, "index": 7, "name": "balance_with_jobs"}, "bill_address_id": {"type": "INT64", "comment": null, "index": 8, "name": "bill_address_id"}, "bill_with_parent": {"type": "BOOL", "comment": null, "index": 9, "name": "bill_with_parent"}, "company_name": {"type": "STRING", "comment": null, "index": 10, "name": "company_name"}, "created_at": {"type": "DATETIME", "comment": null, "index": 11, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 12, "name": "currency_id"}, "default_tax_code_id": {"type": "INT64", "comment": null, "index": 13, "name": "default_tax_code_id"}, "display_name": {"type": "STRING", "comment": null, "index": 14, "name": "display_name"}, "email": {"type": "STRING", "comment": null, "index": 15, "name": "email"}, "family_name": {"type": "STRING", "comment": null, "index": 16, "name": "family_name"}, "fax_number": {"type": "INT64", "comment": null, "index": 17, "name": "fax_number"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 18, "name": "fully_qualified_name"}, "given_name": {"type": "STRING", "comment": null, "index": 19, "name": "given_name"}, "job": {"type": "BOOL", "comment": null, "index": 20, "name": "job"}, "level": {"type": "INT64", "comment": null, "index": 21, "name": "level"}, "middle_name": {"type": "INT64", "comment": null, "index": 22, "name": "middle_name"}, "mobile_number": {"type": "INT64", "comment": null, "index": 23, "name": "mobile_number"}, "notes": {"type": "INT64", "comment": null, "index": 24, "name": "notes"}, "open_balance_date": {"type": "INT64", "comment": null, "index": 25, "name": "open_balance_date"}, "parent_customer_id": {"type": "INT64", "comment": null, "index": 26, "name": "parent_customer_id"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 27, "name": "payment_method_id"}, "phone_number": {"type": "INT64", "comment": null, "index": 28, "name": "phone_number"}, "preferred_delivery_method": {"type": "STRING", "comment": null, "index": 29, "name": "preferred_delivery_method"}, "print_on_check_name": {"type": "STRING", "comment": null, "index": 30, "name": "print_on_check_name"}, "resale_number": {"type": "INT64", "comment": null, "index": 31, "name": "resale_number"}, "sales_term_id": {"type": "INT64", "comment": null, "index": 32, "name": "sales_term_id"}, "shipping_address_id": {"type": "INT64", "comment": null, "index": 33, "name": "shipping_address_id"}, "suffix": {"type": "INT64", "comment": null, "index": 34, "name": "suffix"}, "sync_token": {"type": "INT64", "comment": null, "index": 35, "name": "sync_token"}, "tax_exemption_reason_id": {"type": "INT64", "comment": null, "index": 36, "name": "tax_exemption_reason_id"}, "taxable": {"type": "BOOL", "comment": null, "index": 37, "name": "taxable"}, "title": {"type": "INT64", "comment": null, "index": 38, "name": "title"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 39, "name": "updated_at"}, "website": {"type": "INT64", "comment": null, "index": 40, "name": "website"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__customer_tmp"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__refund_receipt_line_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "refund_id": {"type": "INT64", "comment": null, "index": 2, "name": "refund_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "amount": {"type": "INT64", "comment": null, "index": 4, "name": "amount"}, "bundle_id": {"type": "INT64", "comment": null, "index": 5, "name": "bundle_id"}, "bundle_quantity": {"type": "INT64", "comment": null, "index": 6, "name": "bundle_quantity"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "description_service_date": {"type": "INT64", "comment": null, "index": 8, "name": "description_service_date"}, "description_tax_code_id": {"type": "INT64", "comment": null, "index": 9, "name": "description_tax_code_id"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 10, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 11, "name": "discount_class_id"}, "discount_discount_percent": {"type": "INT64", "comment": null, "index": 12, "name": "discount_discount_percent"}, "discount_percent_based": {"type": "INT64", "comment": null, "index": 13, "name": "discount_percent_based"}, "discount_tax_code_id": {"type": "INT64", "comment": null, "index": 14, "name": "discount_tax_code_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 15, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 16, "name": "sales_item_class_id"}, "sales_item_discount_amount": {"type": "INT64", "comment": null, "index": 17, "name": "sales_item_discount_amount"}, "sales_item_discount_rate": {"type": "INT64", "comment": null, "index": 18, "name": "sales_item_discount_rate"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 19, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 20, "name": "sales_item_quantity"}, "sales_item_service_date": {"type": "INT64", "comment": null, "index": 21, "name": "sales_item_service_date"}, "sales_item_tax_code_id": {"type": "STRING", "comment": null, "index": 22, "name": "sales_item_tax_code_id"}, "sales_item_unit_price": {"type": "INT64", "comment": null, "index": 23, "name": "sales_item_unit_price"}, "sub_total_item_id": {"type": "INT64", "comment": null, "index": 24, "name": "sub_total_item_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__refund_receipt_line_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_line_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_line_tmp", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_account_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 6, "name": "account_expense_class_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "account_expense_tax_amount": {"type": "INT64", "comment": null, "index": 8, "name": "account_expense_tax_amount"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 9, "name": "account_expense_tax_code_id"}, "amount": {"type": "INT64", "comment": null, "index": 10, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 11, "name": "description"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 12, "name": "item_expense_billable_status"}, "item_expense_class_id": {"type": "INT64", "comment": null, "index": 13, "name": "item_expense_class_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 14, "name": "item_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 15, "name": "item_expense_item_id"}, "item_expense_quantity": {"type": "INT64", "comment": null, "index": 16, "name": "item_expense_quantity"}, "item_expense_tax_code_id": {"type": "INT64", "comment": null, "index": 17, "name": "item_expense_tax_code_id"}, "item_expense_unit_price": {"type": "INT64", "comment": null, "index": 18, "name": "item_expense_unit_price"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_line_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bill_line", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "INT64", "comment": null, "index": 1, "name": "bill_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "account_expense_account_id": {"type": "INT64", "comment": null, "index": 3, "name": "account_expense_account_id"}, "account_expense_class_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_expense_class_id"}, "account_expense_billable_status": {"type": "STRING", "comment": null, "index": 5, "name": "account_expense_billable_status"}, "account_expense_tax_code_id": {"type": "STRING", "comment": null, "index": 6, "name": "account_expense_tax_code_id"}, "account_expense_customer_id": {"type": "INT64", "comment": null, "index": 7, "name": "account_expense_customer_id"}, "item_expense_item_id": {"type": "INT64", "comment": null, "index": 8, "name": "item_expense_item_id"}, "item_expense_customer_id": {"type": "INT64", "comment": null, "index": 9, "name": "item_expense_customer_id"}, "item_expense_billable_status": {"type": "INT64", "comment": null, "index": 10, "name": "item_expense_billable_status"}, "amount": {"type": "INT64", "comment": null, "index": 11, "name": "amount"}, "description": {"type": "STRING", "comment": null, "index": 12, "name": "description"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1340.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bill_line"}, "model.quickbooks_source.stg_quickbooks__invoice_linked_txn_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__invoice_linked_txn_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "invoice_id": {"type": "INT64", "comment": null, "index": 2, "name": "invoice_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "charge_credit_id": {"type": "INT64", "comment": null, "index": 4, "name": "charge_credit_id"}, "estimate_id": {"type": "INT64", "comment": null, "index": 5, "name": "estimate_id"}, "payment_id": {"type": "INT64", "comment": null, "index": 6, "name": "payment_id"}, "reimburse_charge_id": {"type": "INT64", "comment": null, "index": 7, "name": "reimburse_charge_id"}, "statement_charge_id": {"type": "INT64", "comment": null, "index": 8, "name": "statement_charge_id"}, "time_activity_id": {"type": "INT64", "comment": null, "index": 9, "name": "time_activity_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__invoice_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__refund_receipt": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__refund_receipt", "comment": null, "owner": null}, "columns": {"refund_id": {"type": "INT64", "comment": null, "index": 1, "name": "refund_id"}, "balance": {"type": "INT64", "comment": null, "index": 2, "name": "balance"}, "doc_number": {"type": "STRING", "comment": null, "index": 3, "name": "doc_number"}, "total_amount": {"type": "INT64", "comment": null, "index": 4, "name": "total_amount"}, "class_id": {"type": "INT64", "comment": null, "index": 5, "name": "class_id"}, "deposit_to_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "deposit_to_account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 7, "name": "created_at"}, "department_id": {"type": "INT64", "comment": null, "index": 8, "name": "department_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 9, "name": "customer_id"}, "currency_id": {"type": "STRING", "comment": null, "index": 10, "name": "currency_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 11, "name": "exchange_rate"}, "transaction_date": {"type": "INT64", "comment": null, "index": 12, "name": "transaction_date"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 13, "name": "_fivetran_deleted"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__refund_receipt"}, "model.quickbooks_source.stg_quickbooks__payment_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__payment_line", "comment": null, "owner": null}, "columns": {"payment_id": {"type": "INT64", "comment": null, "index": 1, "name": "payment_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "amount": {"type": "FLOAT64", "comment": null, "index": 3, "name": "amount"}, "journal_entry_id": {"type": "INT64", "comment": null, "index": 4, "name": "journal_entry_id"}, "deposit_id": {"type": "INT64", "comment": null, "index": 5, "name": "deposit_id"}, "invoice_id": {"type": "INT64", "comment": null, "index": 6, "name": "invoice_id"}, "credit_memo_id": {"type": "INT64", "comment": null, "index": 7, "name": "credit_memo_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 352.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__payment_line"}, "model.quickbooks_source.stg_quickbooks__purchase_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__purchase_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "account_id": {"type": "INT64", "comment": null, "index": 4, "name": "account_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "created_at"}, "credit": {"type": "INT64", "comment": null, "index": 6, "name": "credit"}, "currency_id": {"type": "STRING", "comment": null, "index": 7, "name": "currency_id"}, "customer_id": {"type": "INT64", "comment": null, "index": 8, "name": "customer_id"}, "department_id": {"type": "INT64", "comment": null, "index": 9, "name": "department_id"}, "doc_number": {"type": "INT64", "comment": null, "index": 10, "name": "doc_number"}, "employee_id": {"type": "INT64", "comment": null, "index": 11, "name": "employee_id"}, "exchange_rate": {"type": "INT64", "comment": null, "index": 12, "name": "exchange_rate"}, "global_tax_calculation": {"type": "INT64", "comment": null, "index": 13, "name": "global_tax_calculation"}, "payment_method_id": {"type": "INT64", "comment": null, "index": 14, "name": "payment_method_id"}, "payment_type": {"type": "STRING", "comment": null, "index": 15, "name": "payment_type"}, "print_status": {"type": "INT64", "comment": null, "index": 16, "name": "print_status"}, "private_note": {"type": "INT64", "comment": null, "index": 17, "name": "private_note"}, "remit_to_address_id": {"type": "INT64", "comment": null, "index": 18, "name": "remit_to_address_id"}, "sync_token": {"type": "INT64", "comment": null, "index": 19, "name": "sync_token"}, "tax_code_id": {"type": "INT64", "comment": null, "index": 20, "name": "tax_code_id"}, "total_amount": {"type": "INT64", "comment": null, "index": 21, "name": "total_amount"}, "total_tax": {"type": "INT64", "comment": null, "index": 22, "name": "total_tax"}, "transaction_date": {"type": "INT64", "comment": null, "index": 23, "name": "transaction_date"}, "transaction_source": {"type": "INT64", "comment": null, "index": 24, "name": "transaction_source"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 25, "name": "updated_at"}, "vendor_id": {"type": "INT64", "comment": null, "index": 26, "name": "vendor_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__purchase_tmp"}, "model.quickbooks_source.stg_quickbooks__customer": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__customer", "comment": null, "owner": null}, "columns": {"customer_id": {"type": "INT64", "comment": null, "index": 1, "name": "customer_id"}, "is_active": {"type": "BOOL", "comment": null, "index": 2, "name": "is_active"}, "balance": {"type": "INT64", "comment": null, "index": 3, "name": "balance"}, "balance_with_jobs": {"type": "INT64", "comment": null, "index": 4, "name": "balance_with_jobs"}, "bill_with_parent": {"type": "BOOL", "comment": null, "index": 5, "name": "bill_with_parent"}, "company_name": {"type": "STRING", "comment": null, "index": 6, "name": "company_name"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 7, "name": "fully_qualified_name"}, "currency_id": {"type": "STRING", "comment": null, "index": 8, "name": "currency_id"}, "display_name": {"type": "STRING", "comment": null, "index": 9, "name": "display_name"}, "website": {"type": "INT64", "comment": null, "index": 10, "name": "website"}, "taxable": {"type": "BOOL", "comment": null, "index": 11, "name": "taxable"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 534.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__customer"}, "model.quickbooks_source.stg_quickbooks__estimate_line": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__estimate_line", "comment": null, "owner": null}, "columns": {"estimate_id": {"type": "INT64", "comment": null, "index": 1, "name": "estimate_id"}, "index": {"type": "INT64", "comment": null, "index": 2, "name": "index"}, "description": {"type": "STRING", "comment": null, "index": 3, "name": "description"}, "discount_account_id": {"type": "INT64", "comment": null, "index": 4, "name": "discount_account_id"}, "discount_class_id": {"type": "INT64", "comment": null, "index": 5, "name": "discount_class_id"}, "sales_item_account_id": {"type": "INT64", "comment": null, "index": 6, "name": "sales_item_account_id"}, "sales_item_class_id": {"type": "INT64", "comment": null, "index": 7, "name": "sales_item_class_id"}, "sales_item_item_id": {"type": "INT64", "comment": null, "index": 8, "name": "sales_item_item_id"}, "sales_item_quantity": {"type": "INT64", "comment": null, "index": 9, "name": "sales_item_quantity"}, "item_id": {"type": "INT64", "comment": null, "index": 10, "name": "item_id"}, "quantity": {"type": "INT64", "comment": null, "index": 11, "name": "quantity"}, "account_id": {"type": "INT64", "comment": null, "index": 12, "name": "account_id"}, "amount": {"type": "INT64", "comment": null, "index": 13, "name": "amount"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 800.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__estimate_line"}, "model.quickbooks_source.stg_quickbooks__bundle_item_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_quickbooks__bundle_item_tmp", "comment": null, "owner": null}, "columns": {"bundle_id": {"type": "INT64", "comment": null, "index": 1, "name": "bundle_id"}, "item_id": {"type": "INT64", "comment": null, "index": 2, "name": "item_id"}, "_fivetran_synced": {"type": "DATETIME", "comment": null, "index": 3, "name": "_fivetran_synced"}, "item_quantity": {"type": "INT64", "comment": null, "index": 4, "name": "item_quantity"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.quickbooks_source.stg_quickbooks__bundle_item_tmp"}}, "sources": {"source.quickbooks_source.quickbooks.account": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "quickbooks", "name": "account", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "account_number": {"type": "STRING", "comment": null, "index": 3, "name": "account_number"}, "account_sub_type": {"type": "STRING", "comment": null, "index": 4, "name": "account_sub_type"}, "account_type": {"type": "STRING", "comment": null, "index": 5, "name": "account_type"}, "active": {"type": "BOOL", "comment": null, "index": 6, "name": "active"}, "balance": {"type": "FLOAT64", "comment": null, "index": 7, "name": "balance"}, "balance_with_sub_accounts": {"type": "FLOAT64", "comment": null, "index": 8, "name": "balance_with_sub_accounts"}, "classification": {"type": "STRING", "comment": null, "index": 9, "name": "classification"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 10, "name": "created_at"}, "currency_id": {"type": "STRING", "comment": null, "index": 11, "name": "currency_id"}, "description": {"type": "STRING", "comment": null, "index": 12, "name": "description"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 13, "name": "fully_qualified_name"}, "name": {"type": "STRING", "comment": null, "index": 14, "name": "name"}, "parent_account_id": {"type": "STRING", "comment": null, "index": 15, "name": "parent_account_id"}, "sub_account": {"type": "BOOL", "comment": null, "index": 16, "name": "sub_account"}, "sync_token": {"type": "STRING", "comment": null, "index": 17, "name": "sync_token"}, "tax_code_id": {"type": "STRING", "comment": null, "index": 18, "name": "tax_code_id"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 19, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 26.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4756.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "source.quickbooks_source.quickbooks.account"}, "source.quickbooks_source.quickbooks.item": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "quickbooks", "name": "item", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "asset_account_id": {"type": "STRING", "comment": null, "index": 4, "name": "asset_account_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 6, "name": "description"}, "expense_account_id": {"type": "STRING", "comment": null, "index": 7, "name": "expense_account_id"}, "fully_qualified_name": {"type": "STRING", "comment": null, "index": 8, "name": "fully_qualified_name"}, "income_account_id": {"type": "STRING", "comment": null, "index": 9, "name": "income_account_id"}, "inventory_start_date": {"type": "DATE", "comment": null, "index": 10, "name": "inventory_start_date"}, "level": {"type": "INT64", "comment": null, "index": 11, "name": "level"}, "name": {"type": "STRING", "comment": null, "index": 12, "name": "name"}, "parent_item_id": {"type": "STRING", "comment": null, "index": 13, "name": "parent_item_id"}, "purchase_cost": {"type": "FLOAT64", "comment": null, "index": 14, "name": "purchase_cost"}, "purchase_description": {"type": "STRING", "comment": null, "index": 15, "name": "purchase_description"}, "purchase_tax_code_id": {"type": "STRING", "comment": null, "index": 16, "name": "purchase_tax_code_id"}, "purchase_tax_included": {"type": "BOOL", "comment": null, "index": 17, "name": "purchase_tax_included"}, "quantity_on_hand": {"type": "FLOAT64", "comment": null, "index": 18, "name": "quantity_on_hand"}, "sales_tax_code_id": {"type": "STRING", "comment": null, "index": 19, "name": "sales_tax_code_id"}, "sales_tax_included": {"type": "BOOL", "comment": null, "index": 20, "name": "sales_tax_included"}, "stock_keeping_unit": {"type": "STRING", "comment": null, "index": 21, "name": "stock_keeping_unit"}, "sub_item": {"type": "BOOL", "comment": null, "index": 22, "name": "sub_item"}, "sync_token": {"type": "STRING", "comment": null, "index": 23, "name": "sync_token"}, "taxable": {"type": "BOOL", "comment": null, "index": 24, "name": "taxable"}, "track_quantity_on_hand": {"type": "BOOL", "comment": null, "index": 25, "name": "track_quantity_on_hand"}, "type": {"type": "STRING", "comment": null, "index": 26, "name": "type"}, "unit_price": {"type": "FLOAT64", "comment": null, "index": 27, "name": "unit_price"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 28, "name": "updated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 150.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "source.quickbooks_source.quickbooks.item"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.2.1", "generated_at": "2022-09-26T20:48:47.111076Z", "invocation_id": "2e1a352c-57aa-4f64-a60f-68b0a866a677", "env": {}}, "nodes": {"seed.quickbooks_source_integration_tests.account_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "account_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "integer", "index": 3, "name": "account_number", "comment": null}, "account_sub_type": {"type": "text", "index": 4, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 5, "name": "account_type", "comment": null}, "active": {"type": "boolean", "index": 6, "name": "active", "comment": null}, "balance": {"type": "integer", "index": 7, "name": "balance", "comment": null}, "balance_with_sub_accounts": {"type": "integer", "index": 8, "name": "balance_with_sub_accounts", "comment": null}, "classification": {"type": "text", "index": 9, "name": "classification", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 11, "name": "currency_id", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fully_qualified_name": {"type": "text", "index": 13, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 15, "name": "parent_account_id", "comment": null}, "sub_account": {"type": "boolean", "index": 16, "name": "sub_account", "comment": null}, "sync_token": {"type": "integer", "index": 17, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 18, "name": "tax_code_id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "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.quickbooks_source_integration_tests.account_data"}, "seed.quickbooks_source_integration_tests.address_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "address_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "city": {"type": "text", "index": 3, "name": "city", "comment": null}, "country": {"type": "text", "index": 4, "name": "country", "comment": null}, "country_sub_division_code": {"type": "text", "index": 5, "name": "country_sub_division_code", "comment": null}, "latitude": {"type": "integer", "index": 6, "name": "latitude", "comment": null}, "line_1": {"type": "text", "index": 7, "name": "line_1", "comment": null}, "line_2": {"type": "text", "index": 8, "name": "line_2", "comment": null}, "line_3": {"type": "integer", "index": 9, "name": "line_3", "comment": null}, "line_4": {"type": "integer", "index": 10, "name": "line_4", "comment": null}, "line_5": {"type": "integer", "index": 11, "name": "line_5", "comment": null}, "longitude": {"type": "integer", "index": 12, "name": "longitude", "comment": null}, "postal_code": {"type": "integer", "index": 13, "name": "postal_code", "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.quickbooks_source_integration_tests.address_data"}, "seed.quickbooks_source_integration_tests.bill_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bill_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "balance": {"type": "integer", "index": 4, "name": "balance", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "doc_number": {"type": "date", "index": 8, "name": "doc_number", "comment": null}, "due_date": {"type": "date", "index": 9, "name": "due_date", "comment": null}, "exchange_rate": {"type": "integer", "index": 10, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 11, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 12, "name": "home_balance", "comment": null}, "payable_account_id": {"type": "integer", "index": 13, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 14, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 15, "name": "sales_term_id", "comment": null}, "sync_token": {"type": "integer", "index": 16, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 17, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 18, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 20, "name": "vendor_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.quickbooks_source_integration_tests.bill_data"}, "seed.quickbooks_source_integration_tests.bill_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bill_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "integer", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "double precision", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source_integration_tests.bill_line_data"}, "seed.quickbooks_source_integration_tests.bill_linked_txn_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bill_linked_txn_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "integer", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bill_payment_id": {"type": "integer", "index": 4, "name": "bill_payment_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.quickbooks_source_integration_tests.bill_linked_txn_data"}, "seed.quickbooks_source_integration_tests.bill_payment_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bill_payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "check_bank_account_id": {"type": "integer", "index": 4, "name": "check_bank_account_id", "comment": null}, "check_print_status": {"type": "text", "index": 5, "name": "check_print_status", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "credit_card_account_id": {"type": "integer", "index": 7, "name": "credit_card_account_id", "comment": null}, "currency_id": {"type": "text", "index": 8, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 10, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "pay_type": {"type": "text", "index": 12, "name": "pay_type", "comment": null}, "payable_account_id": {"type": "integer", "index": 13, "name": "payable_account_id", "comment": null}, "private_note": {"type": "integer", "index": 14, "name": "private_note", "comment": null}, "process_bill_payment": {"type": "integer", "index": 15, "name": "process_bill_payment", "comment": null}, "sync_token": {"type": "integer", "index": 16, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 17, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 18, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 20, "name": "vendor_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.quickbooks_source_integration_tests.bill_payment_data"}, "seed.quickbooks_source_integration_tests.bill_payment_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bill_payment_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_payment_id": {"type": "integer", "index": 1, "name": "bill_payment_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bill_id": {"type": "double precision", "index": 5, "name": "bill_id", "comment": null}, "check_id": {"type": "integer", "index": 6, "name": "check_id", "comment": null}, "credit_card_charge_id": {"type": "integer", "index": 7, "name": "credit_card_charge_id", "comment": null}, "credit_card_credit_id": {"type": "integer", "index": 8, "name": "credit_card_credit_id", "comment": null}, "deposit_id": {"type": "integer", "index": 9, "name": "deposit_id", "comment": null}, "expense_id": {"type": "integer", "index": 10, "name": "expense_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 11, "name": "journal_entry_id", "comment": null}, "linked_bill_payment_id": {"type": "integer", "index": 12, "name": "linked_bill_payment_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 13, "name": "vendor_credit_id", "comment": null}, "bill_payment_credit_card_id": {"type": "integer", "index": 14, "name": "bill_payment_credit_card_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.quickbooks_source_integration_tests.bill_payment_line_data"}, "seed.quickbooks_source_integration_tests.bundle_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bundle_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 5, "name": "description", "comment": null}, "fully_qualified_name": {"type": "text", "index": 6, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "print_grouped_items": {"type": "boolean", "index": 8, "name": "print_grouped_items", "comment": null}, "purchase_cost": {"type": "integer", "index": 9, "name": "purchase_cost", "comment": null}, "sync_token": {"type": "integer", "index": 10, "name": "sync_token", "comment": null}, "taxable": {"type": "boolean", "index": 11, "name": "taxable", "comment": null}, "unit_price": {"type": "integer", "index": 12, "name": "unit_price", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 13, "name": "updated_at", "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.quickbooks_source_integration_tests.bundle_data"}, "seed.quickbooks_source_integration_tests.bundle_item_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "bundle_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bundle_id": {"type": "integer", "index": 1, "name": "bundle_id", "comment": null}, "item_id": {"type": "integer", "index": 2, "name": "item_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "item_quantity": {"type": "integer", "index": 4, "name": "item_quantity", "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.quickbooks_source_integration_tests.bundle_item_data"}, "seed.quickbooks_source_integration_tests.credit_card_payment_txn_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "credit_card_payment_txn_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "amount": {"type": "double precision", "index": 2, "name": "amount", "comment": null}, "bank_account_id": {"type": "integer", "index": 3, "name": "bank_account_id", "comment": null}, "credit_card_account_id": {"type": "integer", "index": 4, "name": "credit_card_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "currency_id": {"type": "text", "index": 7, "name": "currency_id", "comment": null}, "transaction_date": {"type": "date", "index": 8, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 9, "name": "_fivetran_deleted", "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.quickbooks_source_integration_tests.credit_card_payment_txn_data"}, "seed.quickbooks_source_integration_tests.credit_memo_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "credit_memo_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "boolean", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 8, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 11, "name": "custom_p_o_number", "comment": null}, "customer_id": {"type": "integer", "index": 12, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 13, "name": "customer_memo", "comment": null}, "department_id": {"type": "integer", "index": 14, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 15, "name": "doc_number", "comment": null}, "email_status": {"type": "text", "index": 16, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 17, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 18, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 19, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 20, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 21, "name": "payment_method_id", "comment": null}, "print_status": {"type": "text", "index": 22, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 23, "name": "private_note", "comment": null}, "remaining_credit": {"type": "integer", "index": 24, "name": "remaining_credit", "comment": null}, "sales_term_id": {"type": "integer", "index": 25, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 26, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 27, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 28, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 29, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 30, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 31, "name": "updated_at", "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.quickbooks_source_integration_tests.credit_memo_data"}, "seed.quickbooks_source_integration_tests.credit_memo_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "credit_memo_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_memo_id": {"type": "integer", "index": 1, "name": "credit_memo_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "double precision", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source_integration_tests.credit_memo_line_data"}, "seed.quickbooks_source_integration_tests.customer_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "customer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "alternate_phone_number": {"type": "integer", "index": 4, "name": "alternate_phone_number", "comment": null}, "ar_account_id": {"type": "integer", "index": 5, "name": "ar_account_id", "comment": null}, "balance": {"type": "integer", "index": 6, "name": "balance", "comment": null}, "balance_with_jobs": {"type": "integer", "index": 7, "name": "balance_with_jobs", "comment": null}, "bill_address_id": {"type": "integer", "index": 8, "name": "bill_address_id", "comment": null}, "bill_with_parent": {"type": "boolean", "index": 9, "name": "bill_with_parent", "comment": null}, "company_name": {"type": "text", "index": 10, "name": "company_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 11, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 12, "name": "currency_id", "comment": null}, "default_tax_code_id": {"type": "integer", "index": 13, "name": "default_tax_code_id", "comment": null}, "display_name": {"type": "text", "index": 14, "name": "display_name", "comment": null}, "email": {"type": "text", "index": 15, "name": "email", "comment": null}, "family_name": {"type": "text", "index": 16, "name": "family_name", "comment": null}, "fax_number": {"type": "integer", "index": 17, "name": "fax_number", "comment": null}, "fully_qualified_name": {"type": "text", "index": 18, "name": "fully_qualified_name", "comment": null}, "given_name": {"type": "text", "index": 19, "name": "given_name", "comment": null}, "job": {"type": "boolean", "index": 20, "name": "job", "comment": null}, "level": {"type": "integer", "index": 21, "name": "level", "comment": null}, "middle_name": {"type": "integer", "index": 22, "name": "middle_name", "comment": null}, "mobile_number": {"type": "integer", "index": 23, "name": "mobile_number", "comment": null}, "notes": {"type": "integer", "index": 24, "name": "notes", "comment": null}, "open_balance_date": {"type": "integer", "index": 25, "name": "open_balance_date", "comment": null}, "parent_customer_id": {"type": "integer", "index": 26, "name": "parent_customer_id", "comment": null}, "payment_method_id": {"type": "integer", "index": 27, "name": "payment_method_id", "comment": null}, "phone_number": {"type": "integer", "index": 28, "name": "phone_number", "comment": null}, "preferred_delivery_method": {"type": "text", "index": 29, "name": "preferred_delivery_method", "comment": null}, "print_on_check_name": {"type": "text", "index": 30, "name": "print_on_check_name", "comment": null}, "resale_number": {"type": "integer", "index": 31, "name": "resale_number", "comment": null}, "sales_term_id": {"type": "integer", "index": 32, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 33, "name": "shipping_address_id", "comment": null}, "suffix": {"type": "integer", "index": 34, "name": "suffix", "comment": null}, "sync_token": {"type": "integer", "index": 35, "name": "sync_token", "comment": null}, "tax_exemption_reason_id": {"type": "integer", "index": 36, "name": "tax_exemption_reason_id", "comment": null}, "taxable": {"type": "boolean", "index": 37, "name": "taxable", "comment": null}, "title": {"type": "integer", "index": 38, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 39, "name": "updated_at", "comment": null}, "website": {"type": "integer", "index": 40, "name": "website", "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.quickbooks_source_integration_tests.customer_data"}, "seed.quickbooks_source_integration_tests.department_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "department_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "fully_qualified_name": {"type": "text", "index": 5, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "parent_department_id": {"type": "integer", "index": 7, "name": "parent_department_id", "comment": null}, "sub_department": {"type": "boolean", "index": 8, "name": "sub_department", "comment": null}, "sync_token": {"type": "integer", "index": 9, "name": "sync_token", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "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.quickbooks_source_integration_tests.department_data"}, "seed.quickbooks_source_integration_tests.deposit_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "deposit_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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": "integer", "index": 4, "name": "account_id", "comment": null}, "cash_back_account_id": {"type": "integer", "index": 5, "name": "cash_back_account_id", "comment": null}, "cash_back_amount": {"type": "integer", "index": 6, "name": "cash_back_amount", "comment": null}, "cash_back_memo": {"type": "integer", "index": 7, "name": "cash_back_memo", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 9, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 10, "name": "department_id", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 11, "name": "global_tax_calculation", "comment": null}, "home_total_amount": {"type": "integer", "index": 12, "name": "home_total_amount", "comment": null}, "private_note": {"type": "text", "index": 13, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 14, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 15, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 16, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 17, "name": "transaction_source", "comment": null}, "transaction_status": {"type": "integer", "index": 18, "name": "transaction_status", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "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.quickbooks_source_integration_tests.deposit_data"}, "seed.quickbooks_source_integration_tests.deposit_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "deposit_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"deposit_id": {"type": "integer", "index": 1, "name": "deposit_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "deposit_account_id": {"type": "integer", "index": 5, "name": "deposit_account_id", "comment": null}, "deposit_check_number": {"type": "integer", "index": 6, "name": "deposit_check_number", "comment": null}, "deposit_class_id": {"type": "integer", "index": 7, "name": "deposit_class_id", "comment": null}, "deposit_customer_id": {"type": "integer", "index": 8, "name": "deposit_customer_id", "comment": null}, "deposit_payment_method_id": {"type": "integer", "index": 9, "name": "deposit_payment_method_id", "comment": null}, "deposit_tax_applicable_on": {"type": "integer", "index": 10, "name": "deposit_tax_applicable_on", "comment": null}, "deposit_tax_code_id": {"type": "integer", "index": 11, "name": "deposit_tax_code_id", "comment": null}, "deposit_transaction_type": {"type": "integer", "index": 12, "name": "deposit_transaction_type", "comment": null}, "description": {"type": "text", "index": 13, "name": "description", "comment": null}, "detail_type": {"type": "text", "index": 14, "name": "detail_type", "comment": null}, "expense_id": {"type": "integer", "index": 15, "name": "expense_id", "comment": null}, "invoice_id": {"type": "integer", "index": 16, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 17, "name": "journal_entry_id", "comment": null}, "payment_id": {"type": "integer", "index": 18, "name": "payment_id", "comment": null}, "purchase_id": {"type": "integer", "index": 19, "name": "purchase_id", "comment": null}, "refund_receipt_id": {"type": "integer", "index": 20, "name": "refund_receipt_id", "comment": null}, "sales_receipt_id": {"type": "integer", "index": 21, "name": "sales_receipt_id", "comment": null}, "transfer_id": {"type": "integer", "index": 22, "name": "transfer_id", "comment": null}, "bill_id": {"type": "integer", "index": 23, "name": "bill_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 24, "name": "vendor_credit_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.quickbooks_source_integration_tests.deposit_line_data"}, "seed.quickbooks_source_integration_tests.estimate_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "estimate_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "accepted_by": {"type": "integer", "index": 4, "name": "accepted_by", "comment": null}, "accepted_date": {"type": "integer", "index": 5, "name": "accepted_date", "comment": null}, "apply_tax_after_discount": {"type": "boolean", "index": 6, "name": "apply_tax_after_discount", "comment": null}, "bill_email": {"type": "text", "index": 7, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 8, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 9, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 11, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 12, "name": "custom_p_o_number", "comment": null}, "custom_sales_rep": {"type": "integer", "index": 13, "name": "custom_sales_rep", "comment": null}, "customer_id": {"type": "integer", "index": 14, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 15, "name": "customer_memo", "comment": null}, "delivery_type": {"type": "integer", "index": 16, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 17, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 18, "name": "doc_number", "comment": null}, "due_date": {"type": "integer", "index": 19, "name": "due_date", "comment": null}, "email_status": {"type": "text", "index": 20, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 21, "name": "exchange_rate", "comment": null}, "expiration_date": {"type": "integer", "index": 22, "name": "expiration_date", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 23, "name": "global_tax_calculation", "comment": null}, "home_total_amount": {"type": "integer", "index": 24, "name": "home_total_amount", "comment": null}, "print_status": {"type": "text", "index": 25, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 26, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 27, "name": "sales_term_id", "comment": null}, "ship_date": {"type": "integer", "index": 28, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 29, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 30, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 31, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "double precision", "index": 32, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 33, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 34, "name": "transaction_date", "comment": null}, "transaction_status": {"type": "text", "index": 35, "name": "transaction_status", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 36, "name": "updated_at", "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.quickbooks_source_integration_tests.estimate_data"}, "seed.quickbooks_source_integration_tests.estimate_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "estimate_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"estimate_id": {"type": "integer", "index": 1, "name": "estimate_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_id", "comment": null}, "item_id": {"type": "integer", "index": 25, "name": "item_id", "comment": null}, "quantity": {"type": "integer", "index": 26, "name": "quantity", "comment": null}, "tax_code_id": {"type": "integer", "index": 27, "name": "tax_code_id", "comment": null}, "account_id": {"type": "integer", "index": 28, "name": "account_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.quickbooks_source_integration_tests.estimate_line_data"}, "seed.quickbooks_source_integration_tests.invoice_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "invoice_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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_ipnpayment": {"type": "boolean", "index": 4, "name": "allow_ipnpayment", "comment": null}, "allow_online_achpayment": {"type": "boolean", "index": 5, "name": "allow_online_achpayment", "comment": null}, "allow_online_credit_card_payment": {"type": "boolean", "index": 6, "name": "allow_online_credit_card_payment", "comment": null}, "allow_online_payment": {"type": "boolean", "index": 7, "name": "allow_online_payment", "comment": null}, "apply_tax_after_discount": {"type": "boolean", "index": 8, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 9, "name": "balance", "comment": null}, "billing_address_id": {"type": "integer", "index": 10, "name": "billing_address_id", "comment": null}, "billing_bcc_email": {"type": "text", "index": 11, "name": "billing_bcc_email", "comment": null}, "billing_cc_email": {"type": "integer", "index": 12, "name": "billing_cc_email", "comment": null}, "billing_email": {"type": "text", "index": 13, "name": "billing_email", "comment": null}, "class_id": {"type": "integer", "index": 14, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 15, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 16, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 17, "name": "custom_p_o_number", "comment": null}, "custom_sales_rep": {"type": "integer", "index": 18, "name": "custom_sales_rep", "comment": null}, "customer_id": {"type": "integer", "index": 19, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 20, "name": "customer_memo", "comment": null}, "delivery_time": {"type": "timestamp without time zone", "index": 21, "name": "delivery_time", "comment": null}, "delivery_type": {"type": "text", "index": 22, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 23, "name": "department_id", "comment": null}, "deposit": {"type": "integer", "index": 24, "name": "deposit", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 25, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 26, "name": "doc_number", "comment": null}, "due_date": {"type": "timestamp without time zone", "index": 27, "name": "due_date", "comment": null}, "email_status": {"type": "text", "index": 28, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 29, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 30, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 31, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 32, "name": "home_total_amount", "comment": null}, "print_status": {"type": "text", "index": 33, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 34, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 35, "name": "sales_term_id", "comment": null}, "ship_date": {"type": "integer", "index": 36, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 37, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 38, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 39, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 40, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 41, "name": "total_tax", "comment": null}, "tracking_number": {"type": "integer", "index": 42, "name": "tracking_number", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 43, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 44, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 45, "name": "updated_at", "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.quickbooks_source_integration_tests.invoice_data"}, "seed.quickbooks_source_integration_tests.invoice_line_bundle_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "invoice_line_bundle_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "integer", "index": 4, "name": "account_id", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "class_id": {"type": "integer", "index": 6, "name": "class_id", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "discount_amount": {"type": "integer", "index": 8, "name": "discount_amount", "comment": null}, "discount_rate": {"type": "integer", "index": 9, "name": "discount_rate", "comment": null}, "invoice_line_index": {"type": "integer", "index": 10, "name": "invoice_line_index", "comment": null}, "item_id": {"type": "integer", "index": 11, "name": "item_id", "comment": null}, "line_num": {"type": "integer", "index": 12, "name": "line_num", "comment": null}, "quantity": {"type": "double precision", "index": 13, "name": "quantity", "comment": null}, "service_date": {"type": "integer", "index": 14, "name": "service_date", "comment": null}, "tax_code_id": {"type": "text", "index": 15, "name": "tax_code_id", "comment": null}, "unit_price": {"type": "integer", "index": 16, "name": "unit_price", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 17, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 18, "name": "sales_item_quantity", "comment": null}, "sales_item_tax_code_id": {"type": "integer", "index": 19, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 20, "name": "sales_item_account_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.quickbooks_source_integration_tests.invoice_line_bundle_data"}, "seed.quickbooks_source_integration_tests.invoice_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "invoice_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "double precision", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_id", "comment": null}, "item_id": {"type": "integer", "index": 25, "name": "item_id", "comment": null}, "quantity": {"type": "integer", "index": 26, "name": "quantity", "comment": null}, "tax_code_id": {"type": "integer", "index": 27, "name": "tax_code_id", "comment": null}, "account_id": {"type": "integer", "index": 28, "name": "account_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.quickbooks_source_integration_tests.invoice_line_data"}, "seed.quickbooks_source_integration_tests.invoice_linked_txn_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "invoice_linked_txn_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "charge_credit_id": {"type": "integer", "index": 4, "name": "charge_credit_id", "comment": null}, "estimate_id": {"type": "integer", "index": 5, "name": "estimate_id", "comment": null}, "payment_id": {"type": "integer", "index": 6, "name": "payment_id", "comment": null}, "reimburse_charge_id": {"type": "integer", "index": 7, "name": "reimburse_charge_id", "comment": null}, "statement_charge_id": {"type": "integer", "index": 8, "name": "statement_charge_id", "comment": null}, "time_activity_id": {"type": "integer", "index": 9, "name": "time_activity_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.quickbooks_source_integration_tests.invoice_linked_txn_data"}, "seed.quickbooks_source_integration_tests.item_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "asset_account_id": {"type": "integer", "index": 4, "name": "asset_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 6, "name": "description", "comment": null}, "expense_account_id": {"type": "integer", "index": 7, "name": "expense_account_id", "comment": null}, "fully_qualified_name": {"type": "text", "index": 8, "name": "fully_qualified_name", "comment": null}, "income_account_id": {"type": "integer", "index": 9, "name": "income_account_id", "comment": null}, "inventory_start_date": {"type": "integer", "index": 10, "name": "inventory_start_date", "comment": null}, "level": {"type": "integer", "index": 11, "name": "level", "comment": null}, "name": {"type": "text", "index": 12, "name": "name", "comment": null}, "parent_item_id": {"type": "integer", "index": 13, "name": "parent_item_id", "comment": null}, "purchase_cost": {"type": "integer", "index": 14, "name": "purchase_cost", "comment": null}, "purchase_description": {"type": "integer", "index": 15, "name": "purchase_description", "comment": null}, "purchase_tax_code_id": {"type": "integer", "index": 16, "name": "purchase_tax_code_id", "comment": null}, "purchase_tax_included": {"type": "integer", "index": 17, "name": "purchase_tax_included", "comment": null}, "quantity_on_hand": {"type": "integer", "index": 18, "name": "quantity_on_hand", "comment": null}, "sales_tax_code_id": {"type": "integer", "index": 19, "name": "sales_tax_code_id", "comment": null}, "sales_tax_included": {"type": "integer", "index": 20, "name": "sales_tax_included", "comment": null}, "stock_keeping_unit": {"type": "integer", "index": 21, "name": "stock_keeping_unit", "comment": null}, "sub_item": {"type": "integer", "index": 22, "name": "sub_item", "comment": null}, "sync_token": {"type": "integer", "index": 23, "name": "sync_token", "comment": null}, "taxable": {"type": "boolean", "index": 24, "name": "taxable", "comment": null}, "track_quantity_on_hand": {"type": "boolean", "index": 25, "name": "track_quantity_on_hand", "comment": null}, "type": {"type": "text", "index": 26, "name": "type", "comment": null}, "unit_price": {"type": "integer", "index": 27, "name": "unit_price", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 28, "name": "updated_at", "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.quickbooks_source_integration_tests.item_data"}, "seed.quickbooks_source_integration_tests.journal_entry_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "journal_entry_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "adjustment": {"type": "boolean", "index": 4, "name": "adjustment", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "doc_number": {"type": "text", "index": 7, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 8, "name": "exchange_rate", "comment": null}, "home_total_amount": {"type": "integer", "index": 9, "name": "home_total_amount", "comment": null}, "private_note": {"type": "text", "index": 10, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 11, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 12, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 13, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 14, "name": "total_tax", "comment": null}, "transaction_date": {"type": "date", "index": 15, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 16, "name": "updated_at", "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.quickbooks_source_integration_tests.journal_entry_data"}, "seed.quickbooks_source_integration_tests.journal_entry_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "journal_entry_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "journal_entry_id": {"type": "integer", "index": 2, "name": "journal_entry_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "integer", "index": 4, "name": "account_id", "comment": null}, "amount": {"type": "integer", "index": 5, "name": "amount", "comment": null}, "billable_status": {"type": "integer", "index": 6, "name": "billable_status", "comment": null}, "class_id": {"type": "integer", "index": 7, "name": "class_id", "comment": null}, "customer_id": {"type": "integer", "index": 8, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 11, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 12, "name": "description_tax_code_id", "comment": null}, "employee_id": {"type": "integer", "index": 13, "name": "employee_id", "comment": null}, "posting_type": {"type": "text", "index": 14, "name": "posting_type", "comment": null}, "tax_amount": {"type": "integer", "index": 15, "name": "tax_amount", "comment": null}, "tax_applicable_on": {"type": "integer", "index": 16, "name": "tax_applicable_on", "comment": null}, "tax_code_id": {"type": "integer", "index": 17, "name": "tax_code_id", "comment": null}, "vendor_id": {"type": "integer", "index": 18, "name": "vendor_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.quickbooks_source_integration_tests.journal_entry_line_data"}, "seed.quickbooks_source_integration_tests.payment_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "payment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 5, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 6, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 7, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 8, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 9, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 10, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 11, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 12, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 13, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 14, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 15, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 16, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 17, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 18, "name": "customer_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 19, "name": "deposit_to_account_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 20, "name": "exchange_rate", "comment": null}, "payment_method_id": {"type": "integer", "index": 21, "name": "payment_method_id", "comment": null}, "private_note": {"type": "text", "index": 22, "name": "private_note", "comment": null}, "process_payment": {"type": "boolean", "index": 23, "name": "process_payment", "comment": null}, "receivable_account_id": {"type": "integer", "index": 24, "name": "receivable_account_id", "comment": null}, "reference_number": {"type": "integer", "index": 25, "name": "reference_number", "comment": null}, "sync_token": {"type": "integer", "index": 26, "name": "sync_token", "comment": null}, "total_amount": {"type": "double precision", "index": 27, "name": "total_amount", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 28, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 29, "name": "transaction_source", "comment": null}, "transaction_status": {"type": "integer", "index": 30, "name": "transaction_status", "comment": null}, "unapplied_amount": {"type": "integer", "index": 31, "name": "unapplied_amount", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 32, "name": "updated_at", "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.quickbooks_source_integration_tests.payment_data"}, "seed.quickbooks_source_integration_tests.payment_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "payment_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "payment_id": {"type": "integer", "index": 2, "name": "payment_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "check_id": {"type": "integer", "index": 5, "name": "check_id", "comment": null}, "credit_card_charge_id": {"type": "integer", "index": 6, "name": "credit_card_charge_id", "comment": null}, "credit_card_credit_id": {"type": "integer", "index": 7, "name": "credit_card_credit_id", "comment": null}, "credit_memo_id": {"type": "integer", "index": 8, "name": "credit_memo_id", "comment": null}, "deposit_id": {"type": "integer", "index": 9, "name": "deposit_id", "comment": null}, "expense_id": {"type": "integer", "index": 10, "name": "expense_id", "comment": null}, "invoice_id": {"type": "integer", "index": 11, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 12, "name": "journal_entry_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.quickbooks_source_integration_tests.payment_line_data"}, "seed.quickbooks_source_integration_tests.purchase_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "purchase_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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": "integer", "index": 4, "name": "account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "credit": {"type": "integer", "index": 6, "name": "credit", "comment": null}, "currency_id": {"type": "text", "index": 7, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 8, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 10, "name": "doc_number", "comment": null}, "employee_id": {"type": "integer", "index": 11, "name": "employee_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 12, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 13, "name": "global_tax_calculation", "comment": null}, "payment_method_id": {"type": "integer", "index": 14, "name": "payment_method_id", "comment": null}, "payment_type": {"type": "text", "index": 15, "name": "payment_type", "comment": null}, "print_status": {"type": "integer", "index": 16, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 17, "name": "private_note", "comment": null}, "remit_to_address_id": {"type": "integer", "index": 18, "name": "remit_to_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 19, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 20, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 21, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 22, "name": "total_tax", "comment": null}, "transaction_date": {"type": "integer", "index": 23, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 24, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 25, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 26, "name": "vendor_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.quickbooks_source_integration_tests.purchase_data"}, "seed.quickbooks_source_integration_tests.purchase_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "purchase_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_id": {"type": "integer", "index": 2, "name": "purchase_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "integer", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source_integration_tests.purchase_line_data"}, "seed.quickbooks_source_integration_tests.purchase_order_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "purchase_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "class_id": {"type": "integer", "index": 4, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "custom_customer_type": {"type": "text", "index": 7, "name": "custom_customer_type", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 8, "name": "custom_p_o_number", "comment": null}, "doc_number": {"type": "integer", "index": 9, "name": "doc_number", "comment": null}, "due_date": {"type": "integer", "index": 10, "name": "due_date", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 12, "name": "global_tax_calculation", "comment": null}, "memo": {"type": "text", "index": 13, "name": "memo", "comment": null}, "payable_account_id": {"type": "integer", "index": 14, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 15, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 16, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 17, "name": "shipping_address_id", "comment": null}, "status": {"type": "text", "index": 18, "name": "status", "comment": null}, "sync_token": {"type": "integer", "index": 19, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 20, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "double precision", "index": 21, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 22, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 23, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 24, "name": "updated_at", "comment": null}, "vendor_address_id": {"type": "integer", "index": 25, "name": "vendor_address_id", "comment": null}, "vendor_id": {"type": "integer", "index": 26, "name": "vendor_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.quickbooks_source_integration_tests.purchase_order_data"}, "seed.quickbooks_source_integration_tests.purchase_order_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "purchase_order_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_order_id": {"type": "integer", "index": 2, "name": "purchase_order_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "integer", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "integer", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "double precision", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "text", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "text", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "double precision", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source_integration_tests.purchase_order_line_data"}, "seed.quickbooks_source_integration_tests.purchase_order_linked_txn_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "purchase_order_linked_txn_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_order_id": {"type": "integer", "index": 2, "name": "purchase_order_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bill_id": {"type": "integer", "index": 4, "name": "bill_id", "comment": null}, "purchase_id": {"type": "integer", "index": 5, "name": "purchase_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 6, "name": "vendor_credit_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.quickbooks_source_integration_tests.purchase_order_linked_txn_data"}, "seed.quickbooks_source_integration_tests.refund_receipt_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "refund_receipt_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "integer", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "check_payment_account_number": {"type": "integer", "index": 8, "name": "check_payment_account_number", "comment": null}, "check_payment_bank_name": {"type": "integer", "index": 9, "name": "check_payment_bank_name", "comment": null}, "check_payment_check_number": {"type": "integer", "index": 10, "name": "check_payment_check_number", "comment": null}, "check_payment_name_on_account": {"type": "integer", "index": 11, "name": "check_payment_name_on_account", "comment": null}, "check_payment_status": {"type": "integer", "index": 12, "name": "check_payment_status", "comment": null}, "class_id": {"type": "integer", "index": 13, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 14, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 15, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 16, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 17, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 18, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 19, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 20, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 21, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 22, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 23, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 24, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 25, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 26, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 27, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 28, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 29, "name": "customer_memo", "comment": null}, "department_id": {"type": "integer", "index": 30, "name": "department_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 31, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 32, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 33, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 34, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 35, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 36, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 37, "name": "payment_method_id", "comment": null}, "payment_reference_number": {"type": "integer", "index": 38, "name": "payment_reference_number", "comment": null}, "payment_type": {"type": "integer", "index": 39, "name": "payment_type", "comment": null}, "print_status": {"type": "integer", "index": 40, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 41, "name": "private_note", "comment": null}, "shipping_address_id": {"type": "integer", "index": 42, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 43, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 44, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 45, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 46, "name": "total_tax", "comment": null}, "transaction_date": {"type": "integer", "index": 47, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 48, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 49, "name": "updated_at", "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.quickbooks_source_integration_tests.refund_receipt_data"}, "seed.quickbooks_source_integration_tests.refund_receipt_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "refund_receipt_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "refund_id": {"type": "integer", "index": 2, "name": "refund_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source_integration_tests.refund_receipt_line_data"}, "seed.quickbooks_source_integration_tests.sales_receipt_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "sales_receipt_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "integer", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 8, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 10, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 11, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 12, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 13, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 14, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 15, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 16, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 17, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 18, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 19, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 20, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 21, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 22, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 23, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 24, "name": "customer_memo", "comment": null}, "delivery_time": {"type": "integer", "index": 25, "name": "delivery_time", "comment": null}, "delivery_type": {"type": "integer", "index": 26, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 27, "name": "department_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 28, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 29, "name": "doc_number", "comment": null}, "email_status": {"type": "integer", "index": 30, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 31, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 32, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 33, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 34, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 35, "name": "payment_method_id", "comment": null}, "payment_reference_number": {"type": "integer", "index": 36, "name": "payment_reference_number", "comment": null}, "print_status": {"type": "integer", "index": 37, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 38, "name": "private_note", "comment": null}, "ship_date": {"type": "integer", "index": 39, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 40, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 41, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 42, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 43, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 44, "name": "total_tax", "comment": null}, "tracking_number": {"type": "integer", "index": 45, "name": "tracking_number", "comment": null}, "transaction_date": {"type": "integer", "index": 46, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 47, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 48, "name": "updated_at", "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.quickbooks_source_integration_tests.sales_receipt_data"}, "seed.quickbooks_source_integration_tests.sales_receipt_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "sales_receipt_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "sales_receipt_id": {"type": "integer", "index": 2, "name": "sales_receipt_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source_integration_tests.sales_receipt_line_data"}, "seed.quickbooks_source_integration_tests.transfer_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "transfer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "from_account_id": {"type": "integer", "index": 6, "name": "from_account_id", "comment": null}, "private_note": {"type": "text", "index": 7, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 8, "name": "sync_token", "comment": null}, "to_account_id": {"type": "integer", "index": 9, "name": "to_account_id", "comment": null}, "transaction_date": {"type": "date", "index": 10, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 11, "name": "updated_at", "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.quickbooks_source_integration_tests.transfer_data"}, "seed.quickbooks_source_integration_tests.vendor_credit_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "vendor_credit_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "balance": {"type": "integer", "index": 4, "name": "balance", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 8, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 9, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 10, "name": "global_tax_calculation", "comment": null}, "payable_account_id": {"type": "integer", "index": 11, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 12, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 13, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 14, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 15, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 16, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 17, "name": "vendor_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.quickbooks_source_integration_tests.vendor_credit_data"}, "seed.quickbooks_source_integration_tests.vendor_credit_line_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "vendor_credit_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 2, "name": "vendor_credit_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "integer", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "comment": null}, "private_note": {"type": "integer", "index": 19, "name": "private_note", "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.quickbooks_source_integration_tests.vendor_credit_line_data"}, "seed.quickbooks_source_integration_tests.vendor_data": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests", "name": "vendor_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "integer", "index": 3, "name": "account_number", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "alternate_phone": {"type": "integer", "index": 5, "name": "alternate_phone", "comment": null}, "balance": {"type": "integer", "index": 6, "name": "balance", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "company_name": {"type": "text", "index": 8, "name": "company_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "display_name": {"type": "text", "index": 11, "name": "display_name", "comment": null}, "email": {"type": "text", "index": 12, "name": "email", "comment": null}, "family_name": {"type": "integer", "index": 13, "name": "family_name", "comment": null}, "fax_number": {"type": "integer", "index": 14, "name": "fax_number", "comment": null}, "given_name": {"type": "integer", "index": 15, "name": "given_name", "comment": null}, "middle_name": {"type": "integer", "index": 16, "name": "middle_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "other_contacts": {"type": "integer", "index": 18, "name": "other_contacts", "comment": null}, "primary_phone": {"type": "integer", "index": 19, "name": "primary_phone", "comment": null}, "print_on_check_name": {"type": "text", "index": 20, "name": "print_on_check_name", "comment": null}, "suffix": {"type": "integer", "index": 21, "name": "suffix", "comment": null}, "sync_token": {"type": "integer", "index": 22, "name": "sync_token", "comment": null}, "tax_identifier": {"type": "integer", "index": 23, "name": "tax_identifier", "comment": null}, "term_id": {"type": "integer", "index": 24, "name": "term_id", "comment": null}, "title": {"type": "integer", "index": 25, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 26, "name": "updated_at", "comment": null}, "vendor_1099": {"type": "boolean", "index": 27, "name": "vendor_1099", "comment": null}, "web_url": {"type": "integer", "index": 28, "name": "web_url", "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.quickbooks_source_integration_tests.vendor_data"}, "model.quickbooks_source.stg_quickbooks__account": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "character varying", "index": 1, "name": "account_id", "comment": null}, "account_number": {"type": "character varying", "index": 2, "name": "account_number", "comment": null}, "is_sub_account": {"type": "boolean", "index": 3, "name": "is_sub_account", "comment": null}, "parent_account_id": {"type": "character varying", "index": 4, "name": "parent_account_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "account_type": {"type": "text", "index": 6, "name": "account_type", "comment": null}, "account_sub_type": {"type": "text", "index": 7, "name": "account_sub_type", "comment": null}, "classification": {"type": "text", "index": 8, "name": "classification", "comment": null}, "balance": {"type": "integer", "index": 9, "name": "balance", "comment": null}, "balance_with_sub_accounts": {"type": "integer", "index": 10, "name": "balance_with_sub_accounts", "comment": null}, "is_active": {"type": "boolean", "index": 11, "name": "is_active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 12, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 13, "name": "currency_id", "comment": null}, "description": {"type": "integer", "index": 14, "name": "description", "comment": null}, "fully_qualified_name": {"type": "text", "index": 15, "name": "fully_qualified_name", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 16, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__account"}, "model.quickbooks_source.stg_quickbooks__account_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__account_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "integer", "index": 3, "name": "account_number", "comment": null}, "account_sub_type": {"type": "text", "index": 4, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 5, "name": "account_type", "comment": null}, "active": {"type": "boolean", "index": 6, "name": "active", "comment": null}, "balance": {"type": "integer", "index": 7, "name": "balance", "comment": null}, "balance_with_sub_accounts": {"type": "integer", "index": 8, "name": "balance_with_sub_accounts", "comment": null}, "classification": {"type": "text", "index": 9, "name": "classification", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 11, "name": "currency_id", "comment": null}, "description": {"type": "integer", "index": 12, "name": "description", "comment": null}, "fully_qualified_name": {"type": "text", "index": 13, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "parent_account_id": {"type": "integer", "index": 15, "name": "parent_account_id", "comment": null}, "sub_account": {"type": "boolean", "index": 16, "name": "sub_account", "comment": null}, "sync_token": {"type": "integer", "index": 17, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 18, "name": "tax_code_id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__account_tmp"}, "model.quickbooks_source.stg_quickbooks__address": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__address", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"address_id": {"type": "character varying", "index": 1, "name": "address_id", "comment": null}, "city": {"type": "text", "index": 2, "name": "city", "comment": null}, "country": {"type": "text", "index": 3, "name": "country", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "postal_code": {"type": "integer", "index": 6, "name": "postal_code", "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.quickbooks_source.stg_quickbooks__address"}, "model.quickbooks_source.stg_quickbooks__address_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__address_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "city": {"type": "text", "index": 3, "name": "city", "comment": null}, "country": {"type": "text", "index": 4, "name": "country", "comment": null}, "country_sub_division_code": {"type": "text", "index": 5, "name": "country_sub_division_code", "comment": null}, "latitude": {"type": "integer", "index": 6, "name": "latitude", "comment": null}, "line_1": {"type": "text", "index": 7, "name": "line_1", "comment": null}, "line_2": {"type": "text", "index": 8, "name": "line_2", "comment": null}, "line_3": {"type": "integer", "index": 9, "name": "line_3", "comment": null}, "line_4": {"type": "integer", "index": 10, "name": "line_4", "comment": null}, "line_5": {"type": "integer", "index": 11, "name": "line_5", "comment": null}, "longitude": {"type": "integer", "index": 12, "name": "longitude", "comment": null}, "postal_code": {"type": "integer", "index": 13, "name": "postal_code", "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.quickbooks_source.stg_quickbooks__address_tmp"}, "model.quickbooks_source.stg_quickbooks__bill": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "character varying", "index": 1, "name": "bill_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "currency_id": {"type": "text", "index": 4, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 5, "name": "department_id", "comment": null}, "due_date_at": {"type": "date", "index": 6, "name": "due_date_at", "comment": null}, "transaction_date": {"type": "date", "index": 7, "name": "transaction_date", "comment": null}, "exchange_rate": {"type": "integer", "index": 8, "name": "exchange_rate", "comment": null}, "payable_account_id": {"type": "character varying", "index": 9, "name": "payable_account_id", "comment": null}, "total_amount": {"type": "integer", "index": 10, "name": "total_amount", "comment": null}, "vendor_id": {"type": "character varying", "index": 11, "name": "vendor_id", "comment": null}, "private_note": {"type": "text", "index": 12, "name": "private_note", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 13, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__bill"}, "model.quickbooks_source.stg_quickbooks__bill_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "character varying", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "account_expense_account_id": {"type": "character varying", "index": 3, "name": "account_expense_account_id", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 4, "name": "account_expense_class_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 6, "name": "account_expense_tax_code_id", "comment": null}, "account_expense_customer_id": {"type": "character varying", "index": 7, "name": "account_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "character varying", "index": 8, "name": "item_expense_item_id", "comment": null}, "item_expense_customer_id": {"type": "character varying", "index": 9, "name": "item_expense_customer_id", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 10, "name": "item_expense_billable_status", "comment": null}, "amount": {"type": "double precision", "index": 11, "name": "amount", "comment": null}, "description": {"type": "text", "index": 12, "name": "description", "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.quickbooks_source.stg_quickbooks__bill_line"}, "model.quickbooks_source.stg_quickbooks__bill_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "integer", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "double precision", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source.stg_quickbooks__bill_line_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_linked_txn": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_linked_txn", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "character varying", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "bill_payment_id": {"type": "character varying", "index": 3, "name": "bill_payment_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.quickbooks_source.stg_quickbooks__bill_linked_txn"}, "model.quickbooks_source.stg_quickbooks__bill_linked_txn_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_linked_txn_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "integer", "index": 1, "name": "bill_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bill_payment_id": {"type": "integer", "index": 4, "name": "bill_payment_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.quickbooks_source.stg_quickbooks__bill_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_payment": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_payment_id": {"type": "character varying", "index": 1, "name": "bill_payment_id", "comment": null}, "check_bank_account_id": {"type": "character varying", "index": 2, "name": "check_bank_account_id", "comment": null}, "check_print_status": {"type": "text", "index": 3, "name": "check_print_status", "comment": null}, "credit_card_account_id": {"type": "character varying", "index": 4, "name": "credit_card_account_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 5, "name": "exchange_rate", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "pay_type": {"type": "text", "index": 8, "name": "pay_type", "comment": null}, "total_amount": {"type": "integer", "index": 9, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 10, "name": "transaction_date", "comment": null}, "vendor_id": {"type": "character varying", "index": 11, "name": "vendor_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 12, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__bill_payment"}, "model.quickbooks_source.stg_quickbooks__bill_payment_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_payment_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_payment_id": {"type": "character varying", "index": 1, "name": "bill_payment_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "integer", "index": 3, "name": "amount", "comment": null}, "bill_id": {"type": "character varying", "index": 4, "name": "bill_id", "comment": null}, "deposit_id": {"type": "integer", "index": 5, "name": "deposit_id", "comment": null}, "expense_id": {"type": "integer", "index": 6, "name": "expense_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 7, "name": "journal_entry_id", "comment": null}, "linked_bill_payment_id": {"type": "integer", "index": 8, "name": "linked_bill_payment_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 9, "name": "vendor_credit_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.quickbooks_source.stg_quickbooks__bill_payment_line"}, "model.quickbooks_source.stg_quickbooks__bill_payment_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_payment_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_payment_id": {"type": "integer", "index": 1, "name": "bill_payment_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bill_id": {"type": "double precision", "index": 5, "name": "bill_id", "comment": null}, "check_id": {"type": "integer", "index": 6, "name": "check_id", "comment": null}, "credit_card_charge_id": {"type": "integer", "index": 7, "name": "credit_card_charge_id", "comment": null}, "credit_card_credit_id": {"type": "integer", "index": 8, "name": "credit_card_credit_id", "comment": null}, "deposit_id": {"type": "integer", "index": 9, "name": "deposit_id", "comment": null}, "expense_id": {"type": "integer", "index": 10, "name": "expense_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 11, "name": "journal_entry_id", "comment": null}, "linked_bill_payment_id": {"type": "integer", "index": 12, "name": "linked_bill_payment_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 13, "name": "vendor_credit_id", "comment": null}, "bill_payment_credit_card_id": {"type": "integer", "index": 14, "name": "bill_payment_credit_card_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.quickbooks_source.stg_quickbooks__bill_payment_line_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_payment_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "check_bank_account_id": {"type": "integer", "index": 4, "name": "check_bank_account_id", "comment": null}, "check_print_status": {"type": "text", "index": 5, "name": "check_print_status", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "credit_card_account_id": {"type": "integer", "index": 7, "name": "credit_card_account_id", "comment": null}, "currency_id": {"type": "text", "index": 8, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 10, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "pay_type": {"type": "text", "index": 12, "name": "pay_type", "comment": null}, "payable_account_id": {"type": "integer", "index": 13, "name": "payable_account_id", "comment": null}, "private_note": {"type": "integer", "index": 14, "name": "private_note", "comment": null}, "process_bill_payment": {"type": "integer", "index": 15, "name": "process_bill_payment", "comment": null}, "sync_token": {"type": "integer", "index": 16, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 17, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 18, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 20, "name": "vendor_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.quickbooks_source.stg_quickbooks__bill_payment_tmp"}, "model.quickbooks_source.stg_quickbooks__bill_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bill_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "balance": {"type": "integer", "index": 4, "name": "balance", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "doc_number": {"type": "date", "index": 8, "name": "doc_number", "comment": null}, "due_date": {"type": "date", "index": 9, "name": "due_date", "comment": null}, "exchange_rate": {"type": "integer", "index": 10, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 11, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 12, "name": "home_balance", "comment": null}, "payable_account_id": {"type": "integer", "index": 13, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 14, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 15, "name": "sales_term_id", "comment": null}, "sync_token": {"type": "integer", "index": 16, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 17, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 18, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 20, "name": "vendor_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.quickbooks_source.stg_quickbooks__bill_tmp"}, "model.quickbooks_source.stg_quickbooks__bundle": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bundle", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bundle_id": {"type": "character varying", "index": 1, "name": "bundle_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "is_active": {"type": "boolean", "index": 3, "name": "is_active", "comment": null}, "fully_qualified_name": {"type": "text", "index": 4, "name": "fully_qualified_name", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__bundle"}, "model.quickbooks_source.stg_quickbooks__bundle_item": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bundle_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bundle_id": {"type": "character varying", "index": 1, "name": "bundle_id", "comment": null}, "item_id": {"type": "character varying", "index": 2, "name": "item_id", "comment": null}, "item_quantity": {"type": "integer", "index": 3, "name": "item_quantity", "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.quickbooks_source.stg_quickbooks__bundle_item"}, "model.quickbooks_source.stg_quickbooks__bundle_item_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bundle_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bundle_id": {"type": "integer", "index": 1, "name": "bundle_id", "comment": null}, "item_id": {"type": "integer", "index": 2, "name": "item_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "item_quantity": {"type": "integer", "index": 4, "name": "item_quantity", "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.quickbooks_source.stg_quickbooks__bundle_item_tmp"}, "model.quickbooks_source.stg_quickbooks__bundle_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__bundle_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 5, "name": "description", "comment": null}, "fully_qualified_name": {"type": "text", "index": 6, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "print_grouped_items": {"type": "boolean", "index": 8, "name": "print_grouped_items", "comment": null}, "purchase_cost": {"type": "integer", "index": 9, "name": "purchase_cost", "comment": null}, "sync_token": {"type": "integer", "index": 10, "name": "sync_token", "comment": null}, "taxable": {"type": "boolean", "index": 11, "name": "taxable", "comment": null}, "unit_price": {"type": "integer", "index": 12, "name": "unit_price", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 13, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__bundle_tmp"}, "model.quickbooks_source.stg_quickbooks__credit_card_payment_txn": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_card_payment_txn", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_card_payment_id": {"type": "character varying", "index": 1, "name": "credit_card_payment_id", "comment": null}, "amount": {"type": "double precision", "index": 2, "name": "amount", "comment": null}, "bank_account_id": {"type": "integer", "index": 3, "name": "bank_account_id", "comment": null}, "credit_card_account_id": {"type": "integer", "index": 4, "name": "credit_card_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "currency_id": {"type": "text", "index": 7, "name": "currency_id", "comment": null}, "transaction_date": {"type": "date", "index": 8, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 9, "name": "_fivetran_deleted", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 10, "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.quickbooks_source.stg_quickbooks__credit_card_payment_txn"}, "model.quickbooks_source.stg_quickbooks__credit_card_payment_txn_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_card_payment_txn_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "amount": {"type": "double precision", "index": 2, "name": "amount", "comment": null}, "bank_account_id": {"type": "integer", "index": 3, "name": "bank_account_id", "comment": null}, "credit_card_account_id": {"type": "integer", "index": 4, "name": "credit_card_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "currency_id": {"type": "text", "index": 7, "name": "currency_id", "comment": null}, "transaction_date": {"type": "date", "index": 8, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 9, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__credit_card_payment_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__credit_memo": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_memo", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_memo_id": {"type": "character varying", "index": 1, "name": "credit_memo_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "total_amount": {"type": "integer", "index": 4, "name": "total_amount", "comment": null}, "currency_id": {"type": "text", "index": 5, "name": "currency_id", "comment": null}, "class_id": {"type": "integer", "index": 6, "name": "class_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "customer_id": {"type": "character varying", "index": 8, "name": "customer_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 9, "name": "exchange_rate", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 10, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__credit_memo"}, "model.quickbooks_source.stg_quickbooks__credit_memo_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_memo_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_memo_id": {"type": "character varying", "index": 1, "name": "credit_memo_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "integer", "index": 3, "name": "amount", "comment": null}, "sales_item_account_id": {"type": "character varying", "index": 4, "name": "sales_item_account_id", "comment": null}, "sales_item_item_id": {"type": "character varying", "index": 5, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 6, "name": "sales_item_quantity", "comment": null}, "sales_item_unit_price": {"type": "double precision", "index": 7, "name": "sales_item_unit_price", "comment": null}, "discount_account_id": {"type": "character varying", "index": 8, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 9, "name": "discount_class_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "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.quickbooks_source.stg_quickbooks__credit_memo_line"}, "model.quickbooks_source.stg_quickbooks__credit_memo_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_memo_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"credit_memo_id": {"type": "integer", "index": 1, "name": "credit_memo_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "double precision", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source.stg_quickbooks__credit_memo_line_tmp"}, "model.quickbooks_source.stg_quickbooks__credit_memo_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__credit_memo_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "boolean", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 8, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 11, "name": "custom_p_o_number", "comment": null}, "customer_id": {"type": "integer", "index": 12, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 13, "name": "customer_memo", "comment": null}, "department_id": {"type": "integer", "index": 14, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 15, "name": "doc_number", "comment": null}, "email_status": {"type": "text", "index": 16, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 17, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 18, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 19, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 20, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 21, "name": "payment_method_id", "comment": null}, "print_status": {"type": "text", "index": 22, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 23, "name": "private_note", "comment": null}, "remaining_credit": {"type": "integer", "index": 24, "name": "remaining_credit", "comment": null}, "sales_term_id": {"type": "integer", "index": 25, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 26, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 27, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 28, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 29, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 30, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 31, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__credit_memo_tmp"}, "model.quickbooks_source.stg_quickbooks__customer": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__customer", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "character varying", "index": 1, "name": "customer_id", "comment": null}, "is_active": {"type": "boolean", "index": 2, "name": "is_active", "comment": null}, "balance": {"type": "integer", "index": 3, "name": "balance", "comment": null}, "balance_with_jobs": {"type": "integer", "index": 4, "name": "balance_with_jobs", "comment": null}, "bill_with_parent": {"type": "boolean", "index": 5, "name": "bill_with_parent", "comment": null}, "company_name": {"type": "text", "index": 6, "name": "company_name", "comment": null}, "fully_qualified_name": {"type": "text", "index": 7, "name": "fully_qualified_name", "comment": null}, "currency_id": {"type": "text", "index": 8, "name": "currency_id", "comment": null}, "display_name": {"type": "text", "index": 9, "name": "display_name", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "comment": null}, "taxable": {"type": "boolean", "index": 11, "name": "taxable", "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.quickbooks_source.stg_quickbooks__customer"}, "model.quickbooks_source.stg_quickbooks__customer_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__customer_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "alternate_phone_number": {"type": "integer", "index": 4, "name": "alternate_phone_number", "comment": null}, "ar_account_id": {"type": "integer", "index": 5, "name": "ar_account_id", "comment": null}, "balance": {"type": "integer", "index": 6, "name": "balance", "comment": null}, "balance_with_jobs": {"type": "integer", "index": 7, "name": "balance_with_jobs", "comment": null}, "bill_address_id": {"type": "integer", "index": 8, "name": "bill_address_id", "comment": null}, "bill_with_parent": {"type": "boolean", "index": 9, "name": "bill_with_parent", "comment": null}, "company_name": {"type": "text", "index": 10, "name": "company_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 11, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 12, "name": "currency_id", "comment": null}, "default_tax_code_id": {"type": "integer", "index": 13, "name": "default_tax_code_id", "comment": null}, "display_name": {"type": "text", "index": 14, "name": "display_name", "comment": null}, "email": {"type": "text", "index": 15, "name": "email", "comment": null}, "family_name": {"type": "text", "index": 16, "name": "family_name", "comment": null}, "fax_number": {"type": "integer", "index": 17, "name": "fax_number", "comment": null}, "fully_qualified_name": {"type": "text", "index": 18, "name": "fully_qualified_name", "comment": null}, "given_name": {"type": "text", "index": 19, "name": "given_name", "comment": null}, "job": {"type": "boolean", "index": 20, "name": "job", "comment": null}, "level": {"type": "integer", "index": 21, "name": "level", "comment": null}, "middle_name": {"type": "integer", "index": 22, "name": "middle_name", "comment": null}, "mobile_number": {"type": "integer", "index": 23, "name": "mobile_number", "comment": null}, "notes": {"type": "integer", "index": 24, "name": "notes", "comment": null}, "open_balance_date": {"type": "integer", "index": 25, "name": "open_balance_date", "comment": null}, "parent_customer_id": {"type": "integer", "index": 26, "name": "parent_customer_id", "comment": null}, "payment_method_id": {"type": "integer", "index": 27, "name": "payment_method_id", "comment": null}, "phone_number": {"type": "integer", "index": 28, "name": "phone_number", "comment": null}, "preferred_delivery_method": {"type": "text", "index": 29, "name": "preferred_delivery_method", "comment": null}, "print_on_check_name": {"type": "text", "index": 30, "name": "print_on_check_name", "comment": null}, "resale_number": {"type": "integer", "index": 31, "name": "resale_number", "comment": null}, "sales_term_id": {"type": "integer", "index": 32, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 33, "name": "shipping_address_id", "comment": null}, "suffix": {"type": "integer", "index": 34, "name": "suffix", "comment": null}, "sync_token": {"type": "integer", "index": 35, "name": "sync_token", "comment": null}, "tax_exemption_reason_id": {"type": "integer", "index": 36, "name": "tax_exemption_reason_id", "comment": null}, "taxable": {"type": "boolean", "index": 37, "name": "taxable", "comment": null}, "title": {"type": "integer", "index": 38, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 39, "name": "updated_at", "comment": null}, "website": {"type": "integer", "index": 40, "name": "website", "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.quickbooks_source.stg_quickbooks__customer_tmp"}, "model.quickbooks_source.stg_quickbooks__department": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__department", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"department_id": {"type": "integer", "index": 1, "name": "department_id", "comment": null}, "is_active": {"type": "boolean", "index": 2, "name": "is_active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "fully_qualified_name": {"type": "text", "index": 5, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "is_sub_department": {"type": "boolean", "index": 7, "name": "is_sub_department", "comment": null}, "parent_department_id": {"type": "integer", "index": 8, "name": "parent_department_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.quickbooks_source.stg_quickbooks__department"}, "model.quickbooks_source.stg_quickbooks__department_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__department_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "fully_qualified_name": {"type": "text", "index": 5, "name": "fully_qualified_name", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "parent_department_id": {"type": "integer", "index": 7, "name": "parent_department_id", "comment": null}, "sub_department": {"type": "boolean", "index": 8, "name": "sub_department", "comment": null}, "sync_token": {"type": "integer", "index": 9, "name": "sync_token", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__department_tmp"}, "model.quickbooks_source.stg_quickbooks__deposit": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__deposit", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"deposit_id": {"type": "character varying", "index": 1, "name": "deposit_id", "comment": null}, "account_id": {"type": "character varying", "index": 2, "name": "account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 4, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 5, "name": "department_id", "comment": null}, "total_amount": {"type": "integer", "index": 6, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 7, "name": "transaction_date", "comment": null}, "transaction_status": {"type": "integer", "index": 8, "name": "transaction_status", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 9, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__deposit"}, "model.quickbooks_source.stg_quickbooks__deposit_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__deposit_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"deposit_id": {"type": "character varying", "index": 1, "name": "deposit_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "integer", "index": 3, "name": "amount", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "deposit_account_id": {"type": "character varying", "index": 5, "name": "deposit_account_id", "comment": null}, "deposit_class_id": {"type": "integer", "index": 6, "name": "deposit_class_id", "comment": null}, "deposit_customer_id": {"type": "character varying", "index": 7, "name": "deposit_customer_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.quickbooks_source.stg_quickbooks__deposit_line"}, "model.quickbooks_source.stg_quickbooks__deposit_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__deposit_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"deposit_id": {"type": "integer", "index": 1, "name": "deposit_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "deposit_account_id": {"type": "integer", "index": 5, "name": "deposit_account_id", "comment": null}, "deposit_check_number": {"type": "integer", "index": 6, "name": "deposit_check_number", "comment": null}, "deposit_class_id": {"type": "integer", "index": 7, "name": "deposit_class_id", "comment": null}, "deposit_customer_id": {"type": "integer", "index": 8, "name": "deposit_customer_id", "comment": null}, "deposit_payment_method_id": {"type": "integer", "index": 9, "name": "deposit_payment_method_id", "comment": null}, "deposit_tax_applicable_on": {"type": "integer", "index": 10, "name": "deposit_tax_applicable_on", "comment": null}, "deposit_tax_code_id": {"type": "integer", "index": 11, "name": "deposit_tax_code_id", "comment": null}, "deposit_transaction_type": {"type": "integer", "index": 12, "name": "deposit_transaction_type", "comment": null}, "description": {"type": "text", "index": 13, "name": "description", "comment": null}, "detail_type": {"type": "text", "index": 14, "name": "detail_type", "comment": null}, "expense_id": {"type": "integer", "index": 15, "name": "expense_id", "comment": null}, "invoice_id": {"type": "integer", "index": 16, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 17, "name": "journal_entry_id", "comment": null}, "payment_id": {"type": "integer", "index": 18, "name": "payment_id", "comment": null}, "purchase_id": {"type": "integer", "index": 19, "name": "purchase_id", "comment": null}, "refund_receipt_id": {"type": "integer", "index": 20, "name": "refund_receipt_id", "comment": null}, "sales_receipt_id": {"type": "integer", "index": 21, "name": "sales_receipt_id", "comment": null}, "transfer_id": {"type": "integer", "index": 22, "name": "transfer_id", "comment": null}, "bill_id": {"type": "integer", "index": 23, "name": "bill_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 24, "name": "vendor_credit_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.quickbooks_source.stg_quickbooks__deposit_line_tmp"}, "model.quickbooks_source.stg_quickbooks__deposit_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__deposit_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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": "integer", "index": 4, "name": "account_id", "comment": null}, "cash_back_account_id": {"type": "integer", "index": 5, "name": "cash_back_account_id", "comment": null}, "cash_back_amount": {"type": "integer", "index": 6, "name": "cash_back_amount", "comment": null}, "cash_back_memo": {"type": "integer", "index": 7, "name": "cash_back_memo", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 9, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 10, "name": "department_id", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 11, "name": "global_tax_calculation", "comment": null}, "home_total_amount": {"type": "integer", "index": 12, "name": "home_total_amount", "comment": null}, "private_note": {"type": "text", "index": 13, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 14, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 15, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 16, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 17, "name": "transaction_source", "comment": null}, "transaction_status": {"type": "integer", "index": 18, "name": "transaction_status", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__deposit_tmp"}, "model.quickbooks_source.stg_quickbooks__estimate": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__estimate", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"estimate_id": {"type": "character varying", "index": 1, "name": "estimate_id", "comment": null}, "class_id": {"type": "integer", "index": 2, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 4, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 5, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 6, "name": "department_id", "comment": null}, "due_date": {"type": "integer", "index": 7, "name": "due_date", "comment": null}, "total_amount": {"type": "double precision", "index": 8, "name": "total_amount", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 9, "name": "transaction_date", "comment": null}, "transaction_status": {"type": "text", "index": 10, "name": "transaction_status", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__estimate"}, "model.quickbooks_source.stg_quickbooks__estimate_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__estimate_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"estimate_id": {"type": "character varying", "index": 1, "name": "estimate_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "description": {"type": "text", "index": 3, "name": "description", "comment": null}, "discount_account_id": {"type": "integer", "index": 4, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 5, "name": "discount_class_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 6, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 7, "name": "sales_item_class_id", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 8, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 9, "name": "sales_item_quantity", "comment": null}, "item_id": {"type": "integer", "index": 10, "name": "item_id", "comment": null}, "quantity": {"type": "integer", "index": 11, "name": "quantity", "comment": null}, "account_id": {"type": "integer", "index": 12, "name": "account_id", "comment": null}, "amount": {"type": "integer", "index": 13, "name": "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.quickbooks_source.stg_quickbooks__estimate_line"}, "model.quickbooks_source.stg_quickbooks__estimate_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__estimate_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"estimate_id": {"type": "integer", "index": 1, "name": "estimate_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_id", "comment": null}, "item_id": {"type": "integer", "index": 25, "name": "item_id", "comment": null}, "quantity": {"type": "integer", "index": 26, "name": "quantity", "comment": null}, "tax_code_id": {"type": "integer", "index": 27, "name": "tax_code_id", "comment": null}, "account_id": {"type": "integer", "index": 28, "name": "account_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.quickbooks_source.stg_quickbooks__estimate_line_tmp"}, "model.quickbooks_source.stg_quickbooks__estimate_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__estimate_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "accepted_by": {"type": "integer", "index": 4, "name": "accepted_by", "comment": null}, "accepted_date": {"type": "integer", "index": 5, "name": "accepted_date", "comment": null}, "apply_tax_after_discount": {"type": "boolean", "index": 6, "name": "apply_tax_after_discount", "comment": null}, "bill_email": {"type": "text", "index": 7, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 8, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 9, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 11, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 12, "name": "custom_p_o_number", "comment": null}, "custom_sales_rep": {"type": "integer", "index": 13, "name": "custom_sales_rep", "comment": null}, "customer_id": {"type": "integer", "index": 14, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 15, "name": "customer_memo", "comment": null}, "delivery_type": {"type": "integer", "index": 16, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 17, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 18, "name": "doc_number", "comment": null}, "due_date": {"type": "integer", "index": 19, "name": "due_date", "comment": null}, "email_status": {"type": "text", "index": 20, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 21, "name": "exchange_rate", "comment": null}, "expiration_date": {"type": "integer", "index": 22, "name": "expiration_date", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 23, "name": "global_tax_calculation", "comment": null}, "home_total_amount": {"type": "integer", "index": 24, "name": "home_total_amount", "comment": null}, "print_status": {"type": "text", "index": 25, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 26, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 27, "name": "sales_term_id", "comment": null}, "ship_date": {"type": "integer", "index": 28, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 29, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 30, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 31, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "double precision", "index": 32, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 33, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 34, "name": "transaction_date", "comment": null}, "transaction_status": {"type": "text", "index": 35, "name": "transaction_status", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 36, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__estimate_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "character varying", "index": 1, "name": "invoice_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "total_amount": {"type": "integer", "index": 4, "name": "total_amount", "comment": null}, "currency_id": {"type": "text", "index": 5, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 6, "name": "department_id", "comment": null}, "deposit_to_account_id": {"type": "character varying", "index": 7, "name": "deposit_to_account_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 8, "name": "exchange_rate", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 9, "name": "transaction_date", "comment": null}, "customer_id": {"type": "character varying", "index": 10, "name": "customer_id", "comment": null}, "billing_address_id": {"type": "character varying", "index": 11, "name": "billing_address_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 12, "name": "shipping_address_id", "comment": null}, "delivery_type": {"type": "text", "index": 13, "name": "delivery_type", "comment": null}, "due_date": {"type": "timestamp without time zone", "index": 14, "name": "due_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 15, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__invoice"}, "model.quickbooks_source.stg_quickbooks__invoice_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "character varying", "index": 1, "name": "invoice_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "sales_item_account_id": {"type": "character varying", "index": 4, "name": "sales_item_account_id", "comment": null}, "sales_item_item_id": {"type": "character varying", "index": 5, "name": "sales_item_item_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 6, "name": "sales_item_class_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 7, "name": "sales_item_quantity", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 8, "name": "sales_item_unit_price", "comment": null}, "discount_account_id": {"type": "integer", "index": 9, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 10, "name": "discount_class_id", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "quantity": {"type": "integer", "index": 12, "name": "quantity", "comment": null}, "bundle_quantity": {"type": "double precision", "index": 13, "name": "bundle_quantity", "comment": null}, "bundle_id": {"type": "character varying", "index": 14, "name": "bundle_id", "comment": null}, "account_id": {"type": "character varying", "index": 15, "name": "account_id", "comment": null}, "item_id": {"type": "character varying", "index": 16, "name": "item_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.quickbooks_source.stg_quickbooks__invoice_line"}, "model.quickbooks_source.stg_quickbooks__invoice_line_bundle": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_line_bundle", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "character varying", "index": 1, "name": "invoice_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "class_id": {"type": "integer", "index": 3, "name": "class_id", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "sales_item_item_id": {"type": "character varying", "index": 6, "name": "sales_item_item_id", "comment": null}, "item_id": {"type": "character varying", "index": 7, "name": "item_id", "comment": null}, "quantity": {"type": "double precision", "index": 8, "name": "quantity", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 9, "name": "sales_item_quantity", "comment": null}, "account_id": {"type": "character varying", "index": 10, "name": "account_id", "comment": null}, "unit_price": {"type": "integer", "index": 11, "name": "unit_price", "comment": null}, "invoice_line_index": {"type": "integer", "index": 12, "name": "invoice_line_index", "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.quickbooks_source.stg_quickbooks__invoice_line_bundle"}, "model.quickbooks_source.stg_quickbooks__invoice_line_bundle_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_line_bundle_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "integer", "index": 4, "name": "account_id", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "class_id": {"type": "integer", "index": 6, "name": "class_id", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "discount_amount": {"type": "integer", "index": 8, "name": "discount_amount", "comment": null}, "discount_rate": {"type": "integer", "index": 9, "name": "discount_rate", "comment": null}, "invoice_line_index": {"type": "integer", "index": 10, "name": "invoice_line_index", "comment": null}, "item_id": {"type": "integer", "index": 11, "name": "item_id", "comment": null}, "line_num": {"type": "integer", "index": 12, "name": "line_num", "comment": null}, "quantity": {"type": "double precision", "index": 13, "name": "quantity", "comment": null}, "service_date": {"type": "integer", "index": 14, "name": "service_date", "comment": null}, "tax_code_id": {"type": "text", "index": 15, "name": "tax_code_id", "comment": null}, "unit_price": {"type": "integer", "index": 16, "name": "unit_price", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 17, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 18, "name": "sales_item_quantity", "comment": null}, "sales_item_tax_code_id": {"type": "integer", "index": 19, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 20, "name": "sales_item_account_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.quickbooks_source.stg_quickbooks__invoice_line_bundle_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "double precision", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "double precision", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_id", "comment": null}, "item_id": {"type": "integer", "index": 25, "name": "item_id", "comment": null}, "quantity": {"type": "integer", "index": 26, "name": "quantity", "comment": null}, "tax_code_id": {"type": "integer", "index": 27, "name": "tax_code_id", "comment": null}, "account_id": {"type": "integer", "index": 28, "name": "account_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.quickbooks_source.stg_quickbooks__invoice_line_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_linked_txn": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_linked_txn", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "character varying", "index": 1, "name": "invoice_id", "comment": null}, "payment_id": {"type": "character varying", "index": 2, "name": "payment_id", "comment": null}, "estimate_id": {"type": "character varying", "index": 3, "name": "estimate_id", "comment": null}, "index": {"type": "integer", "index": 4, "name": "index", "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.quickbooks_source.stg_quickbooks__invoice_linked_txn"}, "model.quickbooks_source.stg_quickbooks__invoice_linked_txn_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_linked_txn_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "invoice_id": {"type": "integer", "index": 2, "name": "invoice_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "charge_credit_id": {"type": "integer", "index": 4, "name": "charge_credit_id", "comment": null}, "estimate_id": {"type": "integer", "index": 5, "name": "estimate_id", "comment": null}, "payment_id": {"type": "integer", "index": 6, "name": "payment_id", "comment": null}, "reimburse_charge_id": {"type": "integer", "index": 7, "name": "reimburse_charge_id", "comment": null}, "statement_charge_id": {"type": "integer", "index": 8, "name": "statement_charge_id", "comment": null}, "time_activity_id": {"type": "integer", "index": 9, "name": "time_activity_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.quickbooks_source.stg_quickbooks__invoice_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__invoice_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__invoice_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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_ipnpayment": {"type": "boolean", "index": 4, "name": "allow_ipnpayment", "comment": null}, "allow_online_achpayment": {"type": "boolean", "index": 5, "name": "allow_online_achpayment", "comment": null}, "allow_online_credit_card_payment": {"type": "boolean", "index": 6, "name": "allow_online_credit_card_payment", "comment": null}, "allow_online_payment": {"type": "boolean", "index": 7, "name": "allow_online_payment", "comment": null}, "apply_tax_after_discount": {"type": "boolean", "index": 8, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 9, "name": "balance", "comment": null}, "billing_address_id": {"type": "integer", "index": 10, "name": "billing_address_id", "comment": null}, "billing_bcc_email": {"type": "text", "index": 11, "name": "billing_bcc_email", "comment": null}, "billing_cc_email": {"type": "integer", "index": 12, "name": "billing_cc_email", "comment": null}, "billing_email": {"type": "text", "index": 13, "name": "billing_email", "comment": null}, "class_id": {"type": "integer", "index": 14, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 15, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 16, "name": "currency_id", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 17, "name": "custom_p_o_number", "comment": null}, "custom_sales_rep": {"type": "integer", "index": 18, "name": "custom_sales_rep", "comment": null}, "customer_id": {"type": "integer", "index": 19, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 20, "name": "customer_memo", "comment": null}, "delivery_time": {"type": "timestamp without time zone", "index": 21, "name": "delivery_time", "comment": null}, "delivery_type": {"type": "text", "index": 22, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 23, "name": "department_id", "comment": null}, "deposit": {"type": "integer", "index": 24, "name": "deposit", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 25, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 26, "name": "doc_number", "comment": null}, "due_date": {"type": "timestamp without time zone", "index": 27, "name": "due_date", "comment": null}, "email_status": {"type": "text", "index": 28, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 29, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 30, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 31, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 32, "name": "home_total_amount", "comment": null}, "print_status": {"type": "text", "index": 33, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 34, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 35, "name": "sales_term_id", "comment": null}, "ship_date": {"type": "integer", "index": 36, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 37, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 38, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 39, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 40, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 41, "name": "total_tax", "comment": null}, "tracking_number": {"type": "integer", "index": 42, "name": "tracking_number", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 43, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 44, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 45, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__invoice_tmp"}, "model.quickbooks_source.stg_quickbooks__item": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"item_id": {"type": "character varying", "index": 1, "name": "item_id", "comment": null}, "is_active": {"type": "boolean", "index": 2, "name": "is_active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "income_account_id": {"type": "character varying", "index": 4, "name": "income_account_id", "comment": null}, "asset_account_id": {"type": "character varying", "index": 5, "name": "asset_account_id", "comment": null}, "expense_account_id": {"type": "character varying", "index": 6, "name": "expense_account_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "purchase_cost": {"type": "integer", "index": 8, "name": "purchase_cost", "comment": null}, "taxable": {"type": "boolean", "index": 9, "name": "taxable", "comment": null}, "type": {"type": "text", "index": 10, "name": "type", "comment": null}, "unit_price": {"type": "integer", "index": 11, "name": "unit_price", "comment": null}, "inventory_start_date": {"type": "integer", "index": 12, "name": "inventory_start_date", "comment": null}, "parent_item_id": {"type": "character varying", "index": 13, "name": "parent_item_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.quickbooks_source.stg_quickbooks__item"}, "model.quickbooks_source.stg_quickbooks__item_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "asset_account_id": {"type": "integer", "index": 4, "name": "asset_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 6, "name": "description", "comment": null}, "expense_account_id": {"type": "integer", "index": 7, "name": "expense_account_id", "comment": null}, "fully_qualified_name": {"type": "text", "index": 8, "name": "fully_qualified_name", "comment": null}, "income_account_id": {"type": "integer", "index": 9, "name": "income_account_id", "comment": null}, "inventory_start_date": {"type": "integer", "index": 10, "name": "inventory_start_date", "comment": null}, "level": {"type": "integer", "index": 11, "name": "level", "comment": null}, "name": {"type": "text", "index": 12, "name": "name", "comment": null}, "parent_item_id": {"type": "integer", "index": 13, "name": "parent_item_id", "comment": null}, "purchase_cost": {"type": "integer", "index": 14, "name": "purchase_cost", "comment": null}, "purchase_description": {"type": "integer", "index": 15, "name": "purchase_description", "comment": null}, "purchase_tax_code_id": {"type": "integer", "index": 16, "name": "purchase_tax_code_id", "comment": null}, "purchase_tax_included": {"type": "integer", "index": 17, "name": "purchase_tax_included", "comment": null}, "quantity_on_hand": {"type": "integer", "index": 18, "name": "quantity_on_hand", "comment": null}, "sales_tax_code_id": {"type": "integer", "index": 19, "name": "sales_tax_code_id", "comment": null}, "sales_tax_included": {"type": "integer", "index": 20, "name": "sales_tax_included", "comment": null}, "stock_keeping_unit": {"type": "integer", "index": 21, "name": "stock_keeping_unit", "comment": null}, "sub_item": {"type": "integer", "index": 22, "name": "sub_item", "comment": null}, "sync_token": {"type": "integer", "index": 23, "name": "sync_token", "comment": null}, "taxable": {"type": "boolean", "index": 24, "name": "taxable", "comment": null}, "track_quantity_on_hand": {"type": "boolean", "index": 25, "name": "track_quantity_on_hand", "comment": null}, "type": {"type": "text", "index": 26, "name": "type", "comment": null}, "unit_price": {"type": "integer", "index": 27, "name": "unit_price", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 28, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__item_tmp"}, "model.quickbooks_source.stg_quickbooks__journal_entry": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__journal_entry", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"journal_entry_id": {"type": "character varying", "index": 1, "name": "journal_entry_id", "comment": null}, "is_adjustment": {"type": "boolean", "index": 2, "name": "is_adjustment", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 4, "name": "currency_id", "comment": null}, "doc_number": {"type": "character varying", "index": 5, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 6, "name": "exchange_rate", "comment": null}, "private_note": {"type": "text", "index": 7, "name": "private_note", "comment": null}, "total_amount": {"type": "integer", "index": 8, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 9, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__journal_entry"}, "model.quickbooks_source.stg_quickbooks__journal_entry_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__journal_entry_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"journal_entry_id": {"type": "character varying", "index": 1, "name": "journal_entry_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "account_id": {"type": "character varying", "index": 3, "name": "account_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "customer_id": {"type": "character varying", "index": 5, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 6, "name": "department_id", "comment": null}, "class_id": {"type": "integer", "index": 7, "name": "class_id", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "billable_status": {"type": "integer", "index": 9, "name": "billable_status", "comment": null}, "posting_type": {"type": "text", "index": 10, "name": "posting_type", "comment": null}, "vendor_id": {"type": "character varying", "index": 11, "name": "vendor_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.quickbooks_source.stg_quickbooks__journal_entry_line"}, "model.quickbooks_source.stg_quickbooks__journal_entry_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__journal_entry_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "journal_entry_id": {"type": "integer", "index": 2, "name": "journal_entry_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "integer", "index": 4, "name": "account_id", "comment": null}, "amount": {"type": "integer", "index": 5, "name": "amount", "comment": null}, "billable_status": {"type": "integer", "index": 6, "name": "billable_status", "comment": null}, "class_id": {"type": "integer", "index": 7, "name": "class_id", "comment": null}, "customer_id": {"type": "integer", "index": 8, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "description": {"type": "text", "index": 10, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 11, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 12, "name": "description_tax_code_id", "comment": null}, "employee_id": {"type": "integer", "index": 13, "name": "employee_id", "comment": null}, "posting_type": {"type": "text", "index": 14, "name": "posting_type", "comment": null}, "tax_amount": {"type": "integer", "index": 15, "name": "tax_amount", "comment": null}, "tax_applicable_on": {"type": "integer", "index": 16, "name": "tax_applicable_on", "comment": null}, "tax_code_id": {"type": "integer", "index": 17, "name": "tax_code_id", "comment": null}, "vendor_id": {"type": "integer", "index": 18, "name": "vendor_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.quickbooks_source.stg_quickbooks__journal_entry_line_tmp"}, "model.quickbooks_source.stg_quickbooks__journal_entry_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__journal_entry_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "adjustment": {"type": "boolean", "index": 4, "name": "adjustment", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "doc_number": {"type": "text", "index": 7, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 8, "name": "exchange_rate", "comment": null}, "home_total_amount": {"type": "integer", "index": 9, "name": "home_total_amount", "comment": null}, "private_note": {"type": "text", "index": 10, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 11, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 12, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 13, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 14, "name": "total_tax", "comment": null}, "transaction_date": {"type": "date", "index": 15, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 16, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__journal_entry_tmp"}, "model.quickbooks_source.stg_quickbooks__payment": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__payment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_id": {"type": "character varying", "index": 1, "name": "payment_id", "comment": null}, "unapplied_amount": {"type": "integer", "index": 2, "name": "unapplied_amount", "comment": null}, "total_amount": {"type": "double precision", "index": 3, "name": "total_amount", "comment": null}, "currency_id": {"type": "text", "index": 4, "name": "currency_id", "comment": null}, "receivable_account_id": {"type": "character varying", "index": 5, "name": "receivable_account_id", "comment": null}, "deposit_to_account_id": {"type": "character varying", "index": 6, "name": "deposit_to_account_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 7, "name": "exchange_rate", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 8, "name": "transaction_date", "comment": null}, "customer_id": {"type": "character varying", "index": 9, "name": "customer_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__payment"}, "model.quickbooks_source.stg_quickbooks__payment_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__payment_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"payment_id": {"type": "character varying", "index": 1, "name": "payment_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "journal_entry_id": {"type": "integer", "index": 4, "name": "journal_entry_id", "comment": null}, "deposit_id": {"type": "integer", "index": 5, "name": "deposit_id", "comment": null}, "invoice_id": {"type": "character varying", "index": 6, "name": "invoice_id", "comment": null}, "credit_memo_id": {"type": "integer", "index": 7, "name": "credit_memo_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.quickbooks_source.stg_quickbooks__payment_line"}, "model.quickbooks_source.stg_quickbooks__payment_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__payment_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "payment_id": {"type": "integer", "index": 2, "name": "payment_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "check_id": {"type": "integer", "index": 5, "name": "check_id", "comment": null}, "credit_card_charge_id": {"type": "integer", "index": 6, "name": "credit_card_charge_id", "comment": null}, "credit_card_credit_id": {"type": "integer", "index": 7, "name": "credit_card_credit_id", "comment": null}, "credit_memo_id": {"type": "integer", "index": 8, "name": "credit_memo_id", "comment": null}, "deposit_id": {"type": "integer", "index": 9, "name": "deposit_id", "comment": null}, "expense_id": {"type": "integer", "index": 10, "name": "expense_id", "comment": null}, "invoice_id": {"type": "integer", "index": 11, "name": "invoice_id", "comment": null}, "journal_entry_id": {"type": "integer", "index": 12, "name": "journal_entry_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.quickbooks_source.stg_quickbooks__payment_line_tmp"}, "model.quickbooks_source.stg_quickbooks__payment_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__payment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 5, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 6, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 7, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 8, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 9, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 10, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 11, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 12, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 13, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 14, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 15, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 16, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 17, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 18, "name": "customer_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 19, "name": "deposit_to_account_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 20, "name": "exchange_rate", "comment": null}, "payment_method_id": {"type": "integer", "index": 21, "name": "payment_method_id", "comment": null}, "private_note": {"type": "text", "index": 22, "name": "private_note", "comment": null}, "process_payment": {"type": "boolean", "index": 23, "name": "process_payment", "comment": null}, "receivable_account_id": {"type": "integer", "index": 24, "name": "receivable_account_id", "comment": null}, "reference_number": {"type": "integer", "index": 25, "name": "reference_number", "comment": null}, "sync_token": {"type": "integer", "index": 26, "name": "sync_token", "comment": null}, "total_amount": {"type": "double precision", "index": 27, "name": "total_amount", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 28, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 29, "name": "transaction_source", "comment": null}, "transaction_status": {"type": "integer", "index": 30, "name": "transaction_status", "comment": null}, "unapplied_amount": {"type": "integer", "index": 31, "name": "unapplied_amount", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 32, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__payment_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"purchase_id": {"type": "character varying", "index": 1, "name": "purchase_id", "comment": null}, "account_id": {"type": "character varying", "index": 2, "name": "account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "doc_number": {"type": "character varying", "index": 4, "name": "doc_number", "comment": null}, "currency_id": {"type": "text", "index": 5, "name": "currency_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 6, "name": "exchange_rate", "comment": null}, "credit": {"type": "integer", "index": 7, "name": "credit", "comment": null}, "total_amount": {"type": "integer", "index": 8, "name": "total_amount", "comment": null}, "payment_type": {"type": "text", "index": 9, "name": "payment_type", "comment": null}, "department_id": {"type": "integer", "index": 10, "name": "department_id", "comment": null}, "customer_id": {"type": "character varying", "index": 11, "name": "customer_id", "comment": null}, "vendor_id": {"type": "character varying", "index": 12, "name": "vendor_id", "comment": null}, "transaction_date": {"type": "integer", "index": 13, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 14, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__purchase"}, "model.quickbooks_source.stg_quickbooks__purchase_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"purchase_id": {"type": "character varying", "index": 1, "name": "purchase_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "account_expense_account_id": {"type": "character varying", "index": 3, "name": "account_expense_account_id", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 4, "name": "account_expense_class_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_customer_id": {"type": "character varying", "index": 6, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 7, "name": "account_expense_tax_code_id", "comment": null}, "item_expense_item_id": {"type": "character varying", "index": 8, "name": "item_expense_item_id", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 9, "name": "item_expense_billable_status", "comment": null}, "item_expense_customer_id": {"type": "character varying", "index": 10, "name": "item_expense_customer_id", "comment": null}, "amount": {"type": "integer", "index": 11, "name": "amount", "comment": null}, "description": {"type": "text", "index": 12, "name": "description", "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.quickbooks_source.stg_quickbooks__purchase_line"}, "model.quickbooks_source.stg_quickbooks__purchase_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_id": {"type": "integer", "index": 2, "name": "purchase_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "integer", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source.stg_quickbooks__purchase_line_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"purchase_order_id": {"type": "character varying", "index": 1, "name": "purchase_order_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "custom_po_number": {"type": "character varying", "index": 3, "name": "custom_po_number", "comment": null}, "doc_number": {"type": "character varying", "index": 4, "name": "doc_number", "comment": null}, "currency_id": {"type": "text", "index": 5, "name": "currency_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 6, "name": "exchange_rate", "comment": null}, "total_amount": {"type": "double precision", "index": 7, "name": "total_amount", "comment": null}, "payable_account_id": {"type": "character varying", "index": 8, "name": "payable_account_id", "comment": null}, "vendor_id": {"type": "character varying", "index": 9, "name": "vendor_id", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 10, "name": "transaction_date", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "due_date": {"type": "integer", "index": 12, "name": "due_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 13, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__purchase_order"}, "model.quickbooks_source.stg_quickbooks__purchase_order_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"purchase_order_id": {"type": "character varying", "index": 1, "name": "purchase_order_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "account_expense_account_id": {"type": "character varying", "index": 3, "name": "account_expense_account_id", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 4, "name": "account_expense_class_id", "comment": null}, "account_expense_billable_status": {"type": "integer", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_customer_id": {"type": "character varying", "index": 6, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_code_id": {"type": "integer", "index": 7, "name": "account_expense_tax_code_id", "comment": null}, "item_expense_item_id": {"type": "character varying", "index": 8, "name": "item_expense_item_id", "comment": null}, "item_expense_billable_status": {"type": "text", "index": 9, "name": "item_expense_billable_status", "comment": null}, "item_expense_customer_id": {"type": "character varying", "index": 10, "name": "item_expense_customer_id", "comment": null}, "amount": {"type": "double precision", "index": 11, "name": "amount", "comment": null}, "description": {"type": "text", "index": 12, "name": "description", "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.quickbooks_source.stg_quickbooks__purchase_order_line"}, "model.quickbooks_source.stg_quickbooks__purchase_order_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_order_id": {"type": "integer", "index": 2, "name": "purchase_order_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "integer", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "integer", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "double precision", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "text", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "text", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "double precision", "index": 18, "name": "item_expense_unit_price", "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.quickbooks_source.stg_quickbooks__purchase_order_line_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order_linked_txn", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"purchase_order_id": {"type": "character varying", "index": 1, "name": "purchase_order_id", "comment": null}, "bill_id": {"type": "character varying", "index": 2, "name": "bill_id", "comment": null}, "purchase_id": {"type": "character varying", "index": 3, "name": "purchase_id", "comment": null}, "vendor_credit_id": {"type": "character varying", "index": 4, "name": "vendor_credit_id", "comment": null}, "index": {"type": "integer", "index": 5, "name": "index", "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.quickbooks_source.stg_quickbooks__purchase_order_linked_txn"}, "model.quickbooks_source.stg_quickbooks__purchase_order_linked_txn_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order_linked_txn_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "purchase_order_id": {"type": "integer", "index": 2, "name": "purchase_order_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bill_id": {"type": "integer", "index": 4, "name": "bill_id", "comment": null}, "purchase_id": {"type": "integer", "index": 5, "name": "purchase_id", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 6, "name": "vendor_credit_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.quickbooks_source.stg_quickbooks__purchase_order_linked_txn_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_order_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_order_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "class_id": {"type": "integer", "index": 4, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "custom_customer_type": {"type": "text", "index": 7, "name": "custom_customer_type", "comment": null}, "custom_p_o_number": {"type": "integer", "index": 8, "name": "custom_p_o_number", "comment": null}, "doc_number": {"type": "integer", "index": 9, "name": "doc_number", "comment": null}, "due_date": {"type": "integer", "index": 10, "name": "due_date", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 12, "name": "global_tax_calculation", "comment": null}, "memo": {"type": "text", "index": 13, "name": "memo", "comment": null}, "payable_account_id": {"type": "integer", "index": 14, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 15, "name": "private_note", "comment": null}, "sales_term_id": {"type": "integer", "index": 16, "name": "sales_term_id", "comment": null}, "shipping_address_id": {"type": "integer", "index": 17, "name": "shipping_address_id", "comment": null}, "status": {"type": "text", "index": 18, "name": "status", "comment": null}, "sync_token": {"type": "integer", "index": 19, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 20, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "double precision", "index": 21, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 22, "name": "total_tax", "comment": null}, "transaction_date": {"type": "timestamp without time zone", "index": 23, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 24, "name": "updated_at", "comment": null}, "vendor_address_id": {"type": "integer", "index": 25, "name": "vendor_address_id", "comment": null}, "vendor_id": {"type": "integer", "index": 26, "name": "vendor_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.quickbooks_source.stg_quickbooks__purchase_order_tmp"}, "model.quickbooks_source.stg_quickbooks__purchase_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__purchase_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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": "integer", "index": 4, "name": "account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "credit": {"type": "integer", "index": 6, "name": "credit", "comment": null}, "currency_id": {"type": "text", "index": 7, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 8, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 10, "name": "doc_number", "comment": null}, "employee_id": {"type": "integer", "index": 11, "name": "employee_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 12, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 13, "name": "global_tax_calculation", "comment": null}, "payment_method_id": {"type": "integer", "index": 14, "name": "payment_method_id", "comment": null}, "payment_type": {"type": "text", "index": 15, "name": "payment_type", "comment": null}, "print_status": {"type": "integer", "index": 16, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 17, "name": "private_note", "comment": null}, "remit_to_address_id": {"type": "integer", "index": 18, "name": "remit_to_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 19, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 20, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 21, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 22, "name": "total_tax", "comment": null}, "transaction_date": {"type": "integer", "index": 23, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 24, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 25, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 26, "name": "vendor_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.quickbooks_source.stg_quickbooks__purchase_tmp"}, "model.quickbooks_source.stg_quickbooks__refund_receipt": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__refund_receipt", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "character varying", "index": 1, "name": "refund_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "total_amount": {"type": "integer", "index": 4, "name": "total_amount", "comment": null}, "class_id": {"type": "integer", "index": 5, "name": "class_id", "comment": null}, "deposit_to_account_id": {"type": "character varying", "index": 6, "name": "deposit_to_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "department_id": {"type": "integer", "index": 8, "name": "department_id", "comment": null}, "customer_id": {"type": "character varying", "index": 9, "name": "customer_id", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "transaction_date": {"type": "integer", "index": 12, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 13, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__refund_receipt"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__refund_receipt_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "character varying", "index": 1, "name": "refund_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "integer", "index": 3, "name": "amount", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "discount_account_id": {"type": "character varying", "index": 5, "name": "discount_account_id", "comment": null}, "sales_item_account_id": {"type": "character varying", "index": 6, "name": "sales_item_account_id", "comment": null}, "sales_item_item_id": {"type": "character varying", "index": 7, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 8, "name": "sales_item_quantity", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 9, "name": "sales_item_unit_price", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 10, "name": "sales_item_tax_code_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.quickbooks_source.stg_quickbooks__refund_receipt_line"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__refund_receipt_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "refund_id": {"type": "integer", "index": 2, "name": "refund_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source.stg_quickbooks__refund_receipt_line_tmp"}, "model.quickbooks_source.stg_quickbooks__refund_receipt_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__refund_receipt_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "integer", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "check_payment_account_number": {"type": "integer", "index": 8, "name": "check_payment_account_number", "comment": null}, "check_payment_bank_name": {"type": "integer", "index": 9, "name": "check_payment_bank_name", "comment": null}, "check_payment_check_number": {"type": "integer", "index": 10, "name": "check_payment_check_number", "comment": null}, "check_payment_name_on_account": {"type": "integer", "index": 11, "name": "check_payment_name_on_account", "comment": null}, "check_payment_status": {"type": "integer", "index": 12, "name": "check_payment_status", "comment": null}, "class_id": {"type": "integer", "index": 13, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 14, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 15, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 16, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 17, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 18, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 19, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 20, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 21, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 22, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 23, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 24, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 25, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 26, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 27, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 28, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 29, "name": "customer_memo", "comment": null}, "department_id": {"type": "integer", "index": 30, "name": "department_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 31, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 32, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 33, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 34, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 35, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 36, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 37, "name": "payment_method_id", "comment": null}, "payment_reference_number": {"type": "integer", "index": 38, "name": "payment_reference_number", "comment": null}, "payment_type": {"type": "integer", "index": 39, "name": "payment_type", "comment": null}, "print_status": {"type": "integer", "index": 40, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 41, "name": "private_note", "comment": null}, "shipping_address_id": {"type": "integer", "index": 42, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 43, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 44, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 45, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 46, "name": "total_tax", "comment": null}, "transaction_date": {"type": "integer", "index": 47, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 48, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 49, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__refund_receipt_tmp"}, "model.quickbooks_source.stg_quickbooks__sales_receipt": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__sales_receipt", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"sales_receipt_id": {"type": "character varying", "index": 1, "name": "sales_receipt_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "total_amount": {"type": "integer", "index": 4, "name": "total_amount", "comment": null}, "deposit_to_account_id": {"type": "character varying", "index": 5, "name": "deposit_to_account_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "customer_id": {"type": "character varying", "index": 7, "name": "customer_id", "comment": null}, "department_id": {"type": "integer", "index": 8, "name": "department_id", "comment": null}, "class_id": {"type": "integer", "index": 9, "name": "class_id", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 11, "name": "exchange_rate", "comment": null}, "transaction_date": {"type": "integer", "index": 12, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 13, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__sales_receipt"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__sales_receipt_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"sales_receipt_id": {"type": "character varying", "index": 1, "name": "sales_receipt_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "amount": {"type": "integer", "index": 3, "name": "amount", "comment": null}, "description": {"type": "text", "index": 4, "name": "description", "comment": null}, "discount_account_id": {"type": "character varying", "index": 5, "name": "discount_account_id", "comment": null}, "sales_item_account_id": {"type": "character varying", "index": 6, "name": "sales_item_account_id", "comment": null}, "sales_item_item_id": {"type": "character varying", "index": 7, "name": "sales_item_item_id", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 8, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 9, "name": "sales_item_quantity", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 10, "name": "sales_item_unit_price", "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.quickbooks_source.stg_quickbooks__sales_receipt_line"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__sales_receipt_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "sales_receipt_id": {"type": "integer", "index": 2, "name": "sales_receipt_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "bundle_id": {"type": "integer", "index": 5, "name": "bundle_id", "comment": null}, "bundle_quantity": {"type": "integer", "index": 6, "name": "bundle_quantity", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "description_service_date": {"type": "integer", "index": 8, "name": "description_service_date", "comment": null}, "description_tax_code_id": {"type": "integer", "index": 9, "name": "description_tax_code_id", "comment": null}, "discount_account_id": {"type": "integer", "index": 10, "name": "discount_account_id", "comment": null}, "discount_class_id": {"type": "integer", "index": 11, "name": "discount_class_id", "comment": null}, "discount_discount_percent": {"type": "integer", "index": 12, "name": "discount_discount_percent", "comment": null}, "discount_percent_based": {"type": "integer", "index": 13, "name": "discount_percent_based", "comment": null}, "discount_tax_code_id": {"type": "integer", "index": 14, "name": "discount_tax_code_id", "comment": null}, "sales_item_account_id": {"type": "integer", "index": 15, "name": "sales_item_account_id", "comment": null}, "sales_item_class_id": {"type": "integer", "index": 16, "name": "sales_item_class_id", "comment": null}, "sales_item_discount_amount": {"type": "integer", "index": 17, "name": "sales_item_discount_amount", "comment": null}, "sales_item_discount_rate": {"type": "integer", "index": 18, "name": "sales_item_discount_rate", "comment": null}, "sales_item_item_id": {"type": "integer", "index": 19, "name": "sales_item_item_id", "comment": null}, "sales_item_quantity": {"type": "integer", "index": 20, "name": "sales_item_quantity", "comment": null}, "sales_item_service_date": {"type": "integer", "index": 21, "name": "sales_item_service_date", "comment": null}, "sales_item_tax_code_id": {"type": "text", "index": 22, "name": "sales_item_tax_code_id", "comment": null}, "sales_item_unit_price": {"type": "integer", "index": 23, "name": "sales_item_unit_price", "comment": null}, "sub_total_item_id": {"type": "integer", "index": 24, "name": "sub_total_item_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.quickbooks_source.stg_quickbooks__sales_receipt_line_tmp"}, "model.quickbooks_source.stg_quickbooks__sales_receipt_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__sales_receipt_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "apply_tax_after_discount": {"type": "integer", "index": 4, "name": "apply_tax_after_discount", "comment": null}, "balance": {"type": "integer", "index": 5, "name": "balance", "comment": null}, "bill_email": {"type": "text", "index": 6, "name": "bill_email", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "class_id": {"type": "integer", "index": 8, "name": "class_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "credit_card_amount": {"type": "integer", "index": 10, "name": "credit_card_amount", "comment": null}, "credit_card_auth_code": {"type": "integer", "index": 11, "name": "credit_card_auth_code", "comment": null}, "credit_card_billing_address_street": {"type": "integer", "index": 12, "name": "credit_card_billing_address_street", "comment": null}, "credit_card_cc_expiry_month": {"type": "integer", "index": 13, "name": "credit_card_cc_expiry_month", "comment": null}, "credit_card_cc_expiry_year": {"type": "integer", "index": 14, "name": "credit_card_cc_expiry_year", "comment": null}, "credit_card_cctrans_id": {"type": "integer", "index": 15, "name": "credit_card_cctrans_id", "comment": null}, "credit_card_name_on_account": {"type": "integer", "index": 16, "name": "credit_card_name_on_account", "comment": null}, "credit_card_postal_code": {"type": "integer", "index": 17, "name": "credit_card_postal_code", "comment": null}, "credit_card_process_payment": {"type": "integer", "index": 18, "name": "credit_card_process_payment", "comment": null}, "credit_card_status": {"type": "integer", "index": 19, "name": "credit_card_status", "comment": null}, "credit_card_transaction_authorization_time": {"type": "integer", "index": 20, "name": "credit_card_transaction_authorization_time", "comment": null}, "credit_card_type": {"type": "integer", "index": 21, "name": "credit_card_type", "comment": null}, "currency_id": {"type": "text", "index": 22, "name": "currency_id", "comment": null}, "customer_id": {"type": "integer", "index": 23, "name": "customer_id", "comment": null}, "customer_memo": {"type": "text", "index": 24, "name": "customer_memo", "comment": null}, "delivery_time": {"type": "integer", "index": 25, "name": "delivery_time", "comment": null}, "delivery_type": {"type": "integer", "index": 26, "name": "delivery_type", "comment": null}, "department_id": {"type": "integer", "index": 27, "name": "department_id", "comment": null}, "deposit_to_account_id": {"type": "integer", "index": 28, "name": "deposit_to_account_id", "comment": null}, "doc_number": {"type": "integer", "index": 29, "name": "doc_number", "comment": null}, "email_status": {"type": "integer", "index": 30, "name": "email_status", "comment": null}, "exchange_rate": {"type": "integer", "index": 31, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 32, "name": "global_tax_calculation", "comment": null}, "home_balance": {"type": "integer", "index": 33, "name": "home_balance", "comment": null}, "home_total_amount": {"type": "integer", "index": 34, "name": "home_total_amount", "comment": null}, "payment_method_id": {"type": "integer", "index": 35, "name": "payment_method_id", "comment": null}, "payment_reference_number": {"type": "integer", "index": 36, "name": "payment_reference_number", "comment": null}, "print_status": {"type": "integer", "index": 37, "name": "print_status", "comment": null}, "private_note": {"type": "integer", "index": 38, "name": "private_note", "comment": null}, "ship_date": {"type": "integer", "index": 39, "name": "ship_date", "comment": null}, "shipping_address_id": {"type": "integer", "index": 40, "name": "shipping_address_id", "comment": null}, "sync_token": {"type": "integer", "index": 41, "name": "sync_token", "comment": null}, "tax_code_id": {"type": "integer", "index": 42, "name": "tax_code_id", "comment": null}, "total_amount": {"type": "integer", "index": 43, "name": "total_amount", "comment": null}, "total_tax": {"type": "integer", "index": 44, "name": "total_tax", "comment": null}, "tracking_number": {"type": "integer", "index": 45, "name": "tracking_number", "comment": null}, "transaction_date": {"type": "integer", "index": 46, "name": "transaction_date", "comment": null}, "transaction_source": {"type": "integer", "index": 47, "name": "transaction_source", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 48, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__sales_receipt_tmp"}, "model.quickbooks_source.stg_quickbooks__transfer": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__transfer", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transfer_id": {"type": "character varying", "index": 1, "name": "transfer_id", "comment": null}, "amount": {"type": "integer", "index": 2, "name": "amount", "comment": null}, "from_account_id": {"type": "character varying", "index": 3, "name": "from_account_id", "comment": null}, "to_account_id": {"type": "character varying", "index": 4, "name": "to_account_id", "comment": null}, "transaction_date": {"type": "date", "index": 5, "name": "transaction_date", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 6, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__transfer"}, "model.quickbooks_source.stg_quickbooks__transfer_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__transfer_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "from_account_id": {"type": "integer", "index": 6, "name": "from_account_id", "comment": null}, "private_note": {"type": "text", "index": 7, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 8, "name": "sync_token", "comment": null}, "to_account_id": {"type": "integer", "index": 9, "name": "to_account_id", "comment": null}, "transaction_date": {"type": "date", "index": 10, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 11, "name": "updated_at", "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.quickbooks_source.stg_quickbooks__transfer_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"vendor_id": {"type": "character varying", "index": 1, "name": "vendor_id", "comment": null}, "account_number": {"type": "integer", "index": 2, "name": "account_number", "comment": null}, "is_active": {"type": "boolean", "index": 3, "name": "is_active", "comment": null}, "balance": {"type": "integer", "index": 4, "name": "balance", "comment": null}, "billing_address_id": {"type": "character varying", "index": 5, "name": "billing_address_id", "comment": null}, "company_name": {"type": "text", "index": 6, "name": "company_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 8, "name": "currency_id", "comment": null}, "display_name": {"type": "text", "index": 9, "name": "display_name", "comment": null}, "web_url": {"type": "integer", "index": 10, "name": "web_url", "comment": null}, "is_vendor_1099": {"type": "boolean", "index": 11, "name": "is_vendor_1099", "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.quickbooks_source.stg_quickbooks__vendor"}, "model.quickbooks_source.stg_quickbooks__vendor_credit": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor_credit", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"vendor_credit_id": {"type": "character varying", "index": 1, "name": "vendor_credit_id", "comment": null}, "balance": {"type": "integer", "index": 2, "name": "balance", "comment": null}, "doc_number": {"type": "character varying", "index": 3, "name": "doc_number", "comment": null}, "total_amount": {"type": "integer", "index": 4, "name": "total_amount", "comment": null}, "currency_id": {"type": "text", "index": 5, "name": "currency_id", "comment": null}, "exchange_rate": {"type": "integer", "index": 6, "name": "exchange_rate", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "payable_account_id": {"type": "character varying", "index": 8, "name": "payable_account_id", "comment": null}, "department_id": {"type": "integer", "index": 9, "name": "department_id", "comment": null}, "private_note": {"type": "text", "index": 10, "name": "private_note", "comment": null}, "transaction_date": {"type": "date", "index": 11, "name": "transaction_date", "comment": null}, "vendor_id": {"type": "character varying", "index": 12, "name": "vendor_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 13, "name": "_fivetran_deleted", "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.quickbooks_source.stg_quickbooks__vendor_credit"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_line": {"metadata": {"type": "BASE TABLE", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor_credit_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"vendor_credit_id": {"type": "character varying", "index": 1, "name": "vendor_credit_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "account_expense_customer_id": {"type": "character varying", "index": 3, "name": "account_expense_customer_id", "comment": null}, "account_expense_account_id": {"type": "character varying", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 6, "name": "account_expense_tax_code_id", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 7, "name": "account_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "character varying", "index": 8, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "character varying", "index": 9, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 10, "name": "item_expense_quantity", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 11, "name": "item_expense_unit_price", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 12, "name": "item_expense_class_id", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 13, "name": "item_expense_billable_status", "comment": null}, "amount": {"type": "integer", "index": 14, "name": "amount", "comment": null}, "description": {"type": "text", "index": 15, "name": "description", "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.quickbooks_source.stg_quickbooks__vendor_credit_line"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_line_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor_credit_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "vendor_credit_id": {"type": "integer", "index": 2, "name": "vendor_credit_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_expense_account_id": {"type": "integer", "index": 4, "name": "account_expense_account_id", "comment": null}, "account_expense_billable_status": {"type": "text", "index": 5, "name": "account_expense_billable_status", "comment": null}, "account_expense_class_id": {"type": "integer", "index": 6, "name": "account_expense_class_id", "comment": null}, "account_expense_customer_id": {"type": "integer", "index": 7, "name": "account_expense_customer_id", "comment": null}, "account_expense_tax_amount": {"type": "integer", "index": 8, "name": "account_expense_tax_amount", "comment": null}, "account_expense_tax_code_id": {"type": "text", "index": 9, "name": "account_expense_tax_code_id", "comment": null}, "amount": {"type": "integer", "index": 10, "name": "amount", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "item_expense_billable_status": {"type": "integer", "index": 12, "name": "item_expense_billable_status", "comment": null}, "item_expense_class_id": {"type": "integer", "index": 13, "name": "item_expense_class_id", "comment": null}, "item_expense_customer_id": {"type": "integer", "index": 14, "name": "item_expense_customer_id", "comment": null}, "item_expense_item_id": {"type": "integer", "index": 15, "name": "item_expense_item_id", "comment": null}, "item_expense_quantity": {"type": "integer", "index": 16, "name": "item_expense_quantity", "comment": null}, "item_expense_tax_code_id": {"type": "integer", "index": 17, "name": "item_expense_tax_code_id", "comment": null}, "item_expense_unit_price": {"type": "integer", "index": 18, "name": "item_expense_unit_price", "comment": null}, "private_note": {"type": "integer", "index": 19, "name": "private_note", "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.quickbooks_source.stg_quickbooks__vendor_credit_line_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor_credit_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor_credit_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "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}, "balance": {"type": "integer", "index": 4, "name": "balance", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 6, "name": "currency_id", "comment": null}, "department_id": {"type": "integer", "index": 7, "name": "department_id", "comment": null}, "doc_number": {"type": "integer", "index": 8, "name": "doc_number", "comment": null}, "exchange_rate": {"type": "integer", "index": 9, "name": "exchange_rate", "comment": null}, "global_tax_calculation": {"type": "integer", "index": 10, "name": "global_tax_calculation", "comment": null}, "payable_account_id": {"type": "integer", "index": 11, "name": "payable_account_id", "comment": null}, "private_note": {"type": "text", "index": 12, "name": "private_note", "comment": null}, "sync_token": {"type": "integer", "index": 13, "name": "sync_token", "comment": null}, "total_amount": {"type": "integer", "index": 14, "name": "total_amount", "comment": null}, "transaction_date": {"type": "date", "index": 15, "name": "transaction_date", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 16, "name": "updated_at", "comment": null}, "vendor_id": {"type": "integer", "index": 17, "name": "vendor_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.quickbooks_source.stg_quickbooks__vendor_credit_tmp"}, "model.quickbooks_source.stg_quickbooks__vendor_tmp": {"metadata": {"type": "VIEW", "schema": "quickbooks_source_integration_tests_quickbooks_staging", "name": "stg_quickbooks__vendor_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_number": {"type": "integer", "index": 3, "name": "account_number", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "alternate_phone": {"type": "integer", "index": 5, "name": "alternate_phone", "comment": null}, "balance": {"type": "integer", "index": 6, "name": "balance", "comment": null}, "billing_address_id": {"type": "integer", "index": 7, "name": "billing_address_id", "comment": null}, "company_name": {"type": "text", "index": 8, "name": "company_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "currency_id": {"type": "text", "index": 10, "name": "currency_id", "comment": null}, "display_name": {"type": "text", "index": 11, "name": "display_name", "comment": null}, "email": {"type": "text", "index": 12, "name": "email", "comment": null}, "family_name": {"type": "integer", "index": 13, "name": "family_name", "comment": null}, "fax_number": {"type": "integer", "index": 14, "name": "fax_number", "comment": null}, "given_name": {"type": "integer", "index": 15, "name": "given_name", "comment": null}, "middle_name": {"type": "integer", "index": 16, "name": "middle_name", "comment": null}, "mobile_phone": {"type": "integer", "index": 17, "name": "mobile_phone", "comment": null}, "other_contacts": {"type": "integer", "index": 18, "name": "other_contacts", "comment": null}, "primary_phone": {"type": "integer", "index": 19, "name": "primary_phone", "comment": null}, "print_on_check_name": {"type": "text", "index": 20, "name": "print_on_check_name", "comment": null}, "suffix": {"type": "integer", "index": 21, "name": "suffix", "comment": null}, "sync_token": {"type": "integer", "index": 22, "name": "sync_token", "comment": null}, "tax_identifier": {"type": "integer", "index": 23, "name": "tax_identifier", "comment": null}, "term_id": {"type": "integer", "index": 24, "name": "term_id", "comment": null}, "title": {"type": "integer", "index": 25, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 26, "name": "updated_at", "comment": null}, "vendor_1099": {"type": "boolean", "index": 27, "name": "vendor_1099", "comment": null}, "web_url": {"type": "integer", "index": 28, "name": "web_url", "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.quickbooks_source.stg_quickbooks__vendor_tmp"}}, "sources": {}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 360349a..56291a2 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ - + @@ -16,17 +16,17 @@ - + - +
-