diff --git a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md
index 768ac3f..2ff7973 100644
--- a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md
+++ b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md
@@ -4,48 +4,27 @@
**This PR will result in the following new package version:**
-**Please detail what change(s) this PR introduces and any additional information that should be known during the review of this PR:**
+**Please provide the finalized CHANGELOG entry which details the relevant changes included in this PR:**
+
## PR Checklist
### Basic Validation
Please acknowledge that you have successfully performed the following commands locally:
-- [ ] dbt compile
-- [ ] dbt run –full-refresh
-- [ ] dbt run
-- [ ] dbt test
-- [ ] dbt run –vars (if applicable)
+- [ ] dbt run –full-refresh && dbt test
+- [ ] dbt run (if incremental models are present)
Before marking this PR as "ready for review" the following have been applied:
-- [ ] The appropriate issue has been linked and tagged
-- [ ] You are assigned to the corresponding issue and this PR
-- [ ] BuildKite integration tests are passing
+- [ ] The appropriate issue has been linked, tagged, and properly assigned.
+- [ ] All necessary documentation and version upgrades have been applied.
+
+- [ ] docs were regenerated (unless this PR does not include any code or yml updates).
+- [ ] BuildKite integration tests are passing.
+- [ ] Detailed validation steps have been provided below.
### Detailed Validation
-Please acknowledge that the following validation checks have been performed prior to marking this PR as "ready for review":
-- [ ] You have validated these changes and assure this PR will address the respective Issue/Feature.
-- [ ] You are reasonably confident these changes will not impact any other components of this package or any dependent packages.
-- [ ] You have provided details below around the validation steps performed to gain confidence in these changes.
+Please share any and all of your validation steps:
-### Standard Updates
-Please acknowledge that your PR contains the following standard updates:
-- Package versioning has been appropriately indexed in the following locations:
- - [ ] indexed within dbt_project.yml
- - [ ] indexed within integration_tests/dbt_project.yml
-- [ ] CHANGELOG has individual entries for each respective change in this PR
-
-- [ ] README updates have been applied (if applicable)
-
-- [ ] DECISIONLOG updates have been updated (if applicable)
-- [ ] Appropriate yml documentation has been added (if applicable)
-
-### dbt Docs
-Please acknowledge that after the above were all completed the below were applied to your branch:
-- [ ] docs were regenerated (unless this PR does not include any code or yml updates)
-
### If you had to summarize this PR in an emoji, which would it be?
:dancer:
diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml
new file mode 100644
index 0000000..d073ebf
--- /dev/null
+++ b/.github/workflows/auto-release.yml
@@ -0,0 +1,13 @@
+name: 'auto release'
+on:
+ pull_request:
+ types:
+ - closed
+ branches:
+ - main
+
+jobs:
+ call-workflow-passing-data:
+ if: github.event.pull_request.merged
+ uses: fivetran/dbt_package_automations/.github/workflows/auto-release.yml@feature/auto-releaser
+ secrets: inherit
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index 72dc623..e00b252 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,6 @@ target/
dbt_modules/
logs/
dbt_packages/
-.DS_Store
\ No newline at end of file
+.DS_Store
+env/
+package-lock.yml
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f98bd92..d6b17a4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+# dbt_sage_intacct v0.3.0
+
+[PR #19](https://github.com/fivetran/dbt_sage_intacct/pull/19) includes the following updates.
+
+## 🚨 Breaking Changes 🚨 (within the upstream dbt_sage_intacct_source package):
+- Removal of the `_fivetran_deleted` field from the upstream `stg_sage_intacct__gl_detail` table due to this field being deprecated within the connector. The relevant information is now available within the `gl_batch` source table. For more details please refer to the relevant [dbt_sage_intacct_source v0.3.0 release](https://github.com/fivetran/dbt_sage_intacct_source/releases/tag/v0.3.0).
+
+## Bug Fixes
+- Added a new `int_sage_intacct__active_gl_detail` model. This model properly filters out any soft deleted GL Detail records by joining on the GL Batch staging model which contains the reference to if the transaction was deleted or not. Please note that this may result in fewer transactions in your downstream models due the removal of deleted transactions.
+- While this package still does not fully support multi-currency, a bugfix was applied in the `int_sage_intacct__general_ledger_balances` model to properly join on the `currency` field so duplicates would not be introduced in the end models.
+- In addition to the above, the following combination of column uniqueness tests were updated to take `currency` into consideration:
+ - `sage_intacct__general_ledger_by_period`
+ - `sage_intacct__profit_and_loss`
+ - `sage_intacct__balance_sheet`
+
+## Under the Hood
+- Updated Maintainer PR Template
+- Included auto-releaser GitHub Actions workflow to automate future releases
+
# dbt_sage_intacct v0.2.2
## Add Null to Coalesce clause:
diff --git a/README.md b/README.md
index eaefc36..61fd904 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ Include the following sage_intacct package version in your `packages.yml` file:
```yaml
packages:
- package: fivetran/sage_intacct
- version: [">=0.2.0", "<0.3.0"] # we recommend using ranges to capture non-breaking changes automatically
+ version: [">=0.3.0", "<0.4.0"] # we recommend using ranges to capture non-breaking changes automatically
```
Do NOT include the `sage_intacct_source` package in this file. The transformation package itself has a dependency on it and will install the source package as well.
@@ -70,8 +70,6 @@ vars:
## (Optional) Step 4: Additional configurations
-Expand for configurations
-
### Passthrough Columns
This package allows users to add additional columns to the `stg_sage_intacct__gl_account` and `stg_sage_intacct__gl_detail` table.
Columns passed through must be present in the upstream source tables. See below for an example of how the passthrough columns should be configured within your `dbt_project.yml` file.
@@ -136,8 +134,6 @@ vars:
sage_intacct__identifier: your_table_name
```
-
-
## (Optional) Step 5: Orchestrate your models with Fivetran Transformations for dbt Core™
Expand for more details
@@ -152,7 +148,7 @@ This dbt package is dependent on the following dbt packages. Please be aware tha
```yml
packages:
- package: fivetran/sage_intacct_source
- version: [">=0.2.0", "<0.3.0"]
+ version: [">=0.3.0", "<0.4.0"]
- package: fivetran/fivetran_utils
version: [">=0.4.0", "<0.5.0"]
diff --git a/dbt_project.yml b/dbt_project.yml
index 8b37e70..9bc497b 100644
--- a/dbt_project.yml
+++ b/dbt_project.yml
@@ -1,6 +1,6 @@
config-version: 2
name: 'sage_intacct'
-version: '0.2.2'
+version: '0.3.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
sage_intacct:
@@ -13,6 +13,7 @@ vars:
sage_gl_pass_through_columns: []
sage_intacct:
gl_detail: "{{ ref('stg_sage_intacct__gl_detail') }}"
+ gl_batch: "{{ ref('stg_sage_intacct__gl_batch') }}"
gl_account: "{{ ref('stg_sage_intacct__gl_account') }}"
ap_bill_item: "{{ ref('stg_sage_intacct__ap_bill_item') }}"
ap_bill: "{{ ref('stg_sage_intacct__ap_bill') }}"
diff --git a/docs/catalog.json b/docs/catalog.json
index 71f42d4..1825e84 100644
--- a/docs/catalog.json
+++ b/docs/catalog.json
@@ -1 +1 @@
-{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.4.5", "generated_at": "2023-06-06T21:44:24.275181Z", "invocation_id": "a1fc42a2-f668-4ed8-9a56-3acebb536039", "env": {}}, "nodes": {"model.sage_intacct.int_sage_intacct__account_classifications": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct", "name": "int_sage_intacct__account_classifications", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_no": {"type": "STRING", "index": 1, "name": "account_no", "comment": null}, "account_type": {"type": "STRING", "index": 2, "name": "account_type", "comment": null}, "category": {"type": "STRING", "index": 3, "name": "category", "comment": null}, "closing_account_title": {"type": "STRING", "index": 4, "name": "closing_account_title", "comment": null}, "classification": {"type": "STRING", "index": 5, "name": "classification", "comment": null}, "normal_balance": {"type": "STRING", "index": 6, "name": "normal_balance", "comment": null}, "account_title": {"type": "STRING", "index": 7, "name": "account_title", "comment": null}}, "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.sage_intacct.int_sage_intacct__account_classifications"}, "model.sage_intacct.sage_intacct__general_ledger_by_period": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct", "name": "sage_intacct__general_ledger_by_period", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_no": {"type": "STRING", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 2, "name": "account_title", "comment": null}, "book_id": {"type": "STRING", "index": 3, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 4, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 5, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 6, "name": "currency", "comment": null}, "entry_state": {"type": "STRING", "index": 7, "name": "entry_state", "comment": null}, "account_type": {"type": "STRING", "index": 8, "name": "account_type", "comment": null}, "date_year": {"type": "DATE", "index": 9, "name": "date_year", "comment": null}, "period_first_day": {"type": "DATE", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "DATE", "index": 11, "name": "period_last_day", "comment": null}, "period_net_amount": {"type": "NUMERIC", "index": 12, "name": "period_net_amount", "comment": null}, "period_beg_amount": {"type": "NUMERIC", "index": 13, "name": "period_beg_amount", "comment": null}, "period_ending_amount": {"type": "NUMERIC", "index": 14, "name": "period_ending_amount", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1665274.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 278533008.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct.sage_intacct__general_ledger_by_period"}, "model.sage_intacct.sage_intacct__profit_and_loss": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct", "name": "sage_intacct__profit_and_loss", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"period_date": {"type": "DATE", "index": 1, "name": "period_date", "comment": null}, "account_no": {"type": "STRING", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "STRING", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "STRING", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "STRING", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "NUMERIC", "index": 10, "name": "amount", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 529568.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 63429600.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct.sage_intacct__profit_and_loss"}, "model.sage_intacct.int_sage_intacct__retained_earnings": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct", "name": "int_sage_intacct__retained_earnings", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"period_first_day": {"type": "DATE", "index": 1, "name": "period_first_day", "comment": null}, "account_no": {"type": "STRING", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "STRING", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "STRING", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "STRING", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "NUMERIC", "index": 10, "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.sage_intacct.int_sage_intacct__retained_earnings"}, "model.sage_intacct.sage_intacct__balance_sheet": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct", "name": "sage_intacct__balance_sheet", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"period_date": {"type": "DATE", "index": 1, "name": "period_date", "comment": null}, "account_no": {"type": "STRING", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "STRING", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "STRING", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "STRING", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "NUMERIC", "index": 10, "name": "amount", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1146080.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 136507514.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct.sage_intacct__balance_sheet"}, "model.sage_intacct.sage_intacct__ap_ar_enhanced": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct", "name": "sage_intacct__ap_ar_enhanced", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"document_id": {"type": "STRING", "index": 1, "name": "document_id", "comment": null}, "document_item_id": {"type": "STRING", "index": 2, "name": "document_item_id", "comment": null}, "document_type": {"type": "STRING", "index": 3, "name": "document_type", "comment": null}, "entry_date_at": {"type": "DATE", "index": 4, "name": "entry_date_at", "comment": null}, "entry_description": {"type": "STRING", "index": 5, "name": "entry_description", "comment": null}, "amount": {"type": "FLOAT64", "index": 6, "name": "amount", "comment": null}, "currency": {"type": "STRING", "index": 7, "name": "currency", "comment": null}, "due_in_days": {"type": "INT64", "index": 8, "name": "due_in_days", "comment": null}, "item_id": {"type": "STRING", "index": 9, "name": "item_id", "comment": null}, "item_name": {"type": "STRING", "index": 10, "name": "item_name", "comment": null}, "line_no": {"type": "INT64", "index": 11, "name": "line_no", "comment": null}, "line_item": {"type": "BOOL", "index": 12, "name": "line_item", "comment": null}, "customer_id": {"type": "STRING", "index": 13, "name": "customer_id", "comment": null}, "customer_name": {"type": "STRING", "index": 14, "name": "customer_name", "comment": null}, "department_id": {"type": "STRING", "index": 15, "name": "department_id", "comment": null}, "department_name": {"type": "STRING", "index": 16, "name": "department_name", "comment": null}, "location_id": {"type": "STRING", "index": 17, "name": "location_id", "comment": null}, "location_name": {"type": "STRING", "index": 18, "name": "location_name", "comment": null}, "vendor_id": {"type": "STRING", "index": 19, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "STRING", "index": 20, "name": "vendor_name", "comment": null}, "account_no": {"type": "FLOAT64", "index": 21, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 22, "name": "account_title", "comment": null}, "class_id": {"type": "STRING", "index": 23, "name": "class_id", "comment": null}, "class_name": {"type": "STRING", "index": 24, "name": "class_name", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 25, "name": "created_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 26, "name": "modified_at", "comment": null}, "total_due": {"type": "FLOAT64", "index": 27, "name": "total_due", "comment": null}, "total_entered": {"type": "FLOAT64", "index": 28, "name": "total_entered", "comment": null}, "total_paid": {"type": "FLOAT64", "index": 29, "name": "total_paid", "comment": null}, "number_of_items": {"type": "INT64", "index": 30, "name": "number_of_items", "comment": null}, "total_item_paid": {"type": "FLOAT64", "index": 31, "name": "total_item_paid", "comment": null}, "offset_gl_account_no": {"type": "INT64", "index": 32, "name": "offset_gl_account_no", "comment": null}, "offset_gl_account_title": {"type": "STRING", "index": 33, "name": "offset_gl_account_title", "comment": null}, "record_id": {"type": "STRING", "index": 34, "name": "record_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 231441.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 66824113.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct.sage_intacct__ap_ar_enhanced"}, "model.sage_intacct.sage_intacct__general_ledger": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct", "name": "sage_intacct__general_ledger", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"gl_detail_id": {"type": "STRING", "index": 1, "name": "gl_detail_id", "comment": null}, "account_no": {"type": "STRING", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 3, "name": "account_title", "comment": null}, "amount": {"type": "NUMERIC", "index": 4, "name": "amount", "comment": null}, "book_id": {"type": "STRING", "index": 5, "name": "book_id", "comment": null}, "credit_amount": {"type": "FLOAT64", "index": 6, "name": "credit_amount", "comment": null}, "debit_amount": {"type": "FLOAT64", "index": 7, "name": "debit_amount", "comment": null}, "currency": {"type": "STRING", "index": 8, "name": "currency", "comment": null}, "description": {"type": "STRING", "index": 9, "name": "description", "comment": null}, "doc_number": {"type": "STRING", "index": 10, "name": "doc_number", "comment": null}, "customer_id": {"type": "STRING", "index": 11, "name": "customer_id", "comment": null}, "customer_name": {"type": "STRING", "index": 12, "name": "customer_name", "comment": null}, "entry_date_at": {"type": "DATE", "index": 13, "name": "entry_date_at", "comment": null}, "entry_state": {"type": "STRING", "index": 14, "name": "entry_state", "comment": null}, "entry_description": {"type": "STRING", "index": 15, "name": "entry_description", "comment": null}, "line_no": {"type": "INT64", "index": 16, "name": "line_no", "comment": null}, "record_id": {"type": "STRING", "index": 17, "name": "record_id", "comment": null}, "record_type": {"type": "STRING", "index": 18, "name": "record_type", "comment": null}, "total_due": {"type": "FLOAT64", "index": 19, "name": "total_due", "comment": null}, "total_entered": {"type": "FLOAT64", "index": 20, "name": "total_entered", "comment": null}, "total_paid": {"type": "FLOAT64", "index": 21, "name": "total_paid", "comment": null}, "tr_type": {"type": "INT64", "index": 22, "name": "tr_type", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 23, "name": "trx_amount", "comment": null}, "trx_credit_amount": {"type": "FLOAT64", "index": 24, "name": "trx_credit_amount", "comment": null}, "trx_debit_amount": {"type": "FLOAT64", "index": 25, "name": "trx_debit_amount", "comment": null}, "vendor_id": {"type": "STRING", "index": 26, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "STRING", "index": 27, "name": "vendor_name", "comment": null}, "created_at": {"type": "DATE", "index": 28, "name": "created_at", "comment": null}, "due_at": {"type": "DATE", "index": 29, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 30, "name": "modified_at", "comment": null}, "paid_at": {"type": "DATE", "index": 31, "name": "paid_at", "comment": null}, "category": {"type": "STRING", "index": 32, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 33, "name": "classification", "comment": null}, "account_type": {"type": "STRING", "index": 34, "name": "account_type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4989960.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1535872992.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct.sage_intacct__general_ledger"}, "model.sage_intacct.int_sage_intacct__general_ledger_balances": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct", "name": "int_sage_intacct__general_ledger_balances", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_no": {"type": "STRING", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 2, "name": "account_title", "comment": null}, "book_id": {"type": "STRING", "index": 3, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 4, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 5, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 6, "name": "currency", "comment": null}, "account_type": {"type": "STRING", "index": 7, "name": "account_type", "comment": null}, "date_year": {"type": "DATE", "index": 8, "name": "date_year", "comment": null}, "entry_state": {"type": "STRING", "index": 9, "name": "entry_state", "comment": null}, "period_first_day": {"type": "DATE", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "DATE", "index": 11, "name": "period_last_day", "comment": null}, "period_net_amount": {"type": "NUMERIC", "index": 12, "name": "period_net_amount", "comment": null}, "period_beg_amount": {"type": "NUMERIC", "index": 13, "name": "period_beg_amount", "comment": null}, "period_ending_amount": {"type": "NUMERIC", "index": 14, "name": "period_ending_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.sage_intacct.int_sage_intacct__general_ledger_balances"}, "model.sage_intacct.int_sage_intacct__general_ledger_date_spine": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct", "name": "int_sage_intacct__general_ledger_date_spine", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_no": {"type": "STRING", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 2, "name": "account_title", "comment": null}, "account_type": {"type": "STRING", "index": 3, "name": "account_type", "comment": null}, "book_id": {"type": "STRING", "index": 4, "name": "book_id", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "classification": {"type": "STRING", "index": 6, "name": "classification", "comment": null}, "currency": {"type": "STRING", "index": 7, "name": "currency", "comment": null}, "entry_state": {"type": "STRING", "index": 8, "name": "entry_state", "comment": null}, "date_year": {"type": "DATE", "index": 9, "name": "date_year", "comment": null}, "period_first_day": {"type": "DATE", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "DATE", "index": 11, "name": "period_last_day", "comment": null}, "period_index": {"type": "INT64", "index": 12, "name": "period_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.sage_intacct.int_sage_intacct__general_ledger_date_spine"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"recordno": {"type": "STRING", "index": 1, "name": "recordno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "auwhencreated": {"type": "TIMESTAMP", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "STRING", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "STRING", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "INT64", "index": 7, "name": "billtopaytokey", "comment": null}, "createdby": {"type": "INT64", "index": 8, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 9, "name": "currency", "comment": null}, "description": {"type": "STRING", "index": 10, "name": "description", "comment": null}, "docnumber": {"type": "STRING", "index": 11, "name": "docnumber", "comment": null}, "due_in_days": {"type": "INT64", "index": 12, "name": "due_in_days", "comment": null}, "expensify_memo_vb": {"type": "STRING", "index": 13, "name": "expensify_memo_vb", "comment": null}, "inclusivetax": {"type": "BOOL", "index": 14, "name": "inclusivetax", "comment": null}, "modifiedby": {"type": "INT64", "index": 15, "name": "modifiedby", "comment": null}, "modulekey": {"type": "STRING", "index": 16, "name": "modulekey", "comment": null}, "onhold": {"type": "BOOL", "index": 17, "name": "onhold", "comment": null}, "paymentpriority": {"type": "STRING", "index": 18, "name": "paymentpriority", "comment": null}, "prbatch": {"type": "STRING", "index": 19, "name": "prbatch", "comment": null}, "prbatchkey": {"type": "INT64", "index": 20, "name": "prbatchkey", "comment": null}, "rawstate": {"type": "STRING", "index": 21, "name": "rawstate", "comment": null}, "recordid": {"type": "STRING", "index": 22, "name": "recordid", "comment": null}, "recordtype": {"type": "STRING", "index": 23, "name": "recordtype", "comment": null}, "recpaymentdate": {"type": "DATE", "index": 24, "name": "recpaymentdate", "comment": null}, "schopkey": {"type": "INT64", "index": 25, "name": "schopkey", "comment": null}, "shiptoreturntocontactname": {"type": "STRING", "index": 26, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "INT64", "index": 27, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "STRING", "index": 28, "name": "state", "comment": null}, "supdocid": {"type": "STRING", "index": 29, "name": "supdocid", "comment": null}, "systemgenerated": {"type": "BOOL", "index": 30, "name": "systemgenerated", "comment": null}, "termkey": {"type": "INT64", "index": 31, "name": "termkey", "comment": null}, "termname": {"type": "STRING", "index": 32, "name": "termname", "comment": null}, "termvalue": {"type": "STRING", "index": 33, "name": "termvalue", "comment": null}, "totaldue": {"type": "FLOAT64", "index": 34, "name": "totaldue", "comment": null}, "totalentered": {"type": "FLOAT64", "index": 35, "name": "totalentered", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 36, "name": "totalpaid", "comment": null}, "totalretained": {"type": "INT64", "index": 37, "name": "totalretained", "comment": null}, "totalselected": {"type": "FLOAT64", "index": 38, "name": "totalselected", "comment": null}, "trx_entitydue": {"type": "FLOAT64", "index": 39, "name": "trx_entitydue", "comment": null}, "trx_totaldue": {"type": "FLOAT64", "index": 40, "name": "trx_totaldue", "comment": null}, "trx_totalentered": {"type": "FLOAT64", "index": 41, "name": "trx_totalentered", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 42, "name": "trx_totalpaid", "comment": null}, "trx_totalreleased": {"type": "INT64", "index": 43, "name": "trx_totalreleased", "comment": null}, "trx_totalretained": {"type": "INT64", "index": 44, "name": "trx_totalretained", "comment": null}, "trx_totalselected": {"type": "FLOAT64", "index": 45, "name": "trx_totalselected", "comment": null}, "vendorid": {"type": "STRING", "index": 46, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 47, "name": "vendorname", "comment": null}, "whencreated": {"type": "DATE", "index": 48, "name": "whencreated", "comment": null}, "whendiscount": {"type": "DATE", "index": 49, "name": "whendiscount", "comment": null}, "whendue": {"type": "DATE", "index": 50, "name": "whendue", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 51, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "DATE", "index": 52, "name": "whenpaid", "comment": null}, "whenposted": {"type": "DATE", "index": 53, "name": "whenposted", "comment": null}, "form_1099_box": {"type": "INT64", "index": 54, "name": "form_1099_box", "comment": null}, "megaentityname": {"type": "STRING", "index": 55, "name": "megaentityname", "comment": null}, "megaentitykey": {"type": "INT64", "index": 56, "name": "megaentitykey", "comment": null}, "form_1099_type": {"type": "STRING", "index": 57, "name": "form_1099_type", "comment": null}, "megaentityid": {"type": "STRING", "index": 58, "name": "megaentityid", "comment": null}, "billbacktemplate": {"type": "STRING", "index": 59, "name": "billbacktemplate", "comment": null}, "stampli_link": {"type": "STRING", "index": 60, "name": "stampli_link", "comment": null}, "description_2": {"type": "STRING", "index": 61, "name": "description_2", "comment": null}, "financialentity": {"type": "STRING", "index": 62, "name": "financialentity", "comment": null}, "createduserid": {"type": "STRING", "index": 63, "name": "createduserid", "comment": null}, "userid": {"type": "STRING", "index": 64, "name": "userid", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ap_bill_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_detail": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__gl_detail", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"gl_detail_id": {"type": "STRING", "index": 1, "name": "gl_detail_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "account_no": {"type": "STRING", "index": 3, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 4, "name": "account_title", "comment": null}, "amount": {"type": "FLOAT64", "index": 5, "name": "amount", "comment": null}, "batch_date": {"type": "DATE", "index": 6, "name": "batch_date", "comment": null}, "batch_no": {"type": "INT64", "index": 7, "name": "batch_no", "comment": null}, "batch_title": {"type": "STRING", "index": 8, "name": "batch_title", "comment": null}, "batch_key": {"type": "STRING", "index": 9, "name": "batch_key", "comment": null}, "book_id": {"type": "STRING", "index": 10, "name": "book_id", "comment": null}, "class_id": {"type": "STRING", "index": 11, "name": "class_id", "comment": null}, "class_name": {"type": "STRING", "index": 12, "name": "class_name", "comment": null}, "credit_amount": {"type": "FLOAT64", "index": 13, "name": "credit_amount", "comment": null}, "debit_amount": {"type": "FLOAT64", "index": 14, "name": "debit_amount", "comment": null}, "currency": {"type": "STRING", "index": 15, "name": "currency", "comment": null}, "customer_id": {"type": "STRING", "index": 16, "name": "customer_id", "comment": null}, "customer_name": {"type": "STRING", "index": 17, "name": "customer_name", "comment": null}, "department_id": {"type": "STRING", "index": 18, "name": "department_id", "comment": null}, "department_title": {"type": "STRING", "index": 19, "name": "department_title", "comment": null}, "description": {"type": "STRING", "index": 20, "name": "description", "comment": null}, "doc_number": {"type": "STRING", "index": 21, "name": "doc_number", "comment": null}, "entry_date_at": {"type": "DATE", "index": 22, "name": "entry_date_at", "comment": null}, "entry_state": {"type": "STRING", "index": 23, "name": "entry_state", "comment": null}, "entry_description": {"type": "STRING", "index": 24, "name": "entry_description", "comment": null}, "line_no": {"type": "INT64", "index": 25, "name": "line_no", "comment": null}, "location_id": {"type": "STRING", "index": 26, "name": "location_id", "comment": null}, "location_name": {"type": "STRING", "index": 27, "name": "location_name", "comment": null}, "pr_description": {"type": "STRING", "index": 28, "name": "pr_description", "comment": null}, "record_id": {"type": "STRING", "index": 29, "name": "record_id", "comment": null}, "record_type": {"type": "STRING", "index": 30, "name": "record_type", "comment": null}, "total_due": {"type": "FLOAT64", "index": 31, "name": "total_due", "comment": null}, "total_entered": {"type": "FLOAT64", "index": 32, "name": "total_entered", "comment": null}, "total_paid": {"type": "FLOAT64", "index": 33, "name": "total_paid", "comment": null}, "tr_type": {"type": "INT64", "index": 34, "name": "tr_type", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 35, "name": "trx_amount", "comment": null}, "trx_credit_amount": {"type": "FLOAT64", "index": 36, "name": "trx_credit_amount", "comment": null}, "trx_debit_amount": {"type": "FLOAT64", "index": 37, "name": "trx_debit_amount", "comment": null}, "vendor_id": {"type": "STRING", "index": 38, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "STRING", "index": 39, "name": "vendor_name", "comment": null}, "created_at": {"type": "DATE", "index": 40, "name": "created_at", "comment": null}, "due_at": {"type": "DATE", "index": 41, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 42, "name": "modified_at", "comment": null}, "paid_at": {"type": "DATE", "index": 43, "name": "paid_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4989960.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1985123109.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct_source.stg_sage_intacct__gl_detail"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_item_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_item_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"recordkey": {"type": "STRING", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "STRING", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "INT64", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "FLOAT64", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "STRING", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "STRING", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "INT64", "index": 9, "name": "baselocation", "comment": null}, "billable": {"type": "BOOL", "index": 10, "name": "billable", "comment": null}, "billed": {"type": "BOOL", "index": 11, "name": "billed", "comment": null}, "classdimkey": {"type": "INT64", "index": 12, "name": "classdimkey", "comment": null}, "classid": {"type": "STRING", "index": 13, "name": "classid", "comment": null}, "classname": {"type": "STRING", "index": 14, "name": "classname", "comment": null}, "createdby": {"type": "INT64", "index": 15, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 16, "name": "currency", "comment": null}, "customerdimkey": {"type": "INT64", "index": 17, "name": "customerdimkey", "comment": null}, "customerid": {"type": "STRING", "index": 18, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 19, "name": "customername", "comment": null}, "departmentid": {"type": "STRING", "index": 20, "name": "departmentid", "comment": null}, "departmentname": {"type": "STRING", "index": 21, "name": "departmentname", "comment": null}, "entry_date": {"type": "DATE", "index": 22, "name": "entry_date", "comment": null}, "entrydescription": {"type": "STRING", "index": 23, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "INT64", "index": 24, "name": "exchange_rate", "comment": null}, "form_1099": {"type": "STRING", "index": 25, "name": "form_1099", "comment": null}, "itemdimkey": {"type": "INT64", "index": 26, "name": "itemdimkey", "comment": null}, "itemid": {"type": "STRING", "index": 27, "name": "itemid", "comment": null}, "itemname": {"type": "STRING", "index": 28, "name": "itemname", "comment": null}, "line_no": {"type": "INT64", "index": 29, "name": "line_no", "comment": null}, "lineitem": {"type": "BOOL", "index": 30, "name": "lineitem", "comment": null}, "locationid": {"type": "STRING", "index": 31, "name": "locationid", "comment": null}, "locationname": {"type": "STRING", "index": 32, "name": "locationname", "comment": null}, "modifiedby": {"type": "INT64", "index": 33, "name": "modifiedby", "comment": null}, "offsetglaccountno": {"type": "INT64", "index": 34, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "STRING", "index": 35, "name": "offsetglaccounttitle", "comment": null}, "prentryoffsetaccountno": {"type": "INT64", "index": 36, "name": "prentryoffsetaccountno", "comment": null}, "recordtype": {"type": "STRING", "index": 37, "name": "recordtype", "comment": null}, "state": {"type": "STRING", "index": 38, "name": "state", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 39, "name": "totalpaid", "comment": null}, "totalselected": {"type": "FLOAT64", "index": 40, "name": "totalselected", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 41, "name": "trx_amount", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 42, "name": "trx_totalpaid", "comment": null}, "trx_totalselected": {"type": "FLOAT64", "index": 43, "name": "trx_totalselected", "comment": null}, "vendordimkey": {"type": "INT64", "index": 44, "name": "vendordimkey", "comment": null}, "vendorid": {"type": "STRING", "index": 45, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 46, "name": "vendorname", "comment": null}, "whencreated": {"type": "TIMESTAMP", "index": 47, "name": "whencreated", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 48, "name": "whenmodified", "comment": null}, "form_1099_box": {"type": "INT64", "index": 49, "name": "form_1099_box", "comment": null}, "form_1099_type": {"type": "STRING", "index": 50, "name": "form_1099_type", "comment": null}, "projectname": {"type": "STRING", "index": 51, "name": "projectname", "comment": null}, "projectdimkey": {"type": "INT64", "index": 52, "name": "projectdimkey", "comment": null}, "projectid": {"type": "STRING", "index": 53, "name": "projectid", "comment": null}, "partialexempt": {"type": "BOOL", "index": 54, "name": "partialexempt", "comment": null}, "expensify_receipt_url_vb": {"type": "INT64", "index": 55, "name": "expensify_receipt_url_vb", "comment": null}, "warehousedimkey": {"type": "INT64", "index": 56, "name": "warehousedimkey", "comment": null}, "warehouseid": {"type": "STRING", "index": 57, "name": "warehouseid", "comment": null}, "warehousename": {"type": "STRING", "index": 58, "name": "warehousename", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ap_bill_item_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_account": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__gl_account", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_no": {"type": "STRING", "index": 1, "name": "account_no", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_type": {"type": "STRING", "index": 4, "name": "account_type", "comment": null}, "alternative_account": {"type": "STRING", "index": 5, "name": "alternative_account", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "category_key": {"type": "INT64", "index": 7, "name": "category_key", "comment": null}, "close_to_acct_key": {"type": "INT64", "index": 8, "name": "close_to_acct_key", "comment": null}, "closing_account_no": {"type": "INT64", "index": 9, "name": "closing_account_no", "comment": null}, "closing_account_title": {"type": "STRING", "index": 10, "name": "closing_account_title", "comment": null}, "closing_type": {"type": "STRING", "index": 11, "name": "closing_type", "comment": null}, "created_by": {"type": "INT64", "index": 12, "name": "created_by", "comment": null}, "modified_by": {"type": "INT64", "index": 13, "name": "modified_by", "comment": null}, "normal_balance": {"type": "STRING", "index": 14, "name": "normal_balance", "comment": null}, "gl_account_id": {"type": "INT64", "index": 15, "name": "gl_account_id", "comment": null}, "status": {"type": "STRING", "index": 16, "name": "status", "comment": null}, "taxable": {"type": "BOOL", "index": 17, "name": "taxable", "comment": null}, "title": {"type": "STRING", "index": 18, "name": "title", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 19, "name": "created_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 20, "name": "modified_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 910.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 162413.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct_source.stg_sage_intacct__gl_account"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_item": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_item", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "STRING", "index": 1, "name": "bill_id", "comment": null}, "bill_item_id": {"type": "STRING", "index": 2, "name": "bill_item_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_key": {"type": "INT64", "index": 4, "name": "account_key", "comment": null}, "account_no": {"type": "FLOAT64", "index": 5, "name": "account_no", "comment": null}, "account_title": {"type": "STRING", "index": 6, "name": "account_title", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "base_curr": {"type": "STRING", "index": 8, "name": "base_curr", "comment": null}, "base_location": {"type": "INT64", "index": 9, "name": "base_location", "comment": null}, "billable": {"type": "BOOL", "index": 10, "name": "billable", "comment": null}, "billed": {"type": "BOOL", "index": 11, "name": "billed", "comment": null}, "class_id": {"type": "STRING", "index": 12, "name": "class_id", "comment": null}, "class_name": {"type": "STRING", "index": 13, "name": "class_name", "comment": null}, "created_by": {"type": "INT64", "index": 14, "name": "created_by", "comment": null}, "currency": {"type": "STRING", "index": 15, "name": "currency", "comment": null}, "customer_id": {"type": "STRING", "index": 16, "name": "customer_id", "comment": null}, "customer_name": {"type": "STRING", "index": 17, "name": "customer_name", "comment": null}, "department_id": {"type": "STRING", "index": 18, "name": "department_id", "comment": null}, "department_name": {"type": "STRING", "index": 19, "name": "department_name", "comment": null}, "entry_date_at": {"type": "DATE", "index": 20, "name": "entry_date_at", "comment": null}, "entry_description": {"type": "STRING", "index": 21, "name": "entry_description", "comment": null}, "exchange_rate": {"type": "INT64", "index": 22, "name": "exchange_rate", "comment": null}, "item_id": {"type": "STRING", "index": 23, "name": "item_id", "comment": null}, "item_name": {"type": "STRING", "index": 24, "name": "item_name", "comment": null}, "line_no": {"type": "INT64", "index": 25, "name": "line_no", "comment": null}, "line_item": {"type": "BOOL", "index": 26, "name": "line_item", "comment": null}, "location_id": {"type": "STRING", "index": 27, "name": "location_id", "comment": null}, "location_name": {"type": "STRING", "index": 28, "name": "location_name", "comment": null}, "offset_gl_account_no": {"type": "INT64", "index": 29, "name": "offset_gl_account_no", "comment": null}, "offset_gl_account_title": {"type": "STRING", "index": 30, "name": "offset_gl_account_title", "comment": null}, "record_type": {"type": "STRING", "index": 31, "name": "record_type", "comment": null}, "state": {"type": "STRING", "index": 32, "name": "state", "comment": null}, "total_item_paid": {"type": "FLOAT64", "index": 33, "name": "total_item_paid", "comment": null}, "total_selected": {"type": "FLOAT64", "index": 34, "name": "total_selected", "comment": null}, "vendor_id": {"type": "STRING", "index": 35, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "STRING", "index": 36, "name": "vendor_name", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 37, "name": "created_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 38, "name": "modified_at", "comment": null}, "project_name": {"type": "STRING", "index": 39, "name": "project_name", "comment": null}, "project_id": {"type": "STRING", "index": 40, "name": "project_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 231441.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 70573098.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct_source.stg_sage_intacct__ap_bill_item"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill": {"metadata": {"type": "table", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"bill_id": {"type": "STRING", "index": 1, "name": "bill_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "au_created_at": {"type": "TIMESTAMP", "index": 4, "name": "au_created_at", "comment": null}, "bill_to_pay_to_contact_name": {"type": "STRING", "index": 5, "name": "bill_to_pay_to_contact_name", "comment": null}, "bill_to_pay_to_key": {"type": "INT64", "index": 6, "name": "bill_to_pay_to_key", "comment": null}, "currency": {"type": "STRING", "index": 7, "name": "currency", "comment": null}, "description": {"type": "STRING", "index": 8, "name": "description", "comment": null}, "doc_number": {"type": "STRING", "index": 9, "name": "doc_number", "comment": null}, "due_in_days": {"type": "INT64", "index": 10, "name": "due_in_days", "comment": null}, "record_id": {"type": "STRING", "index": 11, "name": "record_id", "comment": null}, "record_type": {"type": "STRING", "index": 12, "name": "record_type", "comment": null}, "ship_to_return_to_contact_name": {"type": "STRING", "index": 13, "name": "ship_to_return_to_contact_name", "comment": null}, "ship_to_return_to_key": {"type": "INT64", "index": 14, "name": "ship_to_return_to_key", "comment": null}, "state": {"type": "STRING", "index": 15, "name": "state", "comment": null}, "total_due": {"type": "FLOAT64", "index": 16, "name": "total_due", "comment": null}, "total_entered": {"type": "FLOAT64", "index": 17, "name": "total_entered", "comment": null}, "total_paid": {"type": "FLOAT64", "index": 18, "name": "total_paid", "comment": null}, "vendor_id": {"type": "STRING", "index": 19, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "STRING", "index": 20, "name": "vendor_name", "comment": null}, "created_at": {"type": "DATE", "index": 21, "name": "created_at", "comment": null}, "due_at": {"type": "DATE", "index": 22, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 23, "name": "modified_at", "comment": null}, "paid_at": {"type": "DATE", "index": 24, "name": "paid_at", "comment": null}, "posted_at": {"type": "DATE", "index": 25, "name": "posted_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 168057.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 39565783.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.sage_intacct_source.stg_sage_intacct__ap_bill"}, "model.sage_intacct_source.stg_sage_intacct__gl_account_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__gl_account_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"accountno": {"type": "STRING", "index": 1, "name": "accountno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounttype": {"type": "STRING", "index": 4, "name": "accounttype", "comment": null}, "alternativeaccount": {"type": "STRING", "index": 5, "name": "alternativeaccount", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "categorykey": {"type": "INT64", "index": 7, "name": "categorykey", "comment": null}, "cf_verano_account_group": {"type": "STRING", "index": 8, "name": "cf_verano_account_group", "comment": null}, "closetoacctkey": {"type": "INT64", "index": 9, "name": "closetoacctkey", "comment": null}, "closingaccountno": {"type": "INT64", "index": 10, "name": "closingaccountno", "comment": null}, "closingaccounttitle": {"type": "STRING", "index": 11, "name": "closingaccounttitle", "comment": null}, "closingtype": {"type": "STRING", "index": 12, "name": "closingtype", "comment": null}, "createdby": {"type": "INT64", "index": 13, "name": "createdby", "comment": null}, "modifiedby": {"type": "INT64", "index": 14, "name": "modifiedby", "comment": null}, "normalbalance": {"type": "STRING", "index": 15, "name": "normalbalance", "comment": null}, "recordno": {"type": "INT64", "index": 16, "name": "recordno", "comment": null}, "requireclass": {"type": "BOOL", "index": 17, "name": "requireclass", "comment": null}, "requirecustomer": {"type": "BOOL", "index": 18, "name": "requirecustomer", "comment": null}, "requiredept": {"type": "BOOL", "index": 19, "name": "requiredept", "comment": null}, "requireemployee": {"type": "BOOL", "index": 20, "name": "requireemployee", "comment": null}, "requireitem": {"type": "BOOL", "index": 21, "name": "requireitem", "comment": null}, "requireloc": {"type": "BOOL", "index": 22, "name": "requireloc", "comment": null}, "requirevendor": {"type": "BOOL", "index": 23, "name": "requirevendor", "comment": null}, "requirewarehouse": {"type": "BOOL", "index": 24, "name": "requirewarehouse", "comment": null}, "status": {"type": "STRING", "index": 25, "name": "status", "comment": null}, "subledgercontrolon": {"type": "BOOL", "index": 26, "name": "subledgercontrolon", "comment": null}, "taxable": {"type": "BOOL", "index": 27, "name": "taxable", "comment": null}, "title": {"type": "STRING", "index": 28, "name": "title", "comment": null}, "whencreated": {"type": "TIMESTAMP", "index": 29, "name": "whencreated", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 30, "name": "whenmodified", "comment": null}, "cf_legacy_coa": {"type": "STRING", "index": 31, "name": "cf_legacy_coa", "comment": null}, "requireproject": {"type": "BOOL", "index": 32, "name": "requireproject", "comment": null}, "cf_legacy_mapping_notes": {"type": "STRING", "index": 33, "name": "cf_legacy_mapping_notes", "comment": null}, "cf_fs_group_5": {"type": "STRING", "index": 34, "name": "cf_fs_group_5", "comment": null}, "cf_fs_group_4": {"type": "STRING", "index": 35, "name": "cf_fs_group_4", "comment": null}, "cf_fs_group_3": {"type": "STRING", "index": 36, "name": "cf_fs_group_3", "comment": null}, "cf_fs_group_2": {"type": "STRING", "index": 37, "name": "cf_fs_group_2", "comment": null}, "cf_fs_group_1": {"type": "STRING", "index": 38, "name": "cf_fs_group_1", "comment": null}, "cf_category": {"type": "STRING", "index": 39, "name": "cf_category", "comment": null}, "cf_bs_group_1": {"type": "STRING", "index": 40, "name": "cf_bs_group_1", "comment": null}, "cf_bs_account_group": {"type": "STRING", "index": 41, "name": "cf_bs_account_group", "comment": null}, "cf_bs_account_name": {"type": "STRING", "index": 42, "name": "cf_bs_account_name", "comment": null}, "cf_account_group": {"type": "STRING", "index": 43, "name": "cf_account_group", "comment": null}, "cf_bs_order_summary": {"type": "INT64", "index": 44, "name": "cf_bs_order_summary", "comment": null}, "cf_is_order_detail": {"type": "INT64", "index": 45, "name": "cf_is_order_detail", "comment": null}, "cf_is_order_summary": {"type": "INT64", "index": 46, "name": "cf_is_order_summary", "comment": null}, "cf_bs_group_3": {"type": "STRING", "index": 47, "name": "cf_bs_group_3", "comment": null}, "cf_bs_group_2": {"type": "STRING", "index": 48, "name": "cf_bs_group_2", "comment": null}, "cf_bs_group_5": {"type": "STRING", "index": 49, "name": "cf_bs_group_5", "comment": null}, "cf_reporting_group_1": {"type": "STRING", "index": 50, "name": "cf_reporting_group_1", "comment": null}, "cf_bs_group_4": {"type": "STRING", "index": 51, "name": "cf_bs_group_4", "comment": null}, "cf_bs_order_detail": {"type": "INT64", "index": 52, "name": "cf_bs_order_detail", "comment": null}, "cf_bs_account_number": {"type": "INT64", "index": 53, "name": "cf_bs_account_number", "comment": null}, "cf_header_account": {"type": "BOOL", "index": 54, "name": "cf_header_account", "comment": null}, "testtext_area": {"type": "STRING", "index": 55, "name": "testtext_area", "comment": null}, "financial_reporting_segment": {"type": "STRING", "index": 56, "name": "financial_reporting_segment", "comment": null}, "cf_sap_gl": {"type": "STRING", "index": 57, "name": "cf_sap_gl", "comment": null}, "cf_sap_gl_mapping": {"type": "STRING", "index": 58, "name": "cf_sap_gl_mapping", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_account_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_detail_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_renee_sage_intacct_staging", "name": "stg_sage_intacct__gl_detail_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"recordno": {"type": "STRING", "index": 1, "name": "recordno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountno": {"type": "FLOAT64", "index": 4, "name": "accountno", "comment": null}, "accounttitle": {"type": "STRING", "index": 5, "name": "accounttitle", "comment": null}, "adj": {"type": "BOOL", "index": 6, "name": "adj", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "aucreatedby": {"type": "INT64", "index": 8, "name": "aucreatedby", "comment": null}, "auwhencreated": {"type": "TIMESTAMP", "index": 9, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "STRING", "index": 10, "name": "basecurr", "comment": null}, "batch_date": {"type": "DATE", "index": 11, "name": "batch_date", "comment": null}, "batch_no": {"type": "INT64", "index": 12, "name": "batch_no", "comment": null}, "batch_state": {"type": "STRING", "index": 13, "name": "batch_state", "comment": null}, "batch_title": {"type": "STRING", "index": 14, "name": "batch_title", "comment": null}, "batchkey": {"type": "STRING", "index": 15, "name": "batchkey", "comment": null}, "bookid": {"type": "STRING", "index": 16, "name": "bookid", "comment": null}, "classdimkey": {"type": "INT64", "index": 17, "name": "classdimkey", "comment": null}, "classid": {"type": "STRING", "index": 18, "name": "classid", "comment": null}, "classname": {"type": "STRING", "index": 19, "name": "classname", "comment": null}, "cleared": {"type": "STRING", "index": 20, "name": "cleared", "comment": null}, "clrdate": {"type": "DATE", "index": 21, "name": "clrdate", "comment": null}, "createdby": {"type": "STRING", "index": 22, "name": "createdby", "comment": null}, "creditamount": {"type": "FLOAT64", "index": 23, "name": "creditamount", "comment": null}, "currency": {"type": "STRING", "index": 24, "name": "currency", "comment": null}, "custentity": {"type": "STRING", "index": 25, "name": "custentity", "comment": null}, "customerdimkey": {"type": "INT64", "index": 26, "name": "customerdimkey", "comment": null}, "customerid": {"type": "STRING", "index": 27, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 28, "name": "customername", "comment": null}, "debitamount": {"type": "FLOAT64", "index": 29, "name": "debitamount", "comment": null}, "departmentid": {"type": "STRING", "index": 30, "name": "departmentid", "comment": null}, "departmenttitle": {"type": "STRING", "index": 31, "name": "departmenttitle", "comment": null}, "description": {"type": "STRING", "index": 32, "name": "description", "comment": null}, "docnumber": {"type": "STRING", "index": 33, "name": "docnumber", "comment": null}, "document": {"type": "STRING", "index": 34, "name": "document", "comment": null}, "employeedimkey": {"type": "INT64", "index": 35, "name": "employeedimkey", "comment": null}, "employeeid": {"type": "STRING", "index": 36, "name": "employeeid", "comment": null}, "employeename": {"type": "STRING", "index": 37, "name": "employeename", "comment": null}, "entry_date": {"type": "DATE", "index": 38, "name": "entry_date", "comment": null}, "entry_state": {"type": "STRING", "index": 39, "name": "entry_state", "comment": null}, "entrydescription": {"type": "STRING", "index": 40, "name": "entrydescription", "comment": null}, "financialentity": {"type": "STRING", "index": 41, "name": "financialentity", "comment": null}, "glentrykey": {"type": "INT64", "index": 42, "name": "glentrykey", "comment": null}, "itemdimkey": {"type": "INT64", "index": 43, "name": "itemdimkey", "comment": null}, "itemid": {"type": "STRING", "index": 44, "name": "itemid", "comment": null}, "itemname": {"type": "STRING", "index": 45, "name": "itemname", "comment": null}, "line_no": {"type": "INT64", "index": 46, "name": "line_no", "comment": null}, "locationid": {"type": "STRING", "index": 47, "name": "locationid", "comment": null}, "locationname": {"type": "STRING", "index": 48, "name": "locationname", "comment": null}, "modified": {"type": "TIMESTAMP", "index": 49, "name": "modified", "comment": null}, "modifiedby": {"type": "INT64", "index": 50, "name": "modifiedby", "comment": null}, "modulekey": {"type": "STRING", "index": 51, "name": "modulekey", "comment": null}, "ownershipkey": {"type": "INT64", "index": 52, "name": "ownershipkey", "comment": null}, "prcleared": {"type": "STRING", "index": 53, "name": "prcleared", "comment": null}, "prclrdate": {"type": "DATE", "index": 54, "name": "prclrdate", "comment": null}, "prdescription": {"type": "STRING", "index": 55, "name": "prdescription", "comment": null}, "recordid": {"type": "STRING", "index": 56, "name": "recordid", "comment": null}, "recordtype": {"type": "STRING", "index": 57, "name": "recordtype", "comment": null}, "referenceno": {"type": "STRING", "index": 58, "name": "referenceno", "comment": null}, "state": {"type": "STRING", "index": 59, "name": "state", "comment": null}, "statistical": {"type": "BOOL", "index": 60, "name": "statistical", "comment": null}, "symbol": {"type": "STRING", "index": 61, "name": "symbol", "comment": null}, "totaldue": {"type": "FLOAT64", "index": 62, "name": "totaldue", "comment": null}, "totalentered": {"type": "FLOAT64", "index": 63, "name": "totalentered", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 64, "name": "totalpaid", "comment": null}, "tr_type": {"type": "INT64", "index": 65, "name": "tr_type", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 66, "name": "trx_amount", "comment": null}, "trx_creditamount": {"type": "FLOAT64", "index": 67, "name": "trx_creditamount", "comment": null}, "trx_debitamount": {"type": "FLOAT64", "index": 68, "name": "trx_debitamount", "comment": null}, "vendentity": {"type": "STRING", "index": 69, "name": "vendentity", "comment": null}, "vendordimkey": {"type": "INT64", "index": 70, "name": "vendordimkey", "comment": null}, "vendorid": {"type": "STRING", "index": 71, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 72, "name": "vendorname", "comment": null}, "whencreated": {"type": "DATE", "index": 73, "name": "whencreated", "comment": null}, "whendue": {"type": "DATE", "index": 74, "name": "whendue", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 75, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "DATE", "index": 76, "name": "whenpaid", "comment": null}, "projectname": {"type": "STRING", "index": 77, "name": "projectname", "comment": null}, "projectdimkey": {"type": "INT64", "index": 78, "name": "projectdimkey", "comment": null}, "projectid": {"type": "STRING", "index": 79, "name": "projectid", "comment": null}, "warehousedimkey": {"type": "INT64", "index": 80, "name": "warehousedimkey", "comment": null}, "warehouseid": {"type": "STRING", "index": 81, "name": "warehouseid", "comment": null}, "warehousename": {"type": "STRING", "index": 82, "name": "warehousename", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_detail_tmp"}}, "sources": {"source.sage_intacct_source.sage_intacct.ar_invoice": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "ar_invoice", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"recordno": {"type": "STRING", "index": 1, "name": "recordno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "auwhencreated": {"type": "TIMESTAMP", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "STRING", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "STRING", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "INT64", "index": 7, "name": "billtopaytokey", "comment": null}, "cf_sales_type": {"type": "STRING", "index": 8, "name": "cf_sales_type", "comment": null}, "createdby": {"type": "INT64", "index": 9, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 10, "name": "currency", "comment": null}, "custemailoptin": {"type": "BOOL", "index": 11, "name": "custemailoptin", "comment": null}, "customerid": {"type": "STRING", "index": 12, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 13, "name": "customername", "comment": null}, "delivery_options": {"type": "STRING", "index": 14, "name": "delivery_options", "comment": null}, "description": {"type": "STRING", "index": 15, "name": "description", "comment": null}, "description_2": {"type": "STRING", "index": 16, "name": "description_2", "comment": null}, "docnumber": {"type": "STRING", "index": 17, "name": "docnumber", "comment": null}, "due_in_days": {"type": "INT64", "index": 18, "name": "due_in_days", "comment": null}, "haspostedrevrec": {"type": "BOOL", "index": 19, "name": "haspostedrevrec", "comment": null}, "megaentityid": {"type": "STRING", "index": 20, "name": "megaentityid", "comment": null}, "megaentitykey": {"type": "INT64", "index": 21, "name": "megaentitykey", "comment": null}, "megaentityname": {"type": "STRING", "index": 22, "name": "megaentityname", "comment": null}, "modifiedby": {"type": "INT64", "index": 23, "name": "modifiedby", "comment": null}, "modulekey": {"type": "STRING", "index": 24, "name": "modulekey", "comment": null}, "prbatch": {"type": "STRING", "index": 25, "name": "prbatch", "comment": null}, "prbatchkey": {"type": "INT64", "index": 26, "name": "prbatchkey", "comment": null}, "rawstate": {"type": "STRING", "index": 27, "name": "rawstate", "comment": null}, "recordid": {"type": "STRING", "index": 28, "name": "recordid", "comment": null}, "recordtype": {"type": "STRING", "index": 29, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "STRING", "index": 30, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "INT64", "index": 31, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "STRING", "index": 32, "name": "state", "comment": null}, "supdocid": {"type": "STRING", "index": 33, "name": "supdocid", "comment": null}, "systemgenerated": {"type": "BOOL", "index": 34, "name": "systemgenerated", "comment": null}, "termkey": {"type": "INT64", "index": 35, "name": "termkey", "comment": null}, "termname": {"type": "STRING", "index": 36, "name": "termname", "comment": null}, "termvalue": {"type": "STRING", "index": 37, "name": "termvalue", "comment": null}, "totaldue": {"type": "FLOAT64", "index": 38, "name": "totaldue", "comment": null}, "totalentered": {"type": "FLOAT64", "index": 39, "name": "totalentered", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 40, "name": "totalpaid", "comment": null}, "totalretained": {"type": "INT64", "index": 41, "name": "totalretained", "comment": null}, "totalselected": {"type": "INT64", "index": 42, "name": "totalselected", "comment": null}, "trx_entitydue": {"type": "FLOAT64", "index": 43, "name": "trx_entitydue", "comment": null}, "trx_totaldue": {"type": "FLOAT64", "index": 44, "name": "trx_totaldue", "comment": null}, "trx_totalentered": {"type": "FLOAT64", "index": 45, "name": "trx_totalentered", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 46, "name": "trx_totalpaid", "comment": null}, "trx_totalreleased": {"type": "INT64", "index": 47, "name": "trx_totalreleased", "comment": null}, "trx_totalretained": {"type": "INT64", "index": 48, "name": "trx_totalretained", "comment": null}, "trx_totalselected": {"type": "INT64", "index": 49, "name": "trx_totalselected", "comment": null}, "whencreated": {"type": "DATE", "index": 50, "name": "whencreated", "comment": null}, "whendiscount": {"type": "DATE", "index": 51, "name": "whendiscount", "comment": null}, "whendue": {"type": "DATE", "index": 52, "name": "whendue", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 53, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "DATE", "index": 54, "name": "whenpaid", "comment": null}, "whenposted": {"type": "DATE", "index": 55, "name": "whenposted", "comment": null}, "shipto_mailaddress_address_1": {"type": "STRING", "index": 56, "name": "shipto_mailaddress_address_1", "comment": null}, "shipto_mailaddress_address_2": {"type": "STRING", "index": 57, "name": "shipto_mailaddress_address_2", "comment": null}, "contact_mailaddress_country": {"type": "STRING", "index": 58, "name": "contact_mailaddress_country", "comment": null}, "contact_fax": {"type": "STRING", "index": 59, "name": "contact_fax", "comment": null}, "shipto_fax": {"type": "STRING", "index": 60, "name": "shipto_fax", "comment": null}, "contact_visible": {"type": "BOOL", "index": 61, "name": "contact_visible", "comment": null}, "billto_companyname": {"type": "STRING", "index": 62, "name": "billto_companyname", "comment": null}, "shipto_printas": {"type": "STRING", "index": 63, "name": "shipto_printas", "comment": null}, "shipto_mailaddress_zip": {"type": "STRING", "index": 64, "name": "shipto_mailaddress_zip", "comment": null}, "billto_email_2": {"type": "STRING", "index": 65, "name": "billto_email_2", "comment": null}, "billto_email_1": {"type": "STRING", "index": 66, "name": "billto_email_1", "comment": null}, "billto_cellphone": {"type": "STRING", "index": 67, "name": "billto_cellphone", "comment": null}, "billto_fax": {"type": "STRING", "index": 68, "name": "billto_fax", "comment": null}, "contact_printas": {"type": "STRING", "index": 69, "name": "contact_printas", "comment": null}, "billto_mailaddress_city": {"type": "STRING", "index": 70, "name": "billto_mailaddress_city", "comment": null}, "billto_phone_1": {"type": "STRING", "index": 71, "name": "billto_phone_1", "comment": null}, "shipto_contactname": {"type": "STRING", "index": 72, "name": "shipto_contactname", "comment": null}, "shipto_cellphone": {"type": "STRING", "index": 73, "name": "shipto_cellphone", "comment": null}, "shipto_url_1": {"type": "STRING", "index": 74, "name": "shipto_url_1", "comment": null}, "contact_mailaddress_city": {"type": "STRING", "index": 75, "name": "contact_mailaddress_city", "comment": null}, "contact_mailaddress_address_1": {"type": "STRING", "index": 76, "name": "contact_mailaddress_address_1", "comment": null}, "billto_mailaddress_state": {"type": "STRING", "index": 77, "name": "billto_mailaddress_state", "comment": null}, "billto_mailaddress_countrycode": {"type": "STRING", "index": 78, "name": "billto_mailaddress_countrycode", "comment": null}, "contact_mailaddress_address_2": {"type": "STRING", "index": 79, "name": "contact_mailaddress_address_2", "comment": null}, "contact_companyname": {"type": "STRING", "index": 80, "name": "contact_companyname", "comment": null}, "shipto_mailaddress_countrycode": {"type": "STRING", "index": 81, "name": "shipto_mailaddress_countrycode", "comment": null}, "shipto_mailaddress_state": {"type": "STRING", "index": 82, "name": "shipto_mailaddress_state", "comment": null}, "billto_mailaddress_zip": {"type": "STRING", "index": 83, "name": "billto_mailaddress_zip", "comment": null}, "contact_mailaddress_state": {"type": "STRING", "index": 84, "name": "contact_mailaddress_state", "comment": null}, "contact_mailaddress_countrycode": {"type": "STRING", "index": 85, "name": "contact_mailaddress_countrycode", "comment": null}, "shipto_mailaddress_city": {"type": "STRING", "index": 86, "name": "shipto_mailaddress_city", "comment": null}, "shipto_phone_1": {"type": "STRING", "index": 87, "name": "shipto_phone_1", "comment": null}, "contact_url_1": {"type": "STRING", "index": 88, "name": "contact_url_1", "comment": null}, "shipto_companyname": {"type": "STRING", "index": 89, "name": "shipto_companyname", "comment": null}, "contact_email_1": {"type": "STRING", "index": 90, "name": "contact_email_1", "comment": null}, "billto_url_1": {"type": "STRING", "index": 91, "name": "billto_url_1", "comment": null}, "contact_contactname": {"type": "STRING", "index": 92, "name": "contact_contactname", "comment": null}, "shipto_mailaddress_country": {"type": "STRING", "index": 93, "name": "shipto_mailaddress_country", "comment": null}, "contact_cellphone": {"type": "STRING", "index": 94, "name": "contact_cellphone", "comment": null}, "shipto_email_1": {"type": "STRING", "index": 95, "name": "shipto_email_1", "comment": null}, "shipto_email_2": {"type": "STRING", "index": 96, "name": "shipto_email_2", "comment": null}, "billto_printas": {"type": "STRING", "index": 97, "name": "billto_printas", "comment": null}, "billto_mailaddress_address_2": {"type": "STRING", "index": 98, "name": "billto_mailaddress_address_2", "comment": null}, "billto_mailaddress_country": {"type": "STRING", "index": 99, "name": "billto_mailaddress_country", "comment": null}, "contact_phone_1": {"type": "STRING", "index": 100, "name": "contact_phone_1", "comment": null}, "shipto_visible": {"type": "BOOL", "index": 101, "name": "shipto_visible", "comment": null}, "billto_contactname": {"type": "STRING", "index": 102, "name": "billto_contactname", "comment": null}, "contact_mailaddress_zip": {"type": "STRING", "index": 103, "name": "contact_mailaddress_zip", "comment": null}, "contact_email_2": {"type": "STRING", "index": 104, "name": "contact_email_2", "comment": null}, "billto_mailaddress_address_1": {"type": "STRING", "index": 105, "name": "billto_mailaddress_address_1", "comment": null}, "contact_lastname": {"type": "STRING", "index": 106, "name": "contact_lastname", "comment": null}, "shipto_lastname": {"type": "STRING", "index": 107, "name": "shipto_lastname", "comment": null}, "shipto_firstname": {"type": "STRING", "index": 108, "name": "shipto_firstname", "comment": null}, "billto_lastname": {"type": "STRING", "index": 109, "name": "billto_lastname", "comment": null}, "contact_firstname": {"type": "STRING", "index": 110, "name": "contact_firstname", "comment": null}, "billto_firstname": {"type": "STRING", "index": 111, "name": "billto_firstname", "comment": null}, "billbacktemplatekey": {"type": "INT64", "index": 112, "name": "billbacktemplatekey", "comment": null}, "contact_prefix": {"type": "STRING", "index": 113, "name": "contact_prefix", "comment": null}, "billto_prefix": {"type": "STRING", "index": 114, "name": "billto_prefix", "comment": null}, "billto_initial": {"type": "STRING", "index": 115, "name": "billto_initial", "comment": null}, "contact_initial": {"type": "STRING", "index": 116, "name": "contact_initial", "comment": null}, "shipto_initial": {"type": "STRING", "index": 117, "name": "shipto_initial", "comment": null}, "schopkey": {"type": "INT64", "index": 118, "name": "schopkey", "comment": null}, "contact_pager": {"type": "STRING", "index": 119, "name": "contact_pager", "comment": null}, "dunningcount": {"type": "INT64", "index": 120, "name": "dunningcount", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 49176.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 55965027.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ar_invoice"}, "source.sage_intacct_source.sage_intacct.ap_bill": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "ap_bill", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"recordno": {"type": "STRING", "index": 1, "name": "recordno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "auwhencreated": {"type": "TIMESTAMP", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "STRING", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "STRING", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "INT64", "index": 7, "name": "billtopaytokey", "comment": null}, "createdby": {"type": "INT64", "index": 8, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 9, "name": "currency", "comment": null}, "description": {"type": "STRING", "index": 10, "name": "description", "comment": null}, "docnumber": {"type": "STRING", "index": 11, "name": "docnumber", "comment": null}, "due_in_days": {"type": "INT64", "index": 12, "name": "due_in_days", "comment": null}, "expensify_memo_vb": {"type": "STRING", "index": 13, "name": "expensify_memo_vb", "comment": null}, "inclusivetax": {"type": "BOOL", "index": 14, "name": "inclusivetax", "comment": null}, "modifiedby": {"type": "INT64", "index": 15, "name": "modifiedby", "comment": null}, "modulekey": {"type": "STRING", "index": 16, "name": "modulekey", "comment": null}, "onhold": {"type": "BOOL", "index": 17, "name": "onhold", "comment": null}, "paymentpriority": {"type": "STRING", "index": 18, "name": "paymentpriority", "comment": null}, "prbatch": {"type": "STRING", "index": 19, "name": "prbatch", "comment": null}, "prbatchkey": {"type": "INT64", "index": 20, "name": "prbatchkey", "comment": null}, "rawstate": {"type": "STRING", "index": 21, "name": "rawstate", "comment": null}, "recordid": {"type": "STRING", "index": 22, "name": "recordid", "comment": null}, "recordtype": {"type": "STRING", "index": 23, "name": "recordtype", "comment": null}, "recpaymentdate": {"type": "DATE", "index": 24, "name": "recpaymentdate", "comment": null}, "schopkey": {"type": "INT64", "index": 25, "name": "schopkey", "comment": null}, "shiptoreturntocontactname": {"type": "STRING", "index": 26, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "INT64", "index": 27, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "STRING", "index": 28, "name": "state", "comment": null}, "supdocid": {"type": "STRING", "index": 29, "name": "supdocid", "comment": null}, "systemgenerated": {"type": "BOOL", "index": 30, "name": "systemgenerated", "comment": null}, "termkey": {"type": "INT64", "index": 31, "name": "termkey", "comment": null}, "termname": {"type": "STRING", "index": 32, "name": "termname", "comment": null}, "termvalue": {"type": "STRING", "index": 33, "name": "termvalue", "comment": null}, "totaldue": {"type": "FLOAT64", "index": 34, "name": "totaldue", "comment": null}, "totalentered": {"type": "FLOAT64", "index": 35, "name": "totalentered", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 36, "name": "totalpaid", "comment": null}, "totalretained": {"type": "INT64", "index": 37, "name": "totalretained", "comment": null}, "totalselected": {"type": "FLOAT64", "index": 38, "name": "totalselected", "comment": null}, "trx_entitydue": {"type": "FLOAT64", "index": 39, "name": "trx_entitydue", "comment": null}, "trx_totaldue": {"type": "FLOAT64", "index": 40, "name": "trx_totaldue", "comment": null}, "trx_totalentered": {"type": "FLOAT64", "index": 41, "name": "trx_totalentered", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 42, "name": "trx_totalpaid", "comment": null}, "trx_totalreleased": {"type": "INT64", "index": 43, "name": "trx_totalreleased", "comment": null}, "trx_totalretained": {"type": "INT64", "index": 44, "name": "trx_totalretained", "comment": null}, "trx_totalselected": {"type": "FLOAT64", "index": 45, "name": "trx_totalselected", "comment": null}, "vendorid": {"type": "STRING", "index": 46, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 47, "name": "vendorname", "comment": null}, "whencreated": {"type": "DATE", "index": 48, "name": "whencreated", "comment": null}, "whendiscount": {"type": "DATE", "index": 49, "name": "whendiscount", "comment": null}, "whendue": {"type": "DATE", "index": 50, "name": "whendue", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 51, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "DATE", "index": 52, "name": "whenpaid", "comment": null}, "whenposted": {"type": "DATE", "index": 53, "name": "whenposted", "comment": null}, "form_1099_box": {"type": "INT64", "index": 54, "name": "form_1099_box", "comment": null}, "megaentityname": {"type": "STRING", "index": 55, "name": "megaentityname", "comment": null}, "megaentitykey": {"type": "INT64", "index": 56, "name": "megaentitykey", "comment": null}, "form_1099_type": {"type": "STRING", "index": 57, "name": "form_1099_type", "comment": null}, "megaentityid": {"type": "STRING", "index": 58, "name": "megaentityid", "comment": null}, "billbacktemplate": {"type": "STRING", "index": 59, "name": "billbacktemplate", "comment": null}, "stampli_link": {"type": "STRING", "index": 60, "name": "stampli_link", "comment": null}, "description_2": {"type": "STRING", "index": 61, "name": "description_2", "comment": null}, "financialentity": {"type": "STRING", "index": 62, "name": "financialentity", "comment": null}, "createduserid": {"type": "STRING", "index": 63, "name": "createduserid", "comment": null}, "userid": {"type": "STRING", "index": 64, "name": "userid", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 170043.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 85916002.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ap_bill"}, "source.sage_intacct_source.sage_intacct.ap_bill_item": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "ap_bill_item", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"recordkey": {"type": "STRING", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "STRING", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "INT64", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "FLOAT64", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "STRING", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "STRING", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "INT64", "index": 9, "name": "baselocation", "comment": null}, "billable": {"type": "BOOL", "index": 10, "name": "billable", "comment": null}, "billed": {"type": "BOOL", "index": 11, "name": "billed", "comment": null}, "classdimkey": {"type": "INT64", "index": 12, "name": "classdimkey", "comment": null}, "classid": {"type": "STRING", "index": 13, "name": "classid", "comment": null}, "classname": {"type": "STRING", "index": 14, "name": "classname", "comment": null}, "createdby": {"type": "INT64", "index": 15, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 16, "name": "currency", "comment": null}, "customerdimkey": {"type": "INT64", "index": 17, "name": "customerdimkey", "comment": null}, "customerid": {"type": "STRING", "index": 18, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 19, "name": "customername", "comment": null}, "departmentid": {"type": "STRING", "index": 20, "name": "departmentid", "comment": null}, "departmentname": {"type": "STRING", "index": 21, "name": "departmentname", "comment": null}, "entry_date": {"type": "DATE", "index": 22, "name": "entry_date", "comment": null}, "entrydescription": {"type": "STRING", "index": 23, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "INT64", "index": 24, "name": "exchange_rate", "comment": null}, "form_1099": {"type": "STRING", "index": 25, "name": "form_1099", "comment": null}, "itemdimkey": {"type": "INT64", "index": 26, "name": "itemdimkey", "comment": null}, "itemid": {"type": "STRING", "index": 27, "name": "itemid", "comment": null}, "itemname": {"type": "STRING", "index": 28, "name": "itemname", "comment": null}, "line_no": {"type": "INT64", "index": 29, "name": "line_no", "comment": null}, "lineitem": {"type": "BOOL", "index": 30, "name": "lineitem", "comment": null}, "locationid": {"type": "STRING", "index": 31, "name": "locationid", "comment": null}, "locationname": {"type": "STRING", "index": 32, "name": "locationname", "comment": null}, "modifiedby": {"type": "INT64", "index": 33, "name": "modifiedby", "comment": null}, "offsetglaccountno": {"type": "INT64", "index": 34, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "STRING", "index": 35, "name": "offsetglaccounttitle", "comment": null}, "prentryoffsetaccountno": {"type": "INT64", "index": 36, "name": "prentryoffsetaccountno", "comment": null}, "recordtype": {"type": "STRING", "index": 37, "name": "recordtype", "comment": null}, "state": {"type": "STRING", "index": 38, "name": "state", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 39, "name": "totalpaid", "comment": null}, "totalselected": {"type": "FLOAT64", "index": 40, "name": "totalselected", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 41, "name": "trx_amount", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 42, "name": "trx_totalpaid", "comment": null}, "trx_totalselected": {"type": "FLOAT64", "index": 43, "name": "trx_totalselected", "comment": null}, "vendordimkey": {"type": "INT64", "index": 44, "name": "vendordimkey", "comment": null}, "vendorid": {"type": "STRING", "index": 45, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 46, "name": "vendorname", "comment": null}, "whencreated": {"type": "TIMESTAMP", "index": 47, "name": "whencreated", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 48, "name": "whenmodified", "comment": null}, "form_1099_box": {"type": "INT64", "index": 49, "name": "form_1099_box", "comment": null}, "form_1099_type": {"type": "STRING", "index": 50, "name": "form_1099_type", "comment": null}, "projectname": {"type": "STRING", "index": 51, "name": "projectname", "comment": null}, "projectdimkey": {"type": "INT64", "index": 52, "name": "projectdimkey", "comment": null}, "projectid": {"type": "STRING", "index": 53, "name": "projectid", "comment": null}, "partialexempt": {"type": "BOOL", "index": 54, "name": "partialexempt", "comment": null}, "expensify_receipt_url_vb": {"type": "INT64", "index": 55, "name": "expensify_receipt_url_vb", "comment": null}, "warehousedimkey": {"type": "INT64", "index": 56, "name": "warehousedimkey", "comment": null}, "warehouseid": {"type": "STRING", "index": 57, "name": "warehouseid", "comment": null}, "warehousename": {"type": "STRING", "index": 58, "name": "warehousename", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 231441.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 85575228.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ap_bill_item"}, "source.sage_intacct_source.sage_intacct.gl_account": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "gl_account", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"accountno": {"type": "STRING", "index": 1, "name": "accountno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounttype": {"type": "STRING", "index": 4, "name": "accounttype", "comment": null}, "alternativeaccount": {"type": "STRING", "index": 5, "name": "alternativeaccount", "comment": null}, "category": {"type": "STRING", "index": 6, "name": "category", "comment": null}, "categorykey": {"type": "INT64", "index": 7, "name": "categorykey", "comment": null}, "cf_verano_account_group": {"type": "STRING", "index": 8, "name": "cf_verano_account_group", "comment": null}, "closetoacctkey": {"type": "INT64", "index": 9, "name": "closetoacctkey", "comment": null}, "closingaccountno": {"type": "INT64", "index": 10, "name": "closingaccountno", "comment": null}, "closingaccounttitle": {"type": "STRING", "index": 11, "name": "closingaccounttitle", "comment": null}, "closingtype": {"type": "STRING", "index": 12, "name": "closingtype", "comment": null}, "createdby": {"type": "INT64", "index": 13, "name": "createdby", "comment": null}, "modifiedby": {"type": "INT64", "index": 14, "name": "modifiedby", "comment": null}, "normalbalance": {"type": "STRING", "index": 15, "name": "normalbalance", "comment": null}, "recordno": {"type": "INT64", "index": 16, "name": "recordno", "comment": null}, "requireclass": {"type": "BOOL", "index": 17, "name": "requireclass", "comment": null}, "requirecustomer": {"type": "BOOL", "index": 18, "name": "requirecustomer", "comment": null}, "requiredept": {"type": "BOOL", "index": 19, "name": "requiredept", "comment": null}, "requireemployee": {"type": "BOOL", "index": 20, "name": "requireemployee", "comment": null}, "requireitem": {"type": "BOOL", "index": 21, "name": "requireitem", "comment": null}, "requireloc": {"type": "BOOL", "index": 22, "name": "requireloc", "comment": null}, "requirevendor": {"type": "BOOL", "index": 23, "name": "requirevendor", "comment": null}, "requirewarehouse": {"type": "BOOL", "index": 24, "name": "requirewarehouse", "comment": null}, "status": {"type": "STRING", "index": 25, "name": "status", "comment": null}, "subledgercontrolon": {"type": "BOOL", "index": 26, "name": "subledgercontrolon", "comment": null}, "taxable": {"type": "BOOL", "index": 27, "name": "taxable", "comment": null}, "title": {"type": "STRING", "index": 28, "name": "title", "comment": null}, "whencreated": {"type": "TIMESTAMP", "index": 29, "name": "whencreated", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 30, "name": "whenmodified", "comment": null}, "cf_legacy_coa": {"type": "STRING", "index": 31, "name": "cf_legacy_coa", "comment": null}, "requireproject": {"type": "BOOL", "index": 32, "name": "requireproject", "comment": null}, "cf_legacy_mapping_notes": {"type": "STRING", "index": 33, "name": "cf_legacy_mapping_notes", "comment": null}, "cf_fs_group_5": {"type": "STRING", "index": 34, "name": "cf_fs_group_5", "comment": null}, "cf_fs_group_4": {"type": "STRING", "index": 35, "name": "cf_fs_group_4", "comment": null}, "cf_fs_group_3": {"type": "STRING", "index": 36, "name": "cf_fs_group_3", "comment": null}, "cf_fs_group_2": {"type": "STRING", "index": 37, "name": "cf_fs_group_2", "comment": null}, "cf_fs_group_1": {"type": "STRING", "index": 38, "name": "cf_fs_group_1", "comment": null}, "cf_category": {"type": "STRING", "index": 39, "name": "cf_category", "comment": null}, "cf_bs_group_1": {"type": "STRING", "index": 40, "name": "cf_bs_group_1", "comment": null}, "cf_bs_account_group": {"type": "STRING", "index": 41, "name": "cf_bs_account_group", "comment": null}, "cf_bs_account_name": {"type": "STRING", "index": 42, "name": "cf_bs_account_name", "comment": null}, "cf_account_group": {"type": "STRING", "index": 43, "name": "cf_account_group", "comment": null}, "cf_bs_order_summary": {"type": "INT64", "index": 44, "name": "cf_bs_order_summary", "comment": null}, "cf_is_order_detail": {"type": "INT64", "index": 45, "name": "cf_is_order_detail", "comment": null}, "cf_is_order_summary": {"type": "INT64", "index": 46, "name": "cf_is_order_summary", "comment": null}, "cf_bs_group_3": {"type": "STRING", "index": 47, "name": "cf_bs_group_3", "comment": null}, "cf_bs_group_2": {"type": "STRING", "index": 48, "name": "cf_bs_group_2", "comment": null}, "cf_bs_group_5": {"type": "STRING", "index": 49, "name": "cf_bs_group_5", "comment": null}, "cf_reporting_group_1": {"type": "STRING", "index": 50, "name": "cf_reporting_group_1", "comment": null}, "cf_bs_group_4": {"type": "STRING", "index": 51, "name": "cf_bs_group_4", "comment": null}, "cf_bs_order_detail": {"type": "INT64", "index": 52, "name": "cf_bs_order_detail", "comment": null}, "cf_bs_account_number": {"type": "INT64", "index": 53, "name": "cf_bs_account_number", "comment": null}, "cf_header_account": {"type": "BOOL", "index": 54, "name": "cf_header_account", "comment": null}, "testtext_area": {"type": "STRING", "index": 55, "name": "testtext_area", "comment": null}, "financial_reporting_segment": {"type": "STRING", "index": 56, "name": "financial_reporting_segment", "comment": null}, "cf_sap_gl": {"type": "STRING", "index": 57, "name": "cf_sap_gl", "comment": null}, "cf_sap_gl_mapping": {"type": "STRING", "index": 58, "name": "cf_sap_gl_mapping", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 910.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 213441.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.gl_account"}, "source.sage_intacct_source.sage_intacct.gl_detail": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "gl_detail", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"recordno": {"type": "STRING", "index": 1, "name": "recordno", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountno": {"type": "FLOAT64", "index": 4, "name": "accountno", "comment": null}, "accounttitle": {"type": "STRING", "index": 5, "name": "accounttitle", "comment": null}, "adj": {"type": "BOOL", "index": 6, "name": "adj", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "aucreatedby": {"type": "INT64", "index": 8, "name": "aucreatedby", "comment": null}, "auwhencreated": {"type": "TIMESTAMP", "index": 9, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "STRING", "index": 10, "name": "basecurr", "comment": null}, "batch_date": {"type": "DATE", "index": 11, "name": "batch_date", "comment": null}, "batch_no": {"type": "INT64", "index": 12, "name": "batch_no", "comment": null}, "batch_state": {"type": "STRING", "index": 13, "name": "batch_state", "comment": null}, "batch_title": {"type": "STRING", "index": 14, "name": "batch_title", "comment": null}, "batchkey": {"type": "STRING", "index": 15, "name": "batchkey", "comment": null}, "bookid": {"type": "STRING", "index": 16, "name": "bookid", "comment": null}, "classdimkey": {"type": "INT64", "index": 17, "name": "classdimkey", "comment": null}, "classid": {"type": "STRING", "index": 18, "name": "classid", "comment": null}, "classname": {"type": "STRING", "index": 19, "name": "classname", "comment": null}, "cleared": {"type": "STRING", "index": 20, "name": "cleared", "comment": null}, "clrdate": {"type": "DATE", "index": 21, "name": "clrdate", "comment": null}, "createdby": {"type": "STRING", "index": 22, "name": "createdby", "comment": null}, "creditamount": {"type": "FLOAT64", "index": 23, "name": "creditamount", "comment": null}, "currency": {"type": "STRING", "index": 24, "name": "currency", "comment": null}, "custentity": {"type": "STRING", "index": 25, "name": "custentity", "comment": null}, "customerdimkey": {"type": "INT64", "index": 26, "name": "customerdimkey", "comment": null}, "customerid": {"type": "STRING", "index": 27, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 28, "name": "customername", "comment": null}, "debitamount": {"type": "FLOAT64", "index": 29, "name": "debitamount", "comment": null}, "departmentid": {"type": "STRING", "index": 30, "name": "departmentid", "comment": null}, "departmenttitle": {"type": "STRING", "index": 31, "name": "departmenttitle", "comment": null}, "description": {"type": "STRING", "index": 32, "name": "description", "comment": null}, "docnumber": {"type": "STRING", "index": 33, "name": "docnumber", "comment": null}, "document": {"type": "STRING", "index": 34, "name": "document", "comment": null}, "employeedimkey": {"type": "INT64", "index": 35, "name": "employeedimkey", "comment": null}, "employeeid": {"type": "STRING", "index": 36, "name": "employeeid", "comment": null}, "employeename": {"type": "STRING", "index": 37, "name": "employeename", "comment": null}, "entry_date": {"type": "DATE", "index": 38, "name": "entry_date", "comment": null}, "entry_state": {"type": "STRING", "index": 39, "name": "entry_state", "comment": null}, "entrydescription": {"type": "STRING", "index": 40, "name": "entrydescription", "comment": null}, "financialentity": {"type": "STRING", "index": 41, "name": "financialentity", "comment": null}, "glentrykey": {"type": "INT64", "index": 42, "name": "glentrykey", "comment": null}, "itemdimkey": {"type": "INT64", "index": 43, "name": "itemdimkey", "comment": null}, "itemid": {"type": "STRING", "index": 44, "name": "itemid", "comment": null}, "itemname": {"type": "STRING", "index": 45, "name": "itemname", "comment": null}, "line_no": {"type": "INT64", "index": 46, "name": "line_no", "comment": null}, "locationid": {"type": "STRING", "index": 47, "name": "locationid", "comment": null}, "locationname": {"type": "STRING", "index": 48, "name": "locationname", "comment": null}, "modified": {"type": "TIMESTAMP", "index": 49, "name": "modified", "comment": null}, "modifiedby": {"type": "INT64", "index": 50, "name": "modifiedby", "comment": null}, "modulekey": {"type": "STRING", "index": 51, "name": "modulekey", "comment": null}, "ownershipkey": {"type": "INT64", "index": 52, "name": "ownershipkey", "comment": null}, "prcleared": {"type": "STRING", "index": 53, "name": "prcleared", "comment": null}, "prclrdate": {"type": "DATE", "index": 54, "name": "prclrdate", "comment": null}, "prdescription": {"type": "STRING", "index": 55, "name": "prdescription", "comment": null}, "recordid": {"type": "STRING", "index": 56, "name": "recordid", "comment": null}, "recordtype": {"type": "STRING", "index": 57, "name": "recordtype", "comment": null}, "referenceno": {"type": "STRING", "index": 58, "name": "referenceno", "comment": null}, "state": {"type": "STRING", "index": 59, "name": "state", "comment": null}, "statistical": {"type": "BOOL", "index": 60, "name": "statistical", "comment": null}, "symbol": {"type": "STRING", "index": 61, "name": "symbol", "comment": null}, "totaldue": {"type": "FLOAT64", "index": 62, "name": "totaldue", "comment": null}, "totalentered": {"type": "FLOAT64", "index": 63, "name": "totalentered", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 64, "name": "totalpaid", "comment": null}, "tr_type": {"type": "INT64", "index": 65, "name": "tr_type", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 66, "name": "trx_amount", "comment": null}, "trx_creditamount": {"type": "FLOAT64", "index": 67, "name": "trx_creditamount", "comment": null}, "trx_debitamount": {"type": "FLOAT64", "index": 68, "name": "trx_debitamount", "comment": null}, "vendentity": {"type": "STRING", "index": 69, "name": "vendentity", "comment": null}, "vendordimkey": {"type": "INT64", "index": 70, "name": "vendordimkey", "comment": null}, "vendorid": {"type": "STRING", "index": 71, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 72, "name": "vendorname", "comment": null}, "whencreated": {"type": "DATE", "index": 73, "name": "whencreated", "comment": null}, "whendue": {"type": "DATE", "index": 74, "name": "whendue", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 75, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "DATE", "index": 76, "name": "whenpaid", "comment": null}, "projectname": {"type": "STRING", "index": 77, "name": "projectname", "comment": null}, "projectdimkey": {"type": "INT64", "index": 78, "name": "projectdimkey", "comment": null}, "projectid": {"type": "STRING", "index": 79, "name": "projectid", "comment": null}, "warehousedimkey": {"type": "INT64", "index": 80, "name": "warehousedimkey", "comment": null}, "warehouseid": {"type": "STRING", "index": 81, "name": "warehouseid", "comment": null}, "warehousename": {"type": "STRING", "index": 82, "name": "warehousename", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4989960.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2833904007.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.gl_detail"}, "source.sage_intacct_source.sage_intacct.ar_invoice_item": {"metadata": {"type": "table", "schema": "sage_intacct", "name": "ar_invoice_item", "database": "lustrous-optics-283619", "comment": null, "owner": null}, "columns": {"recordkey": {"type": "STRING", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "STRING", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "INT64", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "INT64", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "STRING", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "FLOAT64", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "STRING", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "INT64", "index": 9, "name": "baselocation", "comment": null}, "classdimkey": {"type": "INT64", "index": 10, "name": "classdimkey", "comment": null}, "classid": {"type": "STRING", "index": 11, "name": "classid", "comment": null}, "classname": {"type": "STRING", "index": 12, "name": "classname", "comment": null}, "createdby": {"type": "INT64", "index": 13, "name": "createdby", "comment": null}, "currency": {"type": "STRING", "index": 14, "name": "currency", "comment": null}, "customerdimkey": {"type": "INT64", "index": 15, "name": "customerdimkey", "comment": null}, "customerid": {"type": "STRING", "index": 16, "name": "customerid", "comment": null}, "customername": {"type": "STRING", "index": 17, "name": "customername", "comment": null}, "departmentid": {"type": "STRING", "index": 18, "name": "departmentid", "comment": null}, "departmentname": {"type": "STRING", "index": 19, "name": "departmentname", "comment": null}, "employeedimkey": {"type": "INT64", "index": 20, "name": "employeedimkey", "comment": null}, "employeeid": {"type": "STRING", "index": 21, "name": "employeeid", "comment": null}, "employeename": {"type": "STRING", "index": 22, "name": "employeename", "comment": null}, "entry_date": {"type": "DATE", "index": 23, "name": "entry_date", "comment": null}, "entrydescription": {"type": "STRING", "index": 24, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "INT64", "index": 25, "name": "exchange_rate", "comment": null}, "itemdimkey": {"type": "INT64", "index": 26, "name": "itemdimkey", "comment": null}, "itemid": {"type": "STRING", "index": 27, "name": "itemid", "comment": null}, "itemname": {"type": "STRING", "index": 28, "name": "itemname", "comment": null}, "line_no": {"type": "INT64", "index": 29, "name": "line_no", "comment": null}, "lineitem": {"type": "BOOL", "index": 30, "name": "lineitem", "comment": null}, "locationid": {"type": "STRING", "index": 31, "name": "locationid", "comment": null}, "locationname": {"type": "STRING", "index": 32, "name": "locationname", "comment": null}, "modifiedby": {"type": "INT64", "index": 33, "name": "modifiedby", "comment": null}, "offsetglaccountno": {"type": "INT64", "index": 34, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "STRING", "index": 35, "name": "offsetglaccounttitle", "comment": null}, "recordtype": {"type": "STRING", "index": 36, "name": "recordtype", "comment": null}, "revrecstartdate": {"type": "DATE", "index": 37, "name": "revrecstartdate", "comment": null}, "state": {"type": "STRING", "index": 38, "name": "state", "comment": null}, "totalpaid": {"type": "FLOAT64", "index": 39, "name": "totalpaid", "comment": null}, "totalselected": {"type": "INT64", "index": 40, "name": "totalselected", "comment": null}, "trx_amount": {"type": "FLOAT64", "index": 41, "name": "trx_amount", "comment": null}, "trx_totalpaid": {"type": "FLOAT64", "index": 42, "name": "trx_totalpaid", "comment": null}, "trx_totalselected": {"type": "INT64", "index": 43, "name": "trx_totalselected", "comment": null}, "vendordimkey": {"type": "INT64", "index": 44, "name": "vendordimkey", "comment": null}, "vendorid": {"type": "STRING", "index": 45, "name": "vendorid", "comment": null}, "vendorname": {"type": "STRING", "index": 46, "name": "vendorname", "comment": null}, "whencreated": {"type": "TIMESTAMP", "index": 47, "name": "whencreated", "comment": null}, "whenmodified": {"type": "TIMESTAMP", "index": 48, "name": "whenmodified", "comment": null}, "warehousedimkey": {"type": "INT64", "index": 49, "name": "warehousedimkey", "comment": null}, "warehouseid": {"type": "STRING", "index": 50, "name": "warehouseid", "comment": null}, "warehousename": {"type": "STRING", "index": 51, "name": "warehousename", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 419472.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 191510989.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ar_invoice_item"}}, "errors": null}
\ No newline at end of file
+{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.3", "generated_at": "2023-12-01T16:17:14.778796Z", "invocation_id": "c5d73fcc-450a-4516-bedb-b16fa0eb6181", "env": {}}, "nodes": {"seed.sage_intacct_integration_tests.sage_intacct__ap_bill": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ap_bill", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "text", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 7, "name": "billtopaytokey", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "description": {"type": "text", "index": 9, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 10, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 11, "name": "due_in_days", "comment": null}, "recordid": {"type": "text", "index": 12, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 13, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 14, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 15, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "totaldue": {"type": "integer", "index": 17, "name": "totaldue", "comment": null}, "totalentered": {"type": "integer", "index": 18, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 19, "name": "totalpaid", "comment": null}, "vendorid": {"type": "text", "index": 20, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 21, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 22, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 23, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 24, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 25, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 26, "name": "whenposted", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__ap_bill"}, "seed.sage_intacct_integration_tests.sage_intacct__ap_bill_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ap_bill_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 2, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 3, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 4, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 5, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 6, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 7, "name": "baselocation", "comment": null}, "billable": {"type": "boolean", "index": 8, "name": "billable", "comment": null}, "billed": {"type": "boolean", "index": 9, "name": "billed", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "createdby": {"type": "bigint", "index": 12, "name": "createdby", "comment": null}, "currency": {"type": "character varying(100)", "index": 13, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 14, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 15, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 16, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 17, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 18, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 19, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 20, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 21, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 22, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 23, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 24, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 25, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 26, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 27, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 28, "name": "offsetglaccounttitle", "comment": null}, "projectid": {"type": "character varying(100)", "index": 29, "name": "projectid", "comment": null}, "projectname": {"type": "character varying(100)", "index": 30, "name": "projectname", "comment": null}, "recordkey": {"type": "character varying(100)", "index": 31, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 32, "name": "recordno", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 33, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 34, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 35, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 36, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 37, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 38, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 39, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 40, "name": "whenmodified", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__ap_bill_item"}, "seed.sage_intacct_integration_tests.sage_intacct__ar_invoice": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ar_invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 5, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 6, "name": "billtopaytokey", "comment": null}, "createdby": {"type": "integer", "index": 7, "name": "createdby", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "customerid": {"type": "text", "index": 9, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 10, "name": "customername", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 12, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 13, "name": "due_in_days", "comment": null}, "megaentityid": {"type": "text", "index": 14, "name": "megaentityid", "comment": null}, "megaentityname": {"type": "text", "index": 15, "name": "megaentityname", "comment": null}, "recordid": {"type": "text", "index": 16, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 17, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 18, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 19, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 20, "name": "state", "comment": null}, "totaldue": {"type": "double precision", "index": 21, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 22, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 23, "name": "totalpaid", "comment": null}, "whencreated": {"type": "date", "index": 24, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 25, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 26, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "integer", "index": 27, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 28, "name": "whenposted", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__ar_invoice"}, "seed.sage_intacct_integration_tests.sage_intacct__ar_invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ar_invoice_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordkey": {"type": "character varying(100)", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 9, "name": "baselocation", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "currency": {"type": "character varying(100)", "index": 12, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 13, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 14, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 15, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 16, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 17, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 18, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 19, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 20, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 21, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 22, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 23, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 24, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 25, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 26, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 27, "name": "offsetglaccounttitle", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 28, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 29, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 30, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 31, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 32, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 33, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 34, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 35, "name": "whenmodified", "comment": null}, "warehouseid": {"type": "character varying(100)", "index": 36, "name": "warehouseid", "comment": null}, "warehousename": {"type": "character varying(100)", "index": 37, "name": "warehousename", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__ar_invoice_item"}, "seed.sage_intacct_integration_tests.sage_intacct__gl_account": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"accountno": {"type": "integer", "index": 1, "name": "accountno", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounttype": {"type": "text", "index": 4, "name": "accounttype", "comment": null}, "alternativeaccount": {"type": "text", "index": 5, "name": "alternativeaccount", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "categorykey": {"type": "integer", "index": 7, "name": "categorykey", "comment": null}, "closetoacctkey": {"type": "integer", "index": 8, "name": "closetoacctkey", "comment": null}, "closingaccountno": {"type": "integer", "index": 9, "name": "closingaccountno", "comment": null}, "closingaccounttitle": {"type": "text", "index": 10, "name": "closingaccounttitle", "comment": null}, "closingtype": {"type": "text", "index": 11, "name": "closingtype", "comment": null}, "createdby": {"type": "integer", "index": 12, "name": "createdby", "comment": null}, "modifiedby": {"type": "integer", "index": 13, "name": "modifiedby", "comment": null}, "normalbalance": {"type": "text", "index": 14, "name": "normalbalance", "comment": null}, "recordno": {"type": "integer", "index": 15, "name": "recordno", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "taxable": {"type": "boolean", "index": 17, "name": "taxable", "comment": null}, "title": {"type": "text", "index": 18, "name": "title", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 19, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 20, "name": "whenmodified", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__gl_account"}, "seed.sage_intacct_integration_tests.sage_intacct__gl_batch": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_batch", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "baselocation": {"type": "integer", "index": 4, "name": "baselocation", "comment": null}, "baselocation_no": {"type": "integer", "index": 5, "name": "baselocation_no", "comment": null}, "batch_date": {"type": "date", "index": 6, "name": "batch_date", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchno": {"type": "integer", "index": 8, "name": "batchno", "comment": null}, "createdby": {"type": "integer", "index": 9, "name": "createdby", "comment": null}, "journal": {"type": "text", "index": 10, "name": "journal", "comment": null}, "megaentityid": {"type": "integer", "index": 11, "name": "megaentityid", "comment": null}, "megaentitykey": {"type": "integer", "index": 12, "name": "megaentitykey", "comment": null}, "megaentityname": {"type": "integer", "index": 13, "name": "megaentityname", "comment": null}, "modified": {"type": "timestamp without time zone", "index": 14, "name": "modified", "comment": null}, "modifiedby": {"type": "integer", "index": 15, "name": "modifiedby", "comment": null}, "modifiedbyid": {"type": "text", "index": 16, "name": "modifiedbyid", "comment": null}, "module": {"type": "text", "index": 17, "name": "module", "comment": null}, "prbatchkey": {"type": "integer", "index": 18, "name": "prbatchkey", "comment": null}, "referenceno": {"type": "integer", "index": 19, "name": "referenceno", "comment": null}, "reversed": {"type": "integer", "index": 20, "name": "reversed", "comment": null}, "reversedfrom": {"type": "integer", "index": 21, "name": "reversedfrom", "comment": null}, "reversedkey": {"type": "integer", "index": 22, "name": "reversedkey", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "taximplications": {"type": "integer", "index": 24, "name": "taximplications", "comment": null}, "templatekey": {"type": "integer", "index": 25, "name": "templatekey", "comment": null}, "userinfo_loginid": {"type": "text", "index": 26, "name": "userinfo_loginid", "comment": null}, "userkey": {"type": "integer", "index": 27, "name": "userkey", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 28, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 29, "name": "whenmodified", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__gl_batch"}, "seed.sage_intacct_integration_tests.sage_intacct__gl_detail": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_detail", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "text", "index": 1, "name": "recordno", "comment": null}, "accountno": {"type": "integer", "index": 2, "name": "accountno", "comment": null}, "accounttitle": {"type": "text", "index": 3, "name": "accounttitle", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "batch_date": {"type": "date", "index": 5, "name": "batch_date", "comment": null}, "batch_no": {"type": "integer", "index": 6, "name": "batch_no", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchkey": {"type": "integer", "index": 8, "name": "batchkey", "comment": null}, "bookid": {"type": "text", "index": 9, "name": "bookid", "comment": null}, "creditamount": {"type": "double precision", "index": 10, "name": "creditamount", "comment": null}, "debitamount": {"type": "double precision", "index": 11, "name": "debitamount", "comment": null}, "customerid": {"type": "integer", "index": 12, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 13, "name": "customername", "comment": null}, "description": {"type": "text", "index": 14, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 15, "name": "docnumber", "comment": null}, "entry_date": {"type": "date", "index": 16, "name": "entry_date", "comment": null}, "entry_state": {"type": "text", "index": 17, "name": "entry_state", "comment": null}, "entrydescription": {"type": "text", "index": 18, "name": "entrydescription", "comment": null}, "line_no": {"type": "integer", "index": 19, "name": "line_no", "comment": null}, "recordid": {"type": "integer", "index": 20, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 21, "name": "recordtype", "comment": null}, "totaldue": {"type": "double precision", "index": 22, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 23, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 24, "name": "totalpaid", "comment": null}, "tr_type": {"type": "integer", "index": 25, "name": "tr_type", "comment": null}, "trx_amount": {"type": "double precision", "index": 26, "name": "trx_amount", "comment": null}, "trx_creditamount": {"type": "double precision", "index": 27, "name": "trx_creditamount", "comment": null}, "trx_debitamount": {"type": "double precision", "index": 28, "name": "trx_debitamount", "comment": null}, "vendorid": {"type": "text", "index": 29, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 30, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 31, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 32, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 33, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 34, "name": "whenpaid", "comment": null}}, "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.sage_intacct_integration_tests.sage_intacct__gl_detail"}, "model.sage_intacct.int_sage_intacct__account_classifications": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "int_sage_intacct__account_classifications", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_no": {"type": "text", "index": 1, "name": "account_no", "comment": null}, "account_type": {"type": "text", "index": 2, "name": "account_type", "comment": null}, "category": {"type": "text", "index": 3, "name": "category", "comment": null}, "closing_account_title": {"type": "text", "index": 4, "name": "closing_account_title", "comment": null}, "classification": {"type": "text", "index": 5, "name": "classification", "comment": null}, "normal_balance": {"type": "text", "index": 6, "name": "normal_balance", "comment": null}, "account_title": {"type": "text", "index": 7, "name": "account_title", "comment": null}}, "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.sage_intacct.int_sage_intacct__account_classifications"}, "model.sage_intacct.int_sage_intacct__general_ledger_balances": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "int_sage_intacct__general_ledger_balances", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_no": {"type": "text", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 2, "name": "account_title", "comment": null}, "book_id": {"type": "text", "index": 3, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 4, "name": "category", "comment": null}, "classification": {"type": "text", "index": 5, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "account_type": {"type": "text", "index": 7, "name": "account_type", "comment": null}, "date_year": {"type": "date", "index": 8, "name": "date_year", "comment": null}, "entry_state": {"type": "text", "index": 9, "name": "entry_state", "comment": null}, "period_first_day": {"type": "date", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "date", "index": 11, "name": "period_last_day", "comment": null}, "period_net_amount": {"type": "numeric", "index": 12, "name": "period_net_amount", "comment": null}, "period_beg_amount": {"type": "numeric", "index": 13, "name": "period_beg_amount", "comment": null}, "period_ending_amount": {"type": "numeric", "index": 14, "name": "period_ending_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.sage_intacct.int_sage_intacct__general_ledger_balances"}, "model.sage_intacct.int_sage_intacct__general_ledger_date_spine": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "int_sage_intacct__general_ledger_date_spine", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_no": {"type": "text", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 2, "name": "account_title", "comment": null}, "account_type": {"type": "text", "index": 3, "name": "account_type", "comment": null}, "book_id": {"type": "text", "index": 4, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "classification": {"type": "text", "index": 6, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 7, "name": "currency", "comment": null}, "entry_state": {"type": "text", "index": 8, "name": "entry_state", "comment": null}, "date_year": {"type": "date", "index": 9, "name": "date_year", "comment": null}, "period_first_day": {"type": "date", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "date", "index": 11, "name": "period_last_day", "comment": null}, "period_index": {"type": "bigint", "index": 12, "name": "period_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.sage_intacct.int_sage_intacct__general_ledger_date_spine"}, "model.sage_intacct.int_sage_intacct__retained_earnings": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "int_sage_intacct__retained_earnings", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"period_first_day": {"type": "date", "index": 1, "name": "period_first_day", "comment": null}, "account_no": {"type": "text", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "text", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "text", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "classification": {"type": "text", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "text", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "numeric", "index": 10, "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.sage_intacct.int_sage_intacct__retained_earnings"}, "model.sage_intacct.sage_intacct__ap_ar_enhanced": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "sage_intacct__ap_ar_enhanced", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"document_id": {"type": "text", "index": 1, "name": "document_id", "comment": null}, "document_item_id": {"type": "text", "index": 2, "name": "document_item_id", "comment": null}, "document_type": {"type": "text", "index": 3, "name": "document_type", "comment": null}, "entry_date_at": {"type": "date", "index": 4, "name": "entry_date_at", "comment": null}, "entry_description": {"type": "character varying(100)", "index": 5, "name": "entry_description", "comment": null}, "amount": {"type": "character varying(100)", "index": 6, "name": "amount", "comment": null}, "currency": {"type": "character varying(100)", "index": 7, "name": "currency", "comment": null}, "due_in_days": {"type": "integer", "index": 8, "name": "due_in_days", "comment": null}, "item_id": {"type": "text", "index": 9, "name": "item_id", "comment": null}, "item_name": {"type": "character varying(100)", "index": 10, "name": "item_name", "comment": null}, "line_no": {"type": "bigint", "index": 11, "name": "line_no", "comment": null}, "line_item": {"type": "boolean", "index": 12, "name": "line_item", "comment": null}, "customer_id": {"type": "character varying(100)", "index": 13, "name": "customer_id", "comment": null}, "customer_name": {"type": "character varying(100)", "index": 14, "name": "customer_name", "comment": null}, "department_id": {"type": "text", "index": 15, "name": "department_id", "comment": null}, "department_name": {"type": "character varying(100)", "index": 16, "name": "department_name", "comment": null}, "location_id": {"type": "text", "index": 17, "name": "location_id", "comment": null}, "location_name": {"type": "character varying(100)", "index": 18, "name": "location_name", "comment": null}, "vendor_id": {"type": "character varying(100)", "index": 19, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "character varying(100)", "index": 20, "name": "vendor_name", "comment": null}, "account_no": {"type": "character varying(100)", "index": 21, "name": "account_no", "comment": null}, "account_title": {"type": "character varying(100)", "index": 22, "name": "account_title", "comment": null}, "class_id": {"type": "text", "index": 23, "name": "class_id", "comment": null}, "class_name": {"type": "character varying(100)", "index": 24, "name": "class_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 25, "name": "created_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 26, "name": "modified_at", "comment": null}, "total_due": {"type": "double precision", "index": 27, "name": "total_due", "comment": null}, "total_entered": {"type": "double precision", "index": 28, "name": "total_entered", "comment": null}, "total_paid": {"type": "integer", "index": 29, "name": "total_paid", "comment": null}, "number_of_items": {"type": "bigint", "index": 30, "name": "number_of_items", "comment": null}, "total_item_paid": {"type": "character varying(100)", "index": 31, "name": "total_item_paid", "comment": null}, "offset_gl_account_no": {"type": "bigint", "index": 32, "name": "offset_gl_account_no", "comment": null}, "offset_gl_account_title": {"type": "character varying(100)", "index": 33, "name": "offset_gl_account_title", "comment": null}, "record_id": {"type": "text", "index": 34, "name": "record_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.sage_intacct.sage_intacct__ap_ar_enhanced"}, "model.sage_intacct.sage_intacct__balance_sheet": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "sage_intacct__balance_sheet", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"period_date": {"type": "date", "index": 1, "name": "period_date", "comment": null}, "account_no": {"type": "text", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "text", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "text", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "classification": {"type": "text", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "text", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "numeric", "index": 10, "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.sage_intacct.sage_intacct__balance_sheet"}, "model.sage_intacct.sage_intacct__general_ledger": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "sage_intacct__general_ledger", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"gl_detail_id": {"type": "text", "index": 1, "name": "gl_detail_id", "comment": null}, "account_no": {"type": "text", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 3, "name": "account_title", "comment": null}, "amount": {"type": "numeric", "index": 4, "name": "amount", "comment": null}, "book_id": {"type": "text", "index": 5, "name": "book_id", "comment": null}, "credit_amount": {"type": "double precision", "index": 6, "name": "credit_amount", "comment": null}, "debit_amount": {"type": "double precision", "index": 7, "name": "debit_amount", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "description": {"type": "text", "index": 9, "name": "description", "comment": null}, "doc_number": {"type": "text", "index": 10, "name": "doc_number", "comment": null}, "customer_id": {"type": "integer", "index": 11, "name": "customer_id", "comment": null}, "customer_name": {"type": "text", "index": 12, "name": "customer_name", "comment": null}, "entry_date_at": {"type": "date", "index": 13, "name": "entry_date_at", "comment": null}, "entry_state": {"type": "text", "index": 14, "name": "entry_state", "comment": null}, "entry_description": {"type": "text", "index": 15, "name": "entry_description", "comment": null}, "line_no": {"type": "integer", "index": 16, "name": "line_no", "comment": null}, "record_id": {"type": "integer", "index": 17, "name": "record_id", "comment": null}, "record_type": {"type": "text", "index": 18, "name": "record_type", "comment": null}, "total_due": {"type": "double precision", "index": 19, "name": "total_due", "comment": null}, "total_entered": {"type": "double precision", "index": 20, "name": "total_entered", "comment": null}, "total_paid": {"type": "integer", "index": 21, "name": "total_paid", "comment": null}, "tr_type": {"type": "integer", "index": 22, "name": "tr_type", "comment": null}, "trx_amount": {"type": "double precision", "index": 23, "name": "trx_amount", "comment": null}, "trx_credit_amount": {"type": "double precision", "index": 24, "name": "trx_credit_amount", "comment": null}, "trx_debit_amount": {"type": "double precision", "index": 25, "name": "trx_debit_amount", "comment": null}, "vendor_id": {"type": "text", "index": 26, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "text", "index": 27, "name": "vendor_name", "comment": null}, "created_at": {"type": "date", "index": 28, "name": "created_at", "comment": null}, "due_at": {"type": "date", "index": 29, "name": "due_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 30, "name": "modified_at", "comment": null}, "paid_at": {"type": "date", "index": 31, "name": "paid_at", "comment": null}, "category": {"type": "text", "index": 32, "name": "category", "comment": null}, "classification": {"type": "text", "index": 33, "name": "classification", "comment": null}, "account_type": {"type": "text", "index": 34, "name": "account_type", "comment": null}}, "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.sage_intacct.sage_intacct__general_ledger"}, "model.sage_intacct.sage_intacct__general_ledger_by_period": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "sage_intacct__general_ledger_by_period", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_no": {"type": "text", "index": 1, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 2, "name": "account_title", "comment": null}, "book_id": {"type": "text", "index": 3, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 4, "name": "category", "comment": null}, "classification": {"type": "text", "index": 5, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "entry_state": {"type": "text", "index": 7, "name": "entry_state", "comment": null}, "account_type": {"type": "text", "index": 8, "name": "account_type", "comment": null}, "date_year": {"type": "date", "index": 9, "name": "date_year", "comment": null}, "period_first_day": {"type": "date", "index": 10, "name": "period_first_day", "comment": null}, "period_last_day": {"type": "date", "index": 11, "name": "period_last_day", "comment": null}, "period_net_amount": {"type": "numeric", "index": 12, "name": "period_net_amount", "comment": null}, "period_beg_amount": {"type": "numeric", "index": 13, "name": "period_beg_amount", "comment": null}, "period_ending_amount": {"type": "numeric", "index": 14, "name": "period_ending_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.sage_intacct.sage_intacct__general_ledger_by_period"}, "model.sage_intacct.sage_intacct__profit_and_loss": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct", "name": "sage_intacct__profit_and_loss", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"period_date": {"type": "date", "index": 1, "name": "period_date", "comment": null}, "account_no": {"type": "text", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 3, "name": "account_title", "comment": null}, "account_type": {"type": "text", "index": 4, "name": "account_type", "comment": null}, "book_id": {"type": "text", "index": 5, "name": "book_id", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "classification": {"type": "text", "index": 7, "name": "classification", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "entry_state": {"type": "text", "index": 9, "name": "entry_state", "comment": null}, "amount": {"type": "numeric", "index": 10, "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.sage_intacct.sage_intacct__profit_and_loss"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "text", "index": 1, "name": "bill_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}, "au_created_at": {"type": "timestamp without time zone", "index": 4, "name": "au_created_at", "comment": null}, "bill_to_pay_to_contact_name": {"type": "text", "index": 5, "name": "bill_to_pay_to_contact_name", "comment": null}, "bill_to_pay_to_key": {"type": "integer", "index": 6, "name": "bill_to_pay_to_key", "comment": null}, "currency": {"type": "text", "index": 7, "name": "currency", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "doc_number": {"type": "text", "index": 9, "name": "doc_number", "comment": null}, "due_in_days": {"type": "integer", "index": 10, "name": "due_in_days", "comment": null}, "record_id": {"type": "text", "index": 11, "name": "record_id", "comment": null}, "record_type": {"type": "text", "index": 12, "name": "record_type", "comment": null}, "ship_to_return_to_contact_name": {"type": "text", "index": 13, "name": "ship_to_return_to_contact_name", "comment": null}, "ship_to_return_to_key": {"type": "integer", "index": 14, "name": "ship_to_return_to_key", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "total_due": {"type": "integer", "index": 16, "name": "total_due", "comment": null}, "total_entered": {"type": "integer", "index": 17, "name": "total_entered", "comment": null}, "total_paid": {"type": "integer", "index": 18, "name": "total_paid", "comment": null}, "vendor_id": {"type": "text", "index": 19, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "text", "index": 20, "name": "vendor_name", "comment": null}, "created_at": {"type": "date", "index": 21, "name": "created_at", "comment": null}, "due_at": {"type": "date", "index": 22, "name": "due_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 23, "name": "modified_at", "comment": null}, "paid_at": {"type": "date", "index": 24, "name": "paid_at", "comment": null}, "posted_at": {"type": "date", "index": 25, "name": "posted_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.sage_intacct_source.stg_sage_intacct__ap_bill"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"bill_id": {"type": "text", "index": 1, "name": "bill_id", "comment": null}, "bill_item_id": {"type": "text", "index": 2, "name": "bill_item_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_key": {"type": "bigint", "index": 4, "name": "account_key", "comment": null}, "account_no": {"type": "character varying(100)", "index": 5, "name": "account_no", "comment": null}, "account_title": {"type": "character varying(100)", "index": 6, "name": "account_title", "comment": null}, "amount": {"type": "character varying(100)", "index": 7, "name": "amount", "comment": null}, "base_curr": {"type": "character varying(100)", "index": 8, "name": "base_curr", "comment": null}, "base_location": {"type": "bigint", "index": 9, "name": "base_location", "comment": null}, "billable": {"type": "boolean", "index": 10, "name": "billable", "comment": null}, "billed": {"type": "boolean", "index": 11, "name": "billed", "comment": null}, "class_id": {"type": "text", "index": 12, "name": "class_id", "comment": null}, "class_name": {"type": "character varying(100)", "index": 13, "name": "class_name", "comment": null}, "created_by": {"type": "bigint", "index": 14, "name": "created_by", "comment": null}, "currency": {"type": "character varying(100)", "index": 15, "name": "currency", "comment": null}, "customer_id": {"type": "character varying(100)", "index": 16, "name": "customer_id", "comment": null}, "customer_name": {"type": "character varying(100)", "index": 17, "name": "customer_name", "comment": null}, "department_id": {"type": "text", "index": 18, "name": "department_id", "comment": null}, "department_name": {"type": "character varying(100)", "index": 19, "name": "department_name", "comment": null}, "entry_date_at": {"type": "date", "index": 20, "name": "entry_date_at", "comment": null}, "entry_description": {"type": "character varying(100)", "index": 21, "name": "entry_description", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 22, "name": "exchange_rate", "comment": null}, "item_id": {"type": "text", "index": 23, "name": "item_id", "comment": null}, "item_name": {"type": "character varying(100)", "index": 24, "name": "item_name", "comment": null}, "line_no": {"type": "bigint", "index": 25, "name": "line_no", "comment": null}, "line_item": {"type": "boolean", "index": 26, "name": "line_item", "comment": null}, "location_id": {"type": "text", "index": 27, "name": "location_id", "comment": null}, "location_name": {"type": "character varying(100)", "index": 28, "name": "location_name", "comment": null}, "offset_gl_account_no": {"type": "bigint", "index": 29, "name": "offset_gl_account_no", "comment": null}, "offset_gl_account_title": {"type": "character varying(100)", "index": 30, "name": "offset_gl_account_title", "comment": null}, "record_type": {"type": "character varying(100)", "index": 31, "name": "record_type", "comment": null}, "state": {"type": "character varying(100)", "index": 32, "name": "state", "comment": null}, "total_item_paid": {"type": "character varying(100)", "index": 33, "name": "total_item_paid", "comment": null}, "total_selected": {"type": "character varying(100)", "index": 34, "name": "total_selected", "comment": null}, "vendor_id": {"type": "character varying(100)", "index": 35, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "character varying(100)", "index": 36, "name": "vendor_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 37, "name": "created_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 38, "name": "modified_at", "comment": null}, "project_name": {"type": "character varying(100)", "index": 39, "name": "project_name", "comment": null}, "project_id": {"type": "character varying(100)", "index": 40, "name": "project_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.sage_intacct_source.stg_sage_intacct__ap_bill_item"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_item_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 2, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 3, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 4, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 5, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 6, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 7, "name": "baselocation", "comment": null}, "billable": {"type": "boolean", "index": 8, "name": "billable", "comment": null}, "billed": {"type": "boolean", "index": 9, "name": "billed", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "createdby": {"type": "bigint", "index": 12, "name": "createdby", "comment": null}, "currency": {"type": "character varying(100)", "index": 13, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 14, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 15, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 16, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 17, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 18, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 19, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 20, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 21, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 22, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 23, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 24, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 25, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 26, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 27, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 28, "name": "offsetglaccounttitle", "comment": null}, "projectid": {"type": "character varying(100)", "index": 29, "name": "projectid", "comment": null}, "projectname": {"type": "character varying(100)", "index": 30, "name": "projectname", "comment": null}, "recordkey": {"type": "character varying(100)", "index": 31, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 32, "name": "recordno", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 33, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 34, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 35, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 36, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 37, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 38, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 39, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 40, "name": "whenmodified", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ap_bill_item_tmp"}, "model.sage_intacct_source.stg_sage_intacct__ap_bill_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ap_bill_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "text", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 7, "name": "billtopaytokey", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "description": {"type": "text", "index": 9, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 10, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 11, "name": "due_in_days", "comment": null}, "recordid": {"type": "text", "index": 12, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 13, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 14, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 15, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "totaldue": {"type": "integer", "index": 17, "name": "totaldue", "comment": null}, "totalentered": {"type": "integer", "index": 18, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 19, "name": "totalpaid", "comment": null}, "vendorid": {"type": "text", "index": 20, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 21, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 22, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 23, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 24, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 25, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 26, "name": "whenposted", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ap_bill_tmp"}, "model.sage_intacct_source.stg_sage_intacct__ar_invoice": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ar_invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "text", "index": 1, "name": "invoice_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}, "au_created_at": {"type": "timestamp without time zone", "index": 4, "name": "au_created_at", "comment": null}, "bill_to_pay_to_contact_name": {"type": "text", "index": 5, "name": "bill_to_pay_to_contact_name", "comment": null}, "bill_to_pay_to_key": {"type": "integer", "index": 6, "name": "bill_to_pay_to_key", "comment": null}, "created_by": {"type": "integer", "index": 7, "name": "created_by", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "customer_id": {"type": "text", "index": 9, "name": "customer_id", "comment": null}, "customer_name": {"type": "text", "index": 10, "name": "customer_name", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "doc_number": {"type": "text", "index": 12, "name": "doc_number", "comment": null}, "due_in_days": {"type": "integer", "index": 13, "name": "due_in_days", "comment": null}, "mega_entity_id": {"type": "text", "index": 14, "name": "mega_entity_id", "comment": null}, "mega_entity_name": {"type": "text", "index": 15, "name": "mega_entity_name", "comment": null}, "record_id": {"type": "text", "index": 16, "name": "record_id", "comment": null}, "record_type": {"type": "text", "index": 17, "name": "record_type", "comment": null}, "ship_to_return_to_contact_name": {"type": "text", "index": 18, "name": "ship_to_return_to_contact_name", "comment": null}, "ship_to_return_to_key": {"type": "integer", "index": 19, "name": "ship_to_return_to_key", "comment": null}, "state": {"type": "text", "index": 20, "name": "state", "comment": null}, "total_due": {"type": "double precision", "index": 21, "name": "total_due", "comment": null}, "total_entered": {"type": "double precision", "index": 22, "name": "total_entered", "comment": null}, "total_paid": {"type": "integer", "index": 23, "name": "total_paid", "comment": null}, "created_at": {"type": "date", "index": 24, "name": "created_at", "comment": null}, "due_at": {"type": "date", "index": 25, "name": "due_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 26, "name": "modified_at", "comment": null}, "paid_at": {"type": "integer", "index": 27, "name": "paid_at", "comment": null}, "posted_at": {"type": "date", "index": 28, "name": "posted_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.sage_intacct_source.stg_sage_intacct__ar_invoice"}, "model.sage_intacct_source.stg_sage_intacct__ar_invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ar_invoice_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"invoice_id": {"type": "text", "index": 1, "name": "invoice_id", "comment": null}, "invoice_item_id": {"type": "text", "index": 2, "name": "invoice_item_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_key": {"type": "bigint", "index": 4, "name": "account_key", "comment": null}, "account_no": {"type": "character varying(100)", "index": 5, "name": "account_no", "comment": null}, "account_title": {"type": "character varying(100)", "index": 6, "name": "account_title", "comment": null}, "amount": {"type": "character varying(100)", "index": 7, "name": "amount", "comment": null}, "base_curr": {"type": "character varying(100)", "index": 8, "name": "base_curr", "comment": null}, "base_location": {"type": "bigint", "index": 9, "name": "base_location", "comment": null}, "class_id": {"type": "text", "index": 10, "name": "class_id", "comment": null}, "class_name": {"type": "character varying(100)", "index": 11, "name": "class_name", "comment": null}, "currency": {"type": "character varying(100)", "index": 12, "name": "currency", "comment": null}, "customer_id": {"type": "character varying(100)", "index": 13, "name": "customer_id", "comment": null}, "customer_name": {"type": "character varying(100)", "index": 14, "name": "customer_name", "comment": null}, "department_id": {"type": "text", "index": 15, "name": "department_id", "comment": null}, "department_name": {"type": "character varying(100)", "index": 16, "name": "department_name", "comment": null}, "entry_date_at": {"type": "date", "index": 17, "name": "entry_date_at", "comment": null}, "entry_description": {"type": "character varying(100)", "index": 18, "name": "entry_description", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 19, "name": "exchange_rate", "comment": null}, "item_id": {"type": "text", "index": 20, "name": "item_id", "comment": null}, "item_name": {"type": "character varying(100)", "index": 21, "name": "item_name", "comment": null}, "line_no": {"type": "bigint", "index": 22, "name": "line_no", "comment": null}, "line_item": {"type": "boolean", "index": 23, "name": "line_item", "comment": null}, "location_id": {"type": "text", "index": 24, "name": "location_id", "comment": null}, "location_name": {"type": "character varying(100)", "index": 25, "name": "location_name", "comment": null}, "offset_gl_account_no": {"type": "bigint", "index": 26, "name": "offset_gl_account_no", "comment": null}, "offset_gl_account_title": {"type": "character varying(100)", "index": 27, "name": "offset_gl_account_title", "comment": null}, "record_type": {"type": "character varying(100)", "index": 28, "name": "record_type", "comment": null}, "state": {"type": "character varying(100)", "index": 29, "name": "state", "comment": null}, "total_item_paid": {"type": "character varying(100)", "index": 30, "name": "total_item_paid", "comment": null}, "total_selected": {"type": "character varying(100)", "index": 31, "name": "total_selected", "comment": null}, "vendor_id": {"type": "character varying(100)", "index": 32, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "character varying(100)", "index": 33, "name": "vendor_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 34, "name": "created_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 35, "name": "modified_at", "comment": null}, "warehouse_id": {"type": "character varying(100)", "index": 36, "name": "warehouse_id", "comment": null}, "warehouse_name": {"type": "character varying(100)", "index": 37, "name": "warehouse_name", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ar_invoice_item"}, "model.sage_intacct_source.stg_sage_intacct__ar_invoice_item_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ar_invoice_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordkey": {"type": "character varying(100)", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 9, "name": "baselocation", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "currency": {"type": "character varying(100)", "index": 12, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 13, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 14, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 15, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 16, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 17, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 18, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 19, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 20, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 21, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 22, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 23, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 24, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 25, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 26, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 27, "name": "offsetglaccounttitle", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 28, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 29, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 30, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 31, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 32, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 33, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 34, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 35, "name": "whenmodified", "comment": null}, "warehouseid": {"type": "character varying(100)", "index": 36, "name": "warehouseid", "comment": null}, "warehousename": {"type": "character varying(100)", "index": 37, "name": "warehousename", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ar_invoice_item_tmp"}, "model.sage_intacct_source.stg_sage_intacct__ar_invoice_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__ar_invoice_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 5, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 6, "name": "billtopaytokey", "comment": null}, "createdby": {"type": "integer", "index": 7, "name": "createdby", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "customerid": {"type": "text", "index": 9, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 10, "name": "customername", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 12, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 13, "name": "due_in_days", "comment": null}, "megaentityid": {"type": "text", "index": 14, "name": "megaentityid", "comment": null}, "megaentityname": {"type": "text", "index": 15, "name": "megaentityname", "comment": null}, "recordid": {"type": "text", "index": 16, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 17, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 18, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 19, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 20, "name": "state", "comment": null}, "totaldue": {"type": "double precision", "index": 21, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 22, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 23, "name": "totalpaid", "comment": null}, "whencreated": {"type": "date", "index": 24, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 25, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 26, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "integer", "index": 27, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 28, "name": "whenposted", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__ar_invoice_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_account": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_no": {"type": "text", "index": 1, "name": "account_no", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_type": {"type": "text", "index": 4, "name": "account_type", "comment": null}, "alternative_account": {"type": "text", "index": 5, "name": "alternative_account", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "category_key": {"type": "integer", "index": 7, "name": "category_key", "comment": null}, "close_to_acct_key": {"type": "integer", "index": 8, "name": "close_to_acct_key", "comment": null}, "closing_account_no": {"type": "integer", "index": 9, "name": "closing_account_no", "comment": null}, "closing_account_title": {"type": "text", "index": 10, "name": "closing_account_title", "comment": null}, "closing_type": {"type": "text", "index": 11, "name": "closing_type", "comment": null}, "created_by": {"type": "integer", "index": 12, "name": "created_by", "comment": null}, "modified_by": {"type": "integer", "index": 13, "name": "modified_by", "comment": null}, "normal_balance": {"type": "text", "index": 14, "name": "normal_balance", "comment": null}, "gl_account_id": {"type": "integer", "index": 15, "name": "gl_account_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "taxable": {"type": "boolean", "index": 17, "name": "taxable", "comment": null}, "title": {"type": "text", "index": 18, "name": "title", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 19, "name": "created_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 20, "name": "modified_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.sage_intacct_source.stg_sage_intacct__gl_account"}, "model.sage_intacct_source.stg_sage_intacct__gl_account_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_account_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"accountno": {"type": "integer", "index": 1, "name": "accountno", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounttype": {"type": "text", "index": 4, "name": "accounttype", "comment": null}, "alternativeaccount": {"type": "text", "index": 5, "name": "alternativeaccount", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "categorykey": {"type": "integer", "index": 7, "name": "categorykey", "comment": null}, "closetoacctkey": {"type": "integer", "index": 8, "name": "closetoacctkey", "comment": null}, "closingaccountno": {"type": "integer", "index": 9, "name": "closingaccountno", "comment": null}, "closingaccounttitle": {"type": "text", "index": 10, "name": "closingaccounttitle", "comment": null}, "closingtype": {"type": "text", "index": 11, "name": "closingtype", "comment": null}, "createdby": {"type": "integer", "index": 12, "name": "createdby", "comment": null}, "modifiedby": {"type": "integer", "index": 13, "name": "modifiedby", "comment": null}, "normalbalance": {"type": "text", "index": 14, "name": "normalbalance", "comment": null}, "recordno": {"type": "integer", "index": 15, "name": "recordno", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "taxable": {"type": "boolean", "index": 17, "name": "taxable", "comment": null}, "title": {"type": "text", "index": 18, "name": "title", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 19, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 20, "name": "whenmodified", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_account_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_batch": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_batch", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_deleted": {"type": "boolean", "index": 1, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "base_location": {"type": "integer", "index": 3, "name": "base_location", "comment": null}, "base_location_no": {"type": "integer", "index": 4, "name": "base_location_no", "comment": null}, "batch_date": {"type": "date", "index": 5, "name": "batch_date", "comment": null}, "batch_title": {"type": "text", "index": 6, "name": "batch_title", "comment": null}, "batch_no": {"type": "integer", "index": 7, "name": "batch_no", "comment": null}, "created_by": {"type": "integer", "index": 8, "name": "created_by", "comment": null}, "journal": {"type": "text", "index": 9, "name": "journal", "comment": null}, "mega_entity_id": {"type": "integer", "index": 10, "name": "mega_entity_id", "comment": null}, "mega_entity_key": {"type": "integer", "index": 11, "name": "mega_entity_key", "comment": null}, "mega_entity_name": {"type": "integer", "index": 12, "name": "mega_entity_name", "comment": null}, "modified": {"type": "timestamp without time zone", "index": 13, "name": "modified", "comment": null}, "modified_by": {"type": "integer", "index": 14, "name": "modified_by", "comment": null}, "modified_by_id": {"type": "text", "index": 15, "name": "modified_by_id", "comment": null}, "module": {"type": "text", "index": 16, "name": "module", "comment": null}, "pr_batch_key": {"type": "integer", "index": 17, "name": "pr_batch_key", "comment": null}, "record_no": {"type": "integer", "index": 18, "name": "record_no", "comment": null}, "reference_no": {"type": "integer", "index": 19, "name": "reference_no", "comment": null}, "reversed": {"type": "integer", "index": 20, "name": "reversed", "comment": null}, "reversed_from": {"type": "integer", "index": 21, "name": "reversed_from", "comment": null}, "reversed_key": {"type": "integer", "index": 22, "name": "reversed_key", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "tax_implications": {"type": "integer", "index": 24, "name": "tax_implications", "comment": null}, "template_key": {"type": "integer", "index": 25, "name": "template_key", "comment": null}, "user_info_login_id": {"type": "text", "index": 26, "name": "user_info_login_id", "comment": null}, "user_key": {"type": "integer", "index": 27, "name": "user_key", "comment": null}, "when_created": {"type": "timestamp without time zone", "index": 28, "name": "when_created", "comment": null}, "when_modified": {"type": "timestamp without time zone", "index": 29, "name": "when_modified", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_batch"}, "model.sage_intacct_source.stg_sage_intacct__gl_batch_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_batch_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "baselocation": {"type": "integer", "index": 4, "name": "baselocation", "comment": null}, "baselocation_no": {"type": "integer", "index": 5, "name": "baselocation_no", "comment": null}, "batch_date": {"type": "date", "index": 6, "name": "batch_date", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchno": {"type": "integer", "index": 8, "name": "batchno", "comment": null}, "createdby": {"type": "integer", "index": 9, "name": "createdby", "comment": null}, "journal": {"type": "text", "index": 10, "name": "journal", "comment": null}, "megaentityid": {"type": "integer", "index": 11, "name": "megaentityid", "comment": null}, "megaentitykey": {"type": "integer", "index": 12, "name": "megaentitykey", "comment": null}, "megaentityname": {"type": "integer", "index": 13, "name": "megaentityname", "comment": null}, "modified": {"type": "timestamp without time zone", "index": 14, "name": "modified", "comment": null}, "modifiedby": {"type": "integer", "index": 15, "name": "modifiedby", "comment": null}, "modifiedbyid": {"type": "text", "index": 16, "name": "modifiedbyid", "comment": null}, "module": {"type": "text", "index": 17, "name": "module", "comment": null}, "prbatchkey": {"type": "integer", "index": 18, "name": "prbatchkey", "comment": null}, "referenceno": {"type": "integer", "index": 19, "name": "referenceno", "comment": null}, "reversed": {"type": "integer", "index": 20, "name": "reversed", "comment": null}, "reversedfrom": {"type": "integer", "index": 21, "name": "reversedfrom", "comment": null}, "reversedkey": {"type": "integer", "index": 22, "name": "reversedkey", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "taximplications": {"type": "integer", "index": 24, "name": "taximplications", "comment": null}, "templatekey": {"type": "integer", "index": 25, "name": "templatekey", "comment": null}, "userinfo_loginid": {"type": "text", "index": 26, "name": "userinfo_loginid", "comment": null}, "userkey": {"type": "integer", "index": 27, "name": "userkey", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 28, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 29, "name": "whenmodified", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_batch_tmp"}, "model.sage_intacct_source.stg_sage_intacct__gl_detail": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_detail", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"gl_detail_id": {"type": "text", "index": 1, "name": "gl_detail_id", "comment": null}, "account_no": {"type": "text", "index": 2, "name": "account_no", "comment": null}, "account_title": {"type": "text", "index": 3, "name": "account_title", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "batch_date": {"type": "date", "index": 5, "name": "batch_date", "comment": null}, "batch_no": {"type": "integer", "index": 6, "name": "batch_no", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batch_key": {"type": "integer", "index": 8, "name": "batch_key", "comment": null}, "book_id": {"type": "text", "index": 9, "name": "book_id", "comment": null}, "class_id": {"type": "text", "index": 10, "name": "class_id", "comment": null}, "class_name": {"type": "text", "index": 11, "name": "class_name", "comment": null}, "credit_amount": {"type": "double precision", "index": 12, "name": "credit_amount", "comment": null}, "debit_amount": {"type": "double precision", "index": 13, "name": "debit_amount", "comment": null}, "currency": {"type": "text", "index": 14, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 15, "name": "customer_id", "comment": null}, "customer_name": {"type": "text", "index": 16, "name": "customer_name", "comment": null}, "department_id": {"type": "text", "index": 17, "name": "department_id", "comment": null}, "department_title": {"type": "text", "index": 18, "name": "department_title", "comment": null}, "description": {"type": "text", "index": 19, "name": "description", "comment": null}, "doc_number": {"type": "text", "index": 20, "name": "doc_number", "comment": null}, "entry_date_at": {"type": "date", "index": 21, "name": "entry_date_at", "comment": null}, "entry_state": {"type": "text", "index": 22, "name": "entry_state", "comment": null}, "entry_description": {"type": "text", "index": 23, "name": "entry_description", "comment": null}, "line_no": {"type": "integer", "index": 24, "name": "line_no", "comment": null}, "location_id": {"type": "text", "index": 25, "name": "location_id", "comment": null}, "location_name": {"type": "text", "index": 26, "name": "location_name", "comment": null}, "pr_description": {"type": "text", "index": 27, "name": "pr_description", "comment": null}, "record_id": {"type": "integer", "index": 28, "name": "record_id", "comment": null}, "record_type": {"type": "text", "index": 29, "name": "record_type", "comment": null}, "total_due": {"type": "double precision", "index": 30, "name": "total_due", "comment": null}, "total_entered": {"type": "double precision", "index": 31, "name": "total_entered", "comment": null}, "total_paid": {"type": "integer", "index": 32, "name": "total_paid", "comment": null}, "tr_type": {"type": "integer", "index": 33, "name": "tr_type", "comment": null}, "trx_amount": {"type": "double precision", "index": 34, "name": "trx_amount", "comment": null}, "trx_credit_amount": {"type": "double precision", "index": 35, "name": "trx_credit_amount", "comment": null}, "trx_debit_amount": {"type": "double precision", "index": 36, "name": "trx_debit_amount", "comment": null}, "vendor_id": {"type": "text", "index": 37, "name": "vendor_id", "comment": null}, "vendor_name": {"type": "text", "index": 38, "name": "vendor_name", "comment": null}, "created_at": {"type": "date", "index": 39, "name": "created_at", "comment": null}, "due_at": {"type": "date", "index": 40, "name": "due_at", "comment": null}, "modified_at": {"type": "timestamp without time zone", "index": 41, "name": "modified_at", "comment": null}, "paid_at": {"type": "date", "index": 42, "name": "paid_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.sage_intacct_source.stg_sage_intacct__gl_detail"}, "model.sage_intacct_source.stg_sage_intacct__gl_detail_tmp": {"metadata": {"type": "VIEW", "schema": "sage_intacct_integration_tests_3_sage_intacct_staging", "name": "stg_sage_intacct__gl_detail_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "text", "index": 1, "name": "recordno", "comment": null}, "accountno": {"type": "integer", "index": 2, "name": "accountno", "comment": null}, "accounttitle": {"type": "text", "index": 3, "name": "accounttitle", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "batch_date": {"type": "date", "index": 5, "name": "batch_date", "comment": null}, "batch_no": {"type": "integer", "index": 6, "name": "batch_no", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchkey": {"type": "integer", "index": 8, "name": "batchkey", "comment": null}, "bookid": {"type": "text", "index": 9, "name": "bookid", "comment": null}, "creditamount": {"type": "double precision", "index": 10, "name": "creditamount", "comment": null}, "debitamount": {"type": "double precision", "index": 11, "name": "debitamount", "comment": null}, "customerid": {"type": "integer", "index": 12, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 13, "name": "customername", "comment": null}, "description": {"type": "text", "index": 14, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 15, "name": "docnumber", "comment": null}, "entry_date": {"type": "date", "index": 16, "name": "entry_date", "comment": null}, "entry_state": {"type": "text", "index": 17, "name": "entry_state", "comment": null}, "entrydescription": {"type": "text", "index": 18, "name": "entrydescription", "comment": null}, "line_no": {"type": "integer", "index": 19, "name": "line_no", "comment": null}, "recordid": {"type": "integer", "index": 20, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 21, "name": "recordtype", "comment": null}, "totaldue": {"type": "double precision", "index": 22, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 23, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 24, "name": "totalpaid", "comment": null}, "tr_type": {"type": "integer", "index": 25, "name": "tr_type", "comment": null}, "trx_amount": {"type": "double precision", "index": 26, "name": "trx_amount", "comment": null}, "trx_creditamount": {"type": "double precision", "index": 27, "name": "trx_creditamount", "comment": null}, "trx_debitamount": {"type": "double precision", "index": 28, "name": "trx_debitamount", "comment": null}, "vendorid": {"type": "text", "index": 29, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 30, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 31, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 32, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 33, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 34, "name": "whenpaid", "comment": null}}, "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.sage_intacct_source.stg_sage_intacct__gl_detail_tmp"}}, "sources": {"source.sage_intacct_source.sage_intacct.ap_bill": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ap_bill", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "basecurr": {"type": "text", "index": 5, "name": "basecurr", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 6, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 7, "name": "billtopaytokey", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "description": {"type": "text", "index": 9, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 10, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 11, "name": "due_in_days", "comment": null}, "recordid": {"type": "text", "index": 12, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 13, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 14, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 15, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "totaldue": {"type": "integer", "index": 17, "name": "totaldue", "comment": null}, "totalentered": {"type": "integer", "index": 18, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 19, "name": "totalpaid", "comment": null}, "vendorid": {"type": "text", "index": 20, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 21, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 22, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 23, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 24, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 25, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 26, "name": "whenposted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ap_bill"}, "source.sage_intacct_source.sage_intacct.ap_bill_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ap_bill_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 2, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 3, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 4, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 5, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 6, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 7, "name": "baselocation", "comment": null}, "billable": {"type": "boolean", "index": 8, "name": "billable", "comment": null}, "billed": {"type": "boolean", "index": 9, "name": "billed", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "createdby": {"type": "bigint", "index": 12, "name": "createdby", "comment": null}, "currency": {"type": "character varying(100)", "index": 13, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 14, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 15, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 16, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 17, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 18, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 19, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 20, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 21, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 22, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 23, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 24, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 25, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 26, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 27, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 28, "name": "offsetglaccounttitle", "comment": null}, "projectid": {"type": "character varying(100)", "index": 29, "name": "projectid", "comment": null}, "projectname": {"type": "character varying(100)", "index": 30, "name": "projectname", "comment": null}, "recordkey": {"type": "character varying(100)", "index": 31, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 32, "name": "recordno", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 33, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 34, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 35, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 36, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 37, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 38, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 39, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 40, "name": "whenmodified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ap_bill_item"}, "source.sage_intacct_source.sage_intacct.ar_invoice": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ar_invoice", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "auwhencreated": {"type": "timestamp without time zone", "index": 4, "name": "auwhencreated", "comment": null}, "billtopaytocontactname": {"type": "text", "index": 5, "name": "billtopaytocontactname", "comment": null}, "billtopaytokey": {"type": "integer", "index": 6, "name": "billtopaytokey", "comment": null}, "createdby": {"type": "integer", "index": 7, "name": "createdby", "comment": null}, "currency": {"type": "text", "index": 8, "name": "currency", "comment": null}, "customerid": {"type": "text", "index": 9, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 10, "name": "customername", "comment": null}, "description": {"type": "text", "index": 11, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 12, "name": "docnumber", "comment": null}, "due_in_days": {"type": "integer", "index": 13, "name": "due_in_days", "comment": null}, "megaentityid": {"type": "text", "index": 14, "name": "megaentityid", "comment": null}, "megaentityname": {"type": "text", "index": 15, "name": "megaentityname", "comment": null}, "recordid": {"type": "text", "index": 16, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 17, "name": "recordtype", "comment": null}, "shiptoreturntocontactname": {"type": "text", "index": 18, "name": "shiptoreturntocontactname", "comment": null}, "shiptoreturntokey": {"type": "integer", "index": 19, "name": "shiptoreturntokey", "comment": null}, "state": {"type": "text", "index": 20, "name": "state", "comment": null}, "totaldue": {"type": "double precision", "index": 21, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 22, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 23, "name": "totalpaid", "comment": null}, "whencreated": {"type": "date", "index": 24, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 25, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 26, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "integer", "index": 27, "name": "whenpaid", "comment": null}, "whenposted": {"type": "date", "index": 28, "name": "whenposted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ar_invoice"}, "source.sage_intacct_source.sage_intacct.ar_invoice_item": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__ar_invoice_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordkey": {"type": "character varying(100)", "index": 1, "name": "recordkey", "comment": null}, "recordno": {"type": "character varying(100)", "index": 2, "name": "recordno", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "accountkey": {"type": "bigint", "index": 4, "name": "accountkey", "comment": null}, "accountno": {"type": "character varying(100)", "index": 5, "name": "accountno", "comment": null}, "accounttitle": {"type": "character varying(100)", "index": 6, "name": "accounttitle", "comment": null}, "amount": {"type": "character varying(100)", "index": 7, "name": "amount", "comment": null}, "basecurr": {"type": "character varying(100)", "index": 8, "name": "basecurr", "comment": null}, "baselocation": {"type": "bigint", "index": 9, "name": "baselocation", "comment": null}, "classid": {"type": "character varying(100)", "index": 10, "name": "classid", "comment": null}, "classname": {"type": "character varying(100)", "index": 11, "name": "classname", "comment": null}, "currency": {"type": "character varying(100)", "index": 12, "name": "currency", "comment": null}, "customerid": {"type": "character varying(100)", "index": 13, "name": "customerid", "comment": null}, "customername": {"type": "character varying(100)", "index": 14, "name": "customername", "comment": null}, "departmentid": {"type": "character varying(100)", "index": 15, "name": "departmentid", "comment": null}, "departmentname": {"type": "character varying(100)", "index": 16, "name": "departmentname", "comment": null}, "entry_date": {"type": "date", "index": 17, "name": "entry_date", "comment": null}, "entrydescription": {"type": "character varying(100)", "index": 18, "name": "entrydescription", "comment": null}, "exchange_rate": {"type": "character varying(100)", "index": 19, "name": "exchange_rate", "comment": null}, "itemid": {"type": "character varying(100)", "index": 20, "name": "itemid", "comment": null}, "itemname": {"type": "character varying(100)", "index": 21, "name": "itemname", "comment": null}, "line_no": {"type": "bigint", "index": 22, "name": "line_no", "comment": null}, "lineitem": {"type": "boolean", "index": 23, "name": "lineitem", "comment": null}, "locationid": {"type": "character varying(100)", "index": 24, "name": "locationid", "comment": null}, "locationname": {"type": "character varying(100)", "index": 25, "name": "locationname", "comment": null}, "offsetglaccountno": {"type": "bigint", "index": 26, "name": "offsetglaccountno", "comment": null}, "offsetglaccounttitle": {"type": "character varying(100)", "index": 27, "name": "offsetglaccounttitle", "comment": null}, "recordtype": {"type": "character varying(100)", "index": 28, "name": "recordtype", "comment": null}, "state": {"type": "character varying(100)", "index": 29, "name": "state", "comment": null}, "totalpaid": {"type": "character varying(100)", "index": 30, "name": "totalpaid", "comment": null}, "totalselected": {"type": "character varying(100)", "index": 31, "name": "totalselected", "comment": null}, "vendorid": {"type": "character varying(100)", "index": 32, "name": "vendorid", "comment": null}, "vendorname": {"type": "character varying(100)", "index": 33, "name": "vendorname", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 34, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 35, "name": "whenmodified", "comment": null}, "warehouseid": {"type": "character varying(100)", "index": 36, "name": "warehouseid", "comment": null}, "warehousename": {"type": "character varying(100)", "index": 37, "name": "warehousename", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.ar_invoice_item"}, "source.sage_intacct_source.sage_intacct.gl_account": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"accountno": {"type": "integer", "index": 1, "name": "accountno", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "accounttype": {"type": "text", "index": 4, "name": "accounttype", "comment": null}, "alternativeaccount": {"type": "text", "index": 5, "name": "alternativeaccount", "comment": null}, "category": {"type": "text", "index": 6, "name": "category", "comment": null}, "categorykey": {"type": "integer", "index": 7, "name": "categorykey", "comment": null}, "closetoacctkey": {"type": "integer", "index": 8, "name": "closetoacctkey", "comment": null}, "closingaccountno": {"type": "integer", "index": 9, "name": "closingaccountno", "comment": null}, "closingaccounttitle": {"type": "text", "index": 10, "name": "closingaccounttitle", "comment": null}, "closingtype": {"type": "text", "index": 11, "name": "closingtype", "comment": null}, "createdby": {"type": "integer", "index": 12, "name": "createdby", "comment": null}, "modifiedby": {"type": "integer", "index": 13, "name": "modifiedby", "comment": null}, "normalbalance": {"type": "text", "index": 14, "name": "normalbalance", "comment": null}, "recordno": {"type": "integer", "index": 15, "name": "recordno", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "taxable": {"type": "boolean", "index": 17, "name": "taxable", "comment": null}, "title": {"type": "text", "index": 18, "name": "title", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 19, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 20, "name": "whenmodified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.gl_account"}, "source.sage_intacct_source.sage_intacct.gl_batch": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_batch", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "integer", "index": 1, "name": "recordno", "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}, "baselocation": {"type": "integer", "index": 4, "name": "baselocation", "comment": null}, "baselocation_no": {"type": "integer", "index": 5, "name": "baselocation_no", "comment": null}, "batch_date": {"type": "date", "index": 6, "name": "batch_date", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchno": {"type": "integer", "index": 8, "name": "batchno", "comment": null}, "createdby": {"type": "integer", "index": 9, "name": "createdby", "comment": null}, "journal": {"type": "text", "index": 10, "name": "journal", "comment": null}, "megaentityid": {"type": "integer", "index": 11, "name": "megaentityid", "comment": null}, "megaentitykey": {"type": "integer", "index": 12, "name": "megaentitykey", "comment": null}, "megaentityname": {"type": "integer", "index": 13, "name": "megaentityname", "comment": null}, "modified": {"type": "timestamp without time zone", "index": 14, "name": "modified", "comment": null}, "modifiedby": {"type": "integer", "index": 15, "name": "modifiedby", "comment": null}, "modifiedbyid": {"type": "text", "index": 16, "name": "modifiedbyid", "comment": null}, "module": {"type": "text", "index": 17, "name": "module", "comment": null}, "prbatchkey": {"type": "integer", "index": 18, "name": "prbatchkey", "comment": null}, "referenceno": {"type": "integer", "index": 19, "name": "referenceno", "comment": null}, "reversed": {"type": "integer", "index": 20, "name": "reversed", "comment": null}, "reversedfrom": {"type": "integer", "index": 21, "name": "reversedfrom", "comment": null}, "reversedkey": {"type": "integer", "index": 22, "name": "reversedkey", "comment": null}, "state": {"type": "text", "index": 23, "name": "state", "comment": null}, "taximplications": {"type": "integer", "index": 24, "name": "taximplications", "comment": null}, "templatekey": {"type": "integer", "index": 25, "name": "templatekey", "comment": null}, "userinfo_loginid": {"type": "text", "index": 26, "name": "userinfo_loginid", "comment": null}, "userkey": {"type": "integer", "index": 27, "name": "userkey", "comment": null}, "whencreated": {"type": "timestamp without time zone", "index": 28, "name": "whencreated", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 29, "name": "whenmodified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.gl_batch"}, "source.sage_intacct_source.sage_intacct.gl_detail": {"metadata": {"type": "BASE TABLE", "schema": "sage_intacct_integration_tests_3", "name": "sage_intacct__gl_detail", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"recordno": {"type": "text", "index": 1, "name": "recordno", "comment": null}, "accountno": {"type": "integer", "index": 2, "name": "accountno", "comment": null}, "accounttitle": {"type": "text", "index": 3, "name": "accounttitle", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "batch_date": {"type": "date", "index": 5, "name": "batch_date", "comment": null}, "batch_no": {"type": "integer", "index": 6, "name": "batch_no", "comment": null}, "batch_title": {"type": "text", "index": 7, "name": "batch_title", "comment": null}, "batchkey": {"type": "integer", "index": 8, "name": "batchkey", "comment": null}, "bookid": {"type": "text", "index": 9, "name": "bookid", "comment": null}, "creditamount": {"type": "double precision", "index": 10, "name": "creditamount", "comment": null}, "debitamount": {"type": "double precision", "index": 11, "name": "debitamount", "comment": null}, "customerid": {"type": "integer", "index": 12, "name": "customerid", "comment": null}, "customername": {"type": "text", "index": 13, "name": "customername", "comment": null}, "description": {"type": "text", "index": 14, "name": "description", "comment": null}, "docnumber": {"type": "text", "index": 15, "name": "docnumber", "comment": null}, "entry_date": {"type": "date", "index": 16, "name": "entry_date", "comment": null}, "entry_state": {"type": "text", "index": 17, "name": "entry_state", "comment": null}, "entrydescription": {"type": "text", "index": 18, "name": "entrydescription", "comment": null}, "line_no": {"type": "integer", "index": 19, "name": "line_no", "comment": null}, "recordid": {"type": "integer", "index": 20, "name": "recordid", "comment": null}, "recordtype": {"type": "text", "index": 21, "name": "recordtype", "comment": null}, "totaldue": {"type": "double precision", "index": 22, "name": "totaldue", "comment": null}, "totalentered": {"type": "double precision", "index": 23, "name": "totalentered", "comment": null}, "totalpaid": {"type": "integer", "index": 24, "name": "totalpaid", "comment": null}, "tr_type": {"type": "integer", "index": 25, "name": "tr_type", "comment": null}, "trx_amount": {"type": "double precision", "index": 26, "name": "trx_amount", "comment": null}, "trx_creditamount": {"type": "double precision", "index": 27, "name": "trx_creditamount", "comment": null}, "trx_debitamount": {"type": "double precision", "index": 28, "name": "trx_debitamount", "comment": null}, "vendorid": {"type": "text", "index": 29, "name": "vendorid", "comment": null}, "vendorname": {"type": "text", "index": 30, "name": "vendorname", "comment": null}, "whencreated": {"type": "date", "index": 31, "name": "whencreated", "comment": null}, "whendue": {"type": "date", "index": 32, "name": "whendue", "comment": null}, "whenmodified": {"type": "timestamp without time zone", "index": 33, "name": "whenmodified", "comment": null}, "whenpaid": {"type": "date", "index": 34, "name": "whenpaid", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.sage_intacct_source.sage_intacct.gl_detail"}}, "errors": null}
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
index 0807e63..ca1e6f8 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -24,7 +24,7 @@
-