diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh index b1c162e..326b9c2 100644 --- a/.buildkite/scripts/run_models.sh +++ b/.buildkite/scripts/run_models.sh @@ -21,7 +21,7 @@ if [ "$db" = "databricks-sql" ]; then dbt seed --vars '{shopify_schema: shopify_integrations_tests_sqlw}' --target "$db" --full-refresh dbt run --vars '{shopify_schema: shopify_integrations_tests_sqlw}' --target "$db" --full-refresh dbt test --vars '{shopify_schema: shopify_integrations_tests_sqlw}' --target "$db" -dbt run --vars '{shopify_schema: shopify_integrations_tests_sqlw, shopify_timezone: "America/New_York", shopify_using_fulfillment_event: true, shopify_using_all_metafields: true, shopify__calendar_start_date: '2020-01-01'}' --target "$db" --full-refresh +dbt run --vars '{shopify_schema: shopify_integrations_tests_sqlw, shopify_timezone: "America/New_York", shopify_using_fulfillment_event: true, shopify_using_all_metafields: true, shopify__calendar_start_date: '2020-01-01', shopify_using_abandoned_checkout: false, shopify_using_metafield: false}' --target "$db" --full-refresh dbt test --vars '{shopify_schema: shopify_integrations_tests_sqlw}' --target "$db" dbt run-operation fivetran_utils.drop_schemas_automation --target "$db" @@ -29,7 +29,7 @@ else dbt seed --target "$db" --full-refresh dbt run --target "$db" --full-refresh dbt test --target "$db" -dbt run --vars '{shopify_timezone: "America/New_York", shopify_using_fulfillment_event: true, shopify_using_all_metafields: true, shopify__calendar_start_date: '2020-01-01'}' --target "$db" --full-refresh +dbt run --vars '{shopify_timezone: "America/New_York", shopify_using_fulfillment_event: true, shopify_using_all_metafields: true, shopify__calendar_start_date: '2020-01-01', shopify_using_abandoned_checkout: false, shopify_using_metafield: false}' --target "$db" --full-refresh dbt test --target "$db" dbt run-operation fivetran_utils.drop_schemas_automation --target "$db" fi \ No newline at end of file diff --git a/.quickstart/quickstart.yml b/.quickstart/quickstart.yml index 4216d48..39b6172 100644 --- a/.quickstart/quickstart.yml +++ b/.quickstart/quickstart.yml @@ -4,8 +4,14 @@ schema_key: shopify_schema dbt_versions: ">=1.3.0 <2.0.0" table_variables: + shopify_using_metafield: + - metafield shopify_using_fulfillment_event: - fulfillment_event + shopify_using_abandoned_checkout: + - abandoned_checkout + - abandoned_checkout_discount_code + - abandoned_checkout_shipping_line destination_configurations: databricks: diff --git a/CHANGELOG.md b/CHANGELOG.md index e3ab9e7..37fcb81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# dbt_shopify v0.14.0 + +[PR #92](https://github.com/fivetran/dbt_shopify/pull/92) includes the following updates: +## Breaking Changes +- Adds enable/disable config for the `metadata` staging model using the `shopify_using_metafield` variable (default `true`). + - This variable is now a requirement for all `shopify__x_metafield` models. +- Adds enable/disable config for the `abandoned_checkout` staging models using the `shopify_using_abandoned_checkout` variable (default `true`): + - `stg_shopify__abandoned_checkout` + - `stg_shopify__abandoned_checkout_discount_code` + - `stg_shopify__abandoned_checkout_shipping_line`. + + - Disabling `shopify_using_abandoned_checkout` will also disable the `int_shopify__daily_abandoned_checkouts` and `int_shopify__discounts__abandoned_checkouts` intermediate models, in addition to disabling `abandoned_checkout` references in end models (including `shopify__daily_shop`, `shopify__customers`, `shopify__customer_emails`, `shopify__customer_email_cohorts`, `shopify__customer_cohorts`, and `shopify__discounts`). +- For more information on how to enable/disable these tables, refer to the [README](https://github.com/fivetran/dbt_shopify/blob/main/README.md#step-4-disable-models-for-non-existent-sources). This will be a breaking change if you choose to disable these tables. + # dbt_shopify v0.13.2 [PR #89](https://github.com/fivetran/dbt_shopify/pull/89) includes the following changes: diff --git a/README.md b/README.md index 2024bfe..99fca82 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -
+# Shopify Transformation dbt Package ([Docs](https://fivetran.github.io/dbt_shopify/)) + +
-# Shopify Transformation dbt Package ([Docs](https://fivetran.github.io/dbt_shopify/)) - ## What does this dbt package do? This package models Shopify data from [Fivetran's connector](https://fivetran.com/docs/applications/shopify). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/shopify#schemainformation) and builds off the output of our [Shopify source package](https://github.com/fivetran/dbt_shopify_source). @@ -70,7 +70,7 @@ If you are **not** using the [Shopify Holistic reporting package](https://github ```yml packages: - package: fivetran/shopify - version: [">=0.13.0", "<0.14.0"] # we recommend using ranges to capture non-breaking changes automatically + version: [">=0.14.0", "<0.15.0"] # we recommend using ranges to capture non-breaking changes automatically ``` Do **NOT** include the `shopify_source` package in this file. The transformation package itself has a dependency on it and will install the source package as well. @@ -108,16 +108,17 @@ vars: To connect your multiple schema/database sources to the package models, follow the steps outlined in the [Union Data Defined Sources Configuration](https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source) section of the Fivetran Utils documentation for the union_data macro. This will ensure a proper configuration and correct visualization of connections in the DAG. -### Step 4: Enable `fulfillment_event` data +### Step 4: Disable models for non-existent sources -The package takes into consideration that not every Shopify connector may have `fulfillment_event` data enabled. However, this table does hold valuable information that is leveraged in the `shopify__daily_shop` model. `fulfillment_event` data is **disabled by default**. +The package takes into consideration that not every Shopify connector may have the `fulfillment_event`, `metadata`, or `abandoned_checkout` tables (including `abandoned_checkout`, `abandoned_checkout_discount_code`, and `abandoned_checkout_shipping_line`) and allows you to enable or disable the corresponding functionality. To enable/disable the modeling of the mentioned source tables and their downstream references, add the following variable to your `dbt_project.yml` file: -Add the following variable to your `dbt_project.yml` file to enable the modeling of fulfillment events: ```yml # dbt_project.yml vars: - shopify_using_fulfillment_event: true # false by default + shopify_using_fulfillment_event: true # false by default. + shopify_using_metafield: false #true by default + shopify_using_abandoned_checkout: false # true by default. Setting to false will disable `abandoned_checkout`, `abandoned_checkout_discount_code`, and `abandoned_checkout_shipping_line`. ``` ### Step 5: Setting your timezone @@ -143,7 +144,7 @@ This package contains the `shopify__line_item_enhanced` model which constructs a vars: shopify__standardized_billing_model_enabled: true # false by default. ``` - + #### Passing Through Additional Fields This package includes all source columns defined in the macros folder. You can add more columns using our pass-through column variables. These variables allow for the pass-through fields to be aliased (`alias`) and casted (`transform_sql`) if desired, but not required. Datatype casting is configured via a sql snippet within the `transform_sql` key. You may add the desired sql while omitting the `as field_name` at the end and your custom pass-though fields will be casted accordingly. Use the below format for declaring the respective pass-through variables: @@ -173,7 +174,10 @@ vars: #### Adding Metafields In [May 2021](https://fivetran.com/docs/applications/shopify/changelog#may2021) the Shopify connector included support for the [metafield resource](https://shopify.dev/api/admin-rest/2023-01/resources/metafield). If you would like to take advantage of these metafields, this package offers corresponding mapping models which append these metafields to the respective source object for the following tables: collection, customer, order, product_image, product, product_variant, shop. If enabled, these models will materialize as `shopify__[object]_metafields` for each respective supported object. To enable these metafield mapping models, you may use the following configurations within your `dbt_project.yml`. ->**Note**: These metafield models will contain all the same records as the corresponding staging models with the exception of the metafield columns being added. + +>**Note 1**: These metafield models will contain all the same records as the corresponding staging models with the exception of the metafield columns being added. + +>**Note 2**: Please ensure that the `shopify_using_metafield` is not disabled. (Enabled by default) ```yml vars: @@ -250,7 +254,7 @@ This dbt package is dependent on the following dbt packages. These dependencies ```yml packages: - package: fivetran/shopify_source - version: [">=0.12.0", "<0.13.0"] + version: [">=0.13.0", "<0.14.0"] - package: fivetran/fivetran_utils version: [">=0.4.0", "<0.5.0"] diff --git a/dbt_project.yml b/dbt_project.yml index 0f7ec02..d6cd352 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'shopify' -version: '0.13.2' +version: '0.14.0' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] models: @@ -10,7 +10,7 @@ models: +materialized: ephemeral int_shopify__customer_email_rollup: +materialized: view # so we can use the dbt_utils.star macro - + vars: shopify: shopify_customer: "{{ ref('stg_shopify__customer') }}" diff --git a/docs/catalog.json b/docs/catalog.json index 13108b2..8de77ff 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.8.3", "generated_at": "2024-10-18T21:03:23.971687Z", "invocation_id": "4b6a7981-863f-4ccc-acca-52689d1b12ce", "env": {}}, "nodes": {"seed.shopify_integration_tests.shopify_abandoned_checkout_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_abandoned_checkout_data"}, "seed.shopify_integration_tests.shopify_abandoned_checkout_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_integration_tests.shopify_abandoned_checkout_discount_code_data"}, "seed.shopify_integration_tests.shopify_abandoned_checkout_shipping_line_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_integration_tests.shopify_abandoned_checkout_shipping_line_data"}, "seed.shopify_integration_tests.shopify_collection_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_collection_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_integration_tests.shopify_collection_data"}, "seed.shopify_integration_tests.shopify_collection_product_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_collection_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_collection_product_data"}, "seed.shopify_integration_tests.shopify_customer_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_customer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_customer_data"}, "seed.shopify_integration_tests.shopify_customer_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_customer_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_customer_tag_data"}, "seed.shopify_integration_tests.shopify_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_integration_tests.shopify_discount_code_data"}, "seed.shopify_integration_tests.shopify_fulfillment_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_fulfillment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_integration_tests.shopify_fulfillment_data"}, "seed.shopify_integration_tests.shopify_fulfillment_event_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_fulfillment_event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_fulfillment_event_data"}, "seed.shopify_integration_tests.shopify_inventory_item_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_inventory_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_inventory_item_data"}, "seed.shopify_integration_tests.shopify_inventory_level_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_inventory_level_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_inventory_level_data"}, "seed.shopify_integration_tests.shopify_location_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_location_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_location_data"}, "seed.shopify_integration_tests.shopify_metafield_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_metafield_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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": "seed.shopify_integration_tests.shopify_metafield_data"}, "seed.shopify_integration_tests.shopify_order_adjustment_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_adjustment_data"}, "seed.shopify_integration_tests.shopify_order_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_data"}, "seed.shopify_integration_tests.shopify_order_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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": "seed.shopify_integration_tests.shopify_order_discount_code_data"}, "seed.shopify_integration_tests.shopify_order_line_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_line_data"}, "seed.shopify_integration_tests.shopify_order_line_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_line_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_integration_tests.shopify_order_line_refund_data"}, "seed.shopify_integration_tests.shopify_order_note_attribute_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_note_attribute_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_note_attribute_data"}, "seed.shopify_integration_tests.shopify_order_shipping_line_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_order_shipping_line_data"}, "seed.shopify_integration_tests.shopify_order_shipping_tax_line_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_shipping_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_order_shipping_tax_line_data"}, "seed.shopify_integration_tests.shopify_order_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_tag_data"}, "seed.shopify_integration_tests.shopify_order_url_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_url_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_url_tag_data"}, "seed.shopify_integration_tests.shopify_price_rule_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_price_rule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_price_rule_data"}, "seed.shopify_integration_tests.shopify_product_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_product_data"}, "seed.shopify_integration_tests.shopify_product_image_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_image_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_integration_tests.shopify_product_image_data"}, "seed.shopify_integration_tests.shopify_product_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_product_tag_data"}, "seed.shopify_integration_tests.shopify_product_variant_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_variant_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_integration_tests.shopify_product_variant_data"}, "seed.shopify_integration_tests.shopify_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_refund_data"}, "seed.shopify_integration_tests.shopify_shop_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_shop_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_integration_tests.shopify_shop_data"}, "seed.shopify_integration_tests.shopify_tax_line_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_tax_line_data"}, "seed.shopify_integration_tests.shopify_tender_transaction_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_tender_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_tender_transaction_data"}, "seed.shopify_integration_tests.shopify_transaction_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_integration_tests.shopify_transaction_data"}, "model.shopify.int_shopify__customer_email_rollup": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "int_shopify__customer_email_rollup", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "customer_ids": {"type": "text", "index": 3, "name": "customer_ids", "comment": null}, "phone_numbers": {"type": "text", "index": 4, "name": "phone_numbers", "comment": null}, "customer_tags": {"type": "text", "index": 5, "name": "customer_tags", "comment": null}, "first_account_created_at": {"type": "timestamp without time zone", "index": 6, "name": "first_account_created_at", "comment": null}, "last_account_created_at": {"type": "timestamp without time zone", "index": 7, "name": "last_account_created_at", "comment": null}, "last_updated_at": {"type": "timestamp without time zone", "index": 8, "name": "last_updated_at", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 9, "name": "marketing_consent_updated_at", "comment": null}, "last_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "last_fivetran_synced", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 11, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 12, "name": "is_verified_email", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 14, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 15, "name": "default_address_id", "comment": null}, "account_state": {"type": "text", "index": 16, "name": "account_state", "comment": null}, "note": {"type": "text", "index": 17, "name": "note", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 19, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 20, "name": "marketing_opt_in_level", "comment": null}}, "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.shopify.int_shopify__customer_email_rollup"}, "model.shopify.shopify__calendar": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__calendar", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}}, "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.shopify.shopify__calendar"}, "model.shopify.shopify__collection_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__collection_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 2, "name": "is_deleted", "comment": null}, "rule_logic": {"type": "text", "index": 3, "name": "rule_logic", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_scope": {"type": "integer", "index": 5, "name": "published_scope", "comment": null}, "rules": {"type": "integer", "index": 6, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 7, "name": "sort_order", "comment": null}, "title": {"type": "character varying", "index": 8, "name": "title", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 9, "name": "published_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify.shopify__collection_metafields"}, "model.shopify.shopify__customer_cohorts": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__customer_cohorts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_month": {"type": "date", "index": 1, "name": "date_month", "comment": null}, "customer_id": {"type": "bigint", "index": 2, "name": "customer_id", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "first_order_timestamp", "comment": null}, "cohort_month": {"type": "date", "index": 4, "name": "cohort_month", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}, "order_count_in_month": {"type": "bigint", "index": 6, "name": "order_count_in_month", "comment": null}, "total_price_in_month": {"type": "double precision", "index": 7, "name": "total_price_in_month", "comment": null}, "line_item_count_in_month": {"type": "numeric", "index": 8, "name": "line_item_count_in_month", "comment": null}, "total_price_lifetime": {"type": "double precision", "index": 9, "name": "total_price_lifetime", "comment": null}, "order_count_lifetime": {"type": "numeric", "index": 10, "name": "order_count_lifetime", "comment": null}, "line_item_count_lifetime": {"type": "numeric", "index": 11, "name": "line_item_count_lifetime", "comment": null}, "cohort_month_number": {"type": "bigint", "index": 12, "name": "cohort_month_number", "comment": null}, "customer_cohort_id": {"type": "text", "index": 13, "name": "customer_cohort_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.shopify.shopify__customer_cohorts"}, "model.shopify.shopify__customer_email_cohorts": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__customer_email_cohorts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_month": {"type": "date", "index": 1, "name": "date_month", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "first_order_timestamp", "comment": null}, "cohort_month": {"type": "timestamp without time zone", "index": 4, "name": "cohort_month", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}, "order_count_in_month": {"type": "bigint", "index": 6, "name": "order_count_in_month", "comment": null}, "total_price_in_month": {"type": "double precision", "index": 7, "name": "total_price_in_month", "comment": null}, "line_item_count_in_month": {"type": "numeric", "index": 8, "name": "line_item_count_in_month", "comment": null}, "total_price_lifetime": {"type": "double precision", "index": 9, "name": "total_price_lifetime", "comment": null}, "order_count_lifetime": {"type": "numeric", "index": 10, "name": "order_count_lifetime", "comment": null}, "line_item_count_lifetime": {"type": "numeric", "index": 11, "name": "line_item_count_lifetime", "comment": null}, "cohort_month_number": {"type": "bigint", "index": 12, "name": "cohort_month_number", "comment": null}, "customer_cohort_id": {"type": "text", "index": 13, "name": "customer_cohort_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.shopify.shopify__customer_email_cohorts"}, "model.shopify.shopify__customer_emails": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__customer_emails", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "customer_ids": {"type": "text", "index": 3, "name": "customer_ids", "comment": null}, "phone_numbers": {"type": "text", "index": 4, "name": "phone_numbers", "comment": null}, "customer_tags": {"type": "text", "index": 5, "name": "customer_tags", "comment": null}, "first_account_created_at": {"type": "timestamp without time zone", "index": 6, "name": "first_account_created_at", "comment": null}, "last_account_created_at": {"type": "timestamp without time zone", "index": 7, "name": "last_account_created_at", "comment": null}, "last_updated_at": {"type": "timestamp without time zone", "index": 8, "name": "last_updated_at", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 9, "name": "marketing_consent_updated_at", "comment": null}, "last_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "last_fivetran_synced", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 11, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 12, "name": "is_verified_email", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 14, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 15, "name": "default_address_id", "comment": null}, "account_state": {"type": "text", "index": 16, "name": "account_state", "comment": null}, "note": {"type": "text", "index": 17, "name": "note", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 19, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 20, "name": "marketing_opt_in_level", "comment": null}, "lifetime_abandoned_checkouts": {"type": "bigint", "index": 21, "name": "lifetime_abandoned_checkouts", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 22, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "most_recent_order_timestamp", "comment": null}, "avg_order_value": {"type": "double precision", "index": 24, "name": "avg_order_value", "comment": null}, "lifetime_total_spent": {"type": "double precision", "index": 25, "name": "lifetime_total_spent", "comment": null}, "lifetime_total_refunded": {"type": "double precision", "index": 26, "name": "lifetime_total_refunded", "comment": null}, "lifetime_total_net": {"type": "double precision", "index": 27, "name": "lifetime_total_net", "comment": null}, "lifetime_count_orders": {"type": "bigint", "index": 28, "name": "lifetime_count_orders", "comment": null}, "avg_quantity_per_order": {"type": "numeric", "index": 29, "name": "avg_quantity_per_order", "comment": null}, "lifetime_total_tax": {"type": "double precision", "index": 30, "name": "lifetime_total_tax", "comment": null}, "avg_tax_per_order": {"type": "double precision", "index": 31, "name": "avg_tax_per_order", "comment": null}, "lifetime_total_discount": {"type": "numeric", "index": 32, "name": "lifetime_total_discount", "comment": null}, "avg_discount_per_order": {"type": "numeric", "index": 33, "name": "avg_discount_per_order", "comment": null}, "lifetime_total_shipping": {"type": "double precision", "index": 34, "name": "lifetime_total_shipping", "comment": null}, "avg_shipping_per_order": {"type": "double precision", "index": 35, "name": "avg_shipping_per_order", "comment": null}, "lifetime_total_shipping_with_discounts": {"type": "double precision", "index": 36, "name": "lifetime_total_shipping_with_discounts", "comment": null}, "avg_shipping_with_discounts_per_order": {"type": "double precision", "index": 37, "name": "avg_shipping_with_discounts_per_order", "comment": null}, "lifetime_total_shipping_tax": {"type": "double precision", "index": 38, "name": "lifetime_total_shipping_tax", "comment": null}, "avg_shipping_tax_per_order": {"type": "double precision", "index": 39, "name": "avg_shipping_tax_per_order", "comment": null}}, "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.shopify.shopify__customer_emails"}, "model.shopify.shopify__customer_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__customer_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "orders_count": {"type": "integer", "index": 5, "name": "orders_count", "comment": null}, "default_address_id": {"type": "bigint", "index": 6, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 7, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 8, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 9, "name": "is_tax_exempt", "comment": null}, "total_spent": {"type": "double precision", "index": 10, "name": "total_spent", "comment": null}, "is_verified_email": {"type": "boolean", "index": 11, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 12, "name": "note", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 14, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 15, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 16, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 17, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 18, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "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.shopify.shopify__customer_metafields"}, "model.shopify.shopify__customers": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__customers", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 5, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 6, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 7, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 8, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 9, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 10, "name": "note", "comment": null}, "currency": {"type": "text", "index": 11, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 12, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 13, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 14, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 15, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 16, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 17, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}, "lifetime_abandoned_checkouts": {"type": "bigint", "index": 19, "name": "lifetime_abandoned_checkouts", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 21, "name": "most_recent_order_timestamp", "comment": null}, "customer_tags": {"type": "text", "index": 22, "name": "customer_tags", "comment": null}, "avg_order_value": {"type": "double precision", "index": 23, "name": "avg_order_value", "comment": null}, "lifetime_total_spent": {"type": "double precision", "index": 24, "name": "lifetime_total_spent", "comment": null}, "lifetime_total_refunded": {"type": "double precision", "index": 25, "name": "lifetime_total_refunded", "comment": null}, "lifetime_total_net": {"type": "double precision", "index": 26, "name": "lifetime_total_net", "comment": null}, "lifetime_count_orders": {"type": "bigint", "index": 27, "name": "lifetime_count_orders", "comment": null}, "avg_quantity_per_order": {"type": "numeric", "index": 28, "name": "avg_quantity_per_order", "comment": null}, "lifetime_total_tax": {"type": "double precision", "index": 29, "name": "lifetime_total_tax", "comment": null}, "avg_tax_per_order": {"type": "double precision", "index": 30, "name": "avg_tax_per_order", "comment": null}, "lifetime_total_discount": {"type": "numeric", "index": 31, "name": "lifetime_total_discount", "comment": null}, "avg_discount_per_order": {"type": "numeric", "index": 32, "name": "avg_discount_per_order", "comment": null}, "lifetime_total_shipping": {"type": "double precision", "index": 33, "name": "lifetime_total_shipping", "comment": null}, "avg_shipping_per_order": {"type": "double precision", "index": 34, "name": "avg_shipping_per_order", "comment": null}, "lifetime_total_shipping_with_discounts": {"type": "double precision", "index": 35, "name": "lifetime_total_shipping_with_discounts", "comment": null}, "avg_shipping_with_discounts_per_order": {"type": "double precision", "index": 36, "name": "avg_shipping_with_discounts_per_order", "comment": null}, "lifetime_total_shipping_tax": {"type": "double precision", "index": 37, "name": "lifetime_total_shipping_tax", "comment": null}, "avg_shipping_tax_per_order": {"type": "double precision", "index": 38, "name": "avg_shipping_tax_per_order", "comment": null}}, "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.shopify.shopify__customers"}, "model.shopify.shopify__daily_shop": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__daily_shop", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "shop_id": {"type": "integer", "index": 2, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "domain": {"type": "text", "index": 4, "name": "domain", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 7, "name": "enabled_presentment_currencies", "comment": null}, "iana_timezone": {"type": "text", "index": 8, "name": "iana_timezone", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}, "count_orders": {"type": "bigint", "index": 11, "name": "count_orders", "comment": null}, "count_line_items": {"type": "numeric", "index": 12, "name": "count_line_items", "comment": null}, "avg_line_item_count": {"type": "numeric", "index": 13, "name": "avg_line_item_count", "comment": null}, "count_customers": {"type": "bigint", "index": 14, "name": "count_customers", "comment": null}, "count_customer_emails": {"type": "bigint", "index": 15, "name": "count_customer_emails", "comment": null}, "order_adjusted_total": {"type": "double precision", "index": 16, "name": "order_adjusted_total", "comment": null}, "avg_order_value": {"type": "double precision", "index": 17, "name": "avg_order_value", "comment": null}, "shipping_cost": {"type": "double precision", "index": 18, "name": "shipping_cost", "comment": null}, "order_adjustment_amount": {"type": "numeric", "index": 19, "name": "order_adjustment_amount", "comment": null}, "order_adjustment_tax_amount": {"type": "double precision", "index": 20, "name": "order_adjustment_tax_amount", "comment": null}, "refund_subtotal": {"type": "numeric", "index": 21, "name": "refund_subtotal", "comment": null}, "refund_total_tax": {"type": "double precision", "index": 22, "name": "refund_total_tax", "comment": null}, "total_discounts": {"type": "double precision", "index": 23, "name": "total_discounts", "comment": null}, "avg_discount": {"type": "double precision", "index": 24, "name": "avg_discount", "comment": null}, "shipping_discount_amount": {"type": "double precision", "index": 25, "name": "shipping_discount_amount", "comment": null}, "avg_shipping_discount_amount": {"type": "double precision", "index": 26, "name": "avg_shipping_discount_amount", "comment": null}, "percentage_calc_discount_amount": {"type": "double precision", "index": 27, "name": "percentage_calc_discount_amount", "comment": null}, "avg_percentage_calc_discount_amount": {"type": "double precision", "index": 28, "name": "avg_percentage_calc_discount_amount", "comment": null}, "fixed_amount_discount_amount": {"type": "double precision", "index": 29, "name": "fixed_amount_discount_amount", "comment": null}, "avg_fixed_amount_discount_amount": {"type": "double precision", "index": 30, "name": "avg_fixed_amount_discount_amount", "comment": null}, "count_discount_codes_applied": {"type": "numeric", "index": 31, "name": "count_discount_codes_applied", "comment": null}, "count_locations_ordered_from": {"type": "bigint", "index": 32, "name": "count_locations_ordered_from", "comment": null}, "count_orders_with_discounts": {"type": "bigint", "index": 33, "name": "count_orders_with_discounts", "comment": null}, "count_orders_with_refunds": {"type": "bigint", "index": 34, "name": "count_orders_with_refunds", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 35, "name": "first_order_timestamp", "comment": null}, "last_order_timestamp": {"type": "timestamp without time zone", "index": 36, "name": "last_order_timestamp", "comment": null}, "quantity_sold": {"type": "bigint", "index": 37, "name": "quantity_sold", "comment": null}, "quantity_refunded": {"type": "numeric", "index": 38, "name": "quantity_refunded", "comment": null}, "quantity_net": {"type": "numeric", "index": 39, "name": "quantity_net", "comment": null}, "avg_quantity_sold": {"type": "bigint", "index": 40, "name": "avg_quantity_sold", "comment": null}, "avg_quantity_net": {"type": "numeric", "index": 41, "name": "avg_quantity_net", "comment": null}, "count_variants_sold": {"type": "bigint", "index": 42, "name": "count_variants_sold", "comment": null}, "count_products_sold": {"type": "bigint", "index": 43, "name": "count_products_sold", "comment": null}, "quantity_gift_cards_sold": {"type": "numeric", "index": 44, "name": "quantity_gift_cards_sold", "comment": null}, "quantity_requiring_shipping": {"type": "numeric", "index": 45, "name": "quantity_requiring_shipping", "comment": null}, "count_abandoned_checkouts": {"type": "bigint", "index": 46, "name": "count_abandoned_checkouts", "comment": null}, "count_customers_abandoned_checkout": {"type": "bigint", "index": 47, "name": "count_customers_abandoned_checkout", "comment": null}, "count_customer_emails_abandoned_checkout": {"type": "bigint", "index": 48, "name": "count_customer_emails_abandoned_checkout", "comment": null}, "count_fulfillment_attempted_delivery": {"type": "bigint", "index": 49, "name": "count_fulfillment_attempted_delivery", "comment": null}, "count_fulfillment_delayed": {"type": "bigint", "index": 50, "name": "count_fulfillment_delayed", "comment": null}, "count_fulfillment_delivered": {"type": "bigint", "index": 51, "name": "count_fulfillment_delivered", "comment": null}, "count_fulfillment_failure": {"type": "bigint", "index": 52, "name": "count_fulfillment_failure", "comment": null}, "count_fulfillment_in_transit": {"type": "bigint", "index": 53, "name": "count_fulfillment_in_transit", "comment": null}, "count_fulfillment_out_for_delivery": {"type": "bigint", "index": 54, "name": "count_fulfillment_out_for_delivery", "comment": null}, "count_fulfillment_ready_for_pickup": {"type": "bigint", "index": 55, "name": "count_fulfillment_ready_for_pickup", "comment": null}, "count_fulfillment_picked_up": {"type": "bigint", "index": 56, "name": "count_fulfillment_picked_up", "comment": null}, "count_fulfillment_label_printed": {"type": "bigint", "index": 57, "name": "count_fulfillment_label_printed", "comment": null}, "count_fulfillment_label_purchased": {"type": "bigint", "index": 58, "name": "count_fulfillment_label_purchased", "comment": null}, "count_fulfillment_confirmed": {"type": "bigint", "index": 59, "name": "count_fulfillment_confirmed", "comment": null}}, "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.shopify.shopify__daily_shop"}, "model.shopify.shopify__discounts": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__discounts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"discount_code_id": {"type": "integer", "index": 1, "name": "discount_code_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "price_rule_id": {"type": "integer", "index": 3, "name": "price_rule_id", "comment": null}, "usage_count": {"type": "double precision", "index": 4, "name": "usage_count", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}, "discounts_unique_key": {"type": "text", "index": 9, "name": "discounts_unique_key", "comment": null}, "target_selection": {"type": "text", "index": 10, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 11, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "usage_limit": {"type": "integer", "index": 13, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 14, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 15, "name": "value_type", "comment": null}, "allocation_limit": {"type": "integer", "index": 16, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 17, "name": "allocation_method", "comment": null}, "is_once_per_customer": {"type": "boolean", "index": 18, "name": "is_once_per_customer", "comment": null}, "customer_selection": {"type": "text", "index": 19, "name": "customer_selection", "comment": null}, "prereq_min_quantity": {"type": "integer", "index": 20, "name": "prereq_min_quantity", "comment": null}, "prereq_max_shipping_price": {"type": "integer", "index": 21, "name": "prereq_max_shipping_price", "comment": null}, "prereq_min_subtotal": {"type": "double precision", "index": 22, "name": "prereq_min_subtotal", "comment": null}, "prereq_min_purchase_quantity_for_entitlement": {"type": "integer", "index": 23, "name": "prereq_min_purchase_quantity_for_entitlement", "comment": null}, "prereq_buy_x_get_this": {"type": "integer", "index": 24, "name": "prereq_buy_x_get_this", "comment": null}, "prereq_buy_this_get_y": {"type": "integer", "index": 25, "name": "prereq_buy_this_get_y", "comment": null}, "starts_at": {"type": "timestamp without time zone", "index": 26, "name": "starts_at", "comment": null}, "ends_at": {"type": "timestamp without time zone", "index": 27, "name": "ends_at", "comment": null}, "price_rule_created_at": {"type": "timestamp without time zone", "index": 28, "name": "price_rule_created_at", "comment": null}, "price_rule_updated_at": {"type": "timestamp without time zone", "index": 29, "name": "price_rule_updated_at", "comment": null}, "count_orders": {"type": "bigint", "index": 30, "name": "count_orders", "comment": null}, "count_abandoned_checkouts": {"type": "bigint", "index": 31, "name": "count_abandoned_checkouts", "comment": null}, "avg_order_discount_amount": {"type": "double precision", "index": 32, "name": "avg_order_discount_amount", "comment": null}, "total_order_discount_amount": {"type": "double precision", "index": 33, "name": "total_order_discount_amount", "comment": null}, "total_abandoned_checkout_discount_amount": {"type": "double precision", "index": 34, "name": "total_abandoned_checkout_discount_amount", "comment": null}, "total_order_line_items_price": {"type": "double precision", "index": 35, "name": "total_order_line_items_price", "comment": null}, "total_order_shipping_cost": {"type": "double precision", "index": 36, "name": "total_order_shipping_cost", "comment": null}, "total_abandoned_checkout_shipping_price": {"type": "double precision", "index": 37, "name": "total_abandoned_checkout_shipping_price", "comment": null}, "total_order_refund_amount": {"type": "double precision", "index": 38, "name": "total_order_refund_amount", "comment": null}, "count_customers": {"type": "bigint", "index": 39, "name": "count_customers", "comment": null}, "count_customer_emails": {"type": "bigint", "index": 40, "name": "count_customer_emails", "comment": null}, "count_abandoned_checkout_customers": {"type": "bigint", "index": 41, "name": "count_abandoned_checkout_customers", "comment": null}, "count_abandoned_checkout_customer_emails": {"type": "bigint", "index": 42, "name": "count_abandoned_checkout_customer_emails", "comment": null}}, "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.shopify.shopify__discounts"}, "model.shopify.shopify__inventory_levels": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__inventory_levels", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "available_quantity": {"type": "integer", "index": 3, "name": "available_quantity", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "is_inventory_item_deleted": {"type": "boolean", "index": 8, "name": "is_inventory_item_deleted", "comment": null}, "cost": {"type": "integer", "index": 9, "name": "cost", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 10, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 11, "name": "province_code_of_origin", "comment": null}, "is_shipping_required": {"type": "integer", "index": 12, "name": "is_shipping_required", "comment": null}, "is_inventory_quantity_tracked": {"type": "integer", "index": 13, "name": "is_inventory_quantity_tracked", "comment": null}, "inventory_item_created_at": {"type": "timestamp without time zone", "index": 14, "name": "inventory_item_created_at", "comment": null}, "inventory_item_updated_at": {"type": "timestamp without time zone", "index": 15, "name": "inventory_item_updated_at", "comment": null}, "location_name": {"type": "text", "index": 16, "name": "location_name", "comment": null}, "is_location_deleted": {"type": "boolean", "index": 17, "name": "is_location_deleted", "comment": null}, "is_location_active": {"type": "boolean", "index": 18, "name": "is_location_active", "comment": null}, "address_1": {"type": "text", "index": 19, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 20, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 21, "name": "city", "comment": null}, "country": {"type": "text", "index": 22, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 23, "name": "country_code", "comment": null}, "is_legacy_location": {"type": "boolean", "index": 24, "name": "is_legacy_location", "comment": null}, "province": {"type": "text", "index": 25, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 26, "name": "province_code", "comment": null}, "phone": {"type": "integer", "index": 27, "name": "phone", "comment": null}, "zip": {"type": "integer", "index": 28, "name": "zip", "comment": null}, "location_created_at": {"type": "timestamp without time zone", "index": 29, "name": "location_created_at", "comment": null}, "location_updated_at": {"type": "timestamp without time zone", "index": 30, "name": "location_updated_at", "comment": null}, "variant_id": {"type": "bigint", "index": 31, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 32, "name": "product_id", "comment": null}, "variant_title": {"type": "text", "index": 33, "name": "variant_title", "comment": null}, "variant_inventory_policy": {"type": "text", "index": 34, "name": "variant_inventory_policy", "comment": null}, "variant_price": {"type": "integer", "index": 35, "name": "variant_price", "comment": null}, "variant_image_id": {"type": "integer", "index": 36, "name": "variant_image_id", "comment": null}, "variant_fulfillment_service": {"type": "text", "index": 37, "name": "variant_fulfillment_service", "comment": null}, "variant_inventory_management": {"type": "text", "index": 38, "name": "variant_inventory_management", "comment": null}, "is_variant_taxable": {"type": "boolean", "index": 39, "name": "is_variant_taxable", "comment": null}, "variant_barcode": {"type": "integer", "index": 40, "name": "variant_barcode", "comment": null}, "variant_grams": {"type": "integer", "index": 41, "name": "variant_grams", "comment": null}, "variant_inventory_quantity": {"type": "integer", "index": 42, "name": "variant_inventory_quantity", "comment": null}, "variant_weight": {"type": "integer", "index": 43, "name": "variant_weight", "comment": null}, "variant_weight_unit": {"type": "text", "index": 44, "name": "variant_weight_unit", "comment": null}, "variant_option_1": {"type": "text", "index": 45, "name": "variant_option_1", "comment": null}, "variant_option_2": {"type": "integer", "index": 46, "name": "variant_option_2", "comment": null}, "variant_option_3": {"type": "integer", "index": 47, "name": "variant_option_3", "comment": null}, "variant_tax_code": {"type": "text", "index": 48, "name": "variant_tax_code", "comment": null}, "variant_created_at": {"type": "timestamp without time zone", "index": 49, "name": "variant_created_at", "comment": null}, "variant_updated_at": {"type": "timestamp without time zone", "index": 50, "name": "variant_updated_at", "comment": null}, "subtotal_sold": {"type": "bigint", "index": 51, "name": "subtotal_sold", "comment": null}, "quantity_sold": {"type": "bigint", "index": 52, "name": "quantity_sold", "comment": null}, "count_distinct_orders": {"type": "bigint", "index": 53, "name": "count_distinct_orders", "comment": null}, "count_distinct_customers": {"type": "bigint", "index": 54, "name": "count_distinct_customers", "comment": null}, "count_distinct_customer_emails": {"type": "bigint", "index": 55, "name": "count_distinct_customer_emails", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 56, "name": "first_order_timestamp", "comment": null}, "last_order_timestamp": {"type": "timestamp without time zone", "index": 57, "name": "last_order_timestamp", "comment": null}, "subtotal_sold_refunds": {"type": "numeric", "index": 58, "name": "subtotal_sold_refunds", "comment": null}, "quantity_sold_refunds": {"type": "numeric", "index": 59, "name": "quantity_sold_refunds", "comment": null}, "count_fulfillment_pending": {"type": "bigint", "index": 60, "name": "count_fulfillment_pending", "comment": null}, "count_fulfillment_open": {"type": "bigint", "index": 61, "name": "count_fulfillment_open", "comment": null}, "count_fulfillment_success": {"type": "bigint", "index": 62, "name": "count_fulfillment_success", "comment": null}, "count_fulfillment_cancelled": {"type": "bigint", "index": 63, "name": "count_fulfillment_cancelled", "comment": null}, "count_fulfillment_error": {"type": "bigint", "index": 64, "name": "count_fulfillment_error", "comment": null}, "count_fulfillment_failure": {"type": "bigint", "index": 65, "name": "count_fulfillment_failure", "comment": null}, "net_subtotal_sold": {"type": "numeric", "index": 66, "name": "net_subtotal_sold", "comment": null}, "net_quantity_sold": {"type": "numeric", "index": 67, "name": "net_quantity_sold", "comment": null}}, "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.shopify.shopify__inventory_levels"}, "model.shopify.shopify__line_item_enhanced": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__line_item_enhanced", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"header_id": {"type": "bigint", "index": 1, "name": "header_id", "comment": null}, "line_item_id": {"type": "numeric(28,6)", "index": 2, "name": "line_item_id", "comment": null}, "line_item_index": {"type": "numeric(28,6)", "index": 3, "name": "line_item_index", "comment": null}, "record_type": {"type": "text", "index": 4, "name": "record_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "header_status": {"type": "text", "index": 7, "name": "header_status", "comment": null}, "product_id": {"type": "numeric(28,6)", "index": 8, "name": "product_id", "comment": null}, "product_name": {"type": "text", "index": 9, "name": "product_name", "comment": null}, "transaction_type": {"type": "text", "index": 10, "name": "transaction_type", "comment": null}, "billing_type": {"type": "text", "index": 11, "name": "billing_type", "comment": null}, "product_type": {"type": "text", "index": 12, "name": "product_type", "comment": null}, "quantity": {"type": "numeric(28,6)", "index": 13, "name": "quantity", "comment": null}, "unit_amount": {"type": "numeric(28,6)", "index": 14, "name": "unit_amount", "comment": null}, "discount_amount": {"type": "double precision", "index": 15, "name": "discount_amount", "comment": null}, "tax_amount": {"type": "numeric", "index": 16, "name": "tax_amount", "comment": null}, "total_amount": {"type": "numeric(28,6)", "index": 17, "name": "total_amount", "comment": null}, "payment_id": {"type": "text", "index": 18, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 19, "name": "payment_method_id", "comment": null}, "payment_method": {"type": "text", "index": 20, "name": "payment_method", "comment": null}, "payment_at": {"type": "text", "index": 21, "name": "payment_at", "comment": null}, "fee_amount": {"type": "double precision", "index": 22, "name": "fee_amount", "comment": null}, "refund_amount": {"type": "double precision", "index": 23, "name": "refund_amount", "comment": null}, "subscription_id": {"type": "text", "index": 24, "name": "subscription_id", "comment": null}, "subscription_plan": {"type": "text", "index": 25, "name": "subscription_plan", "comment": null}, "subscription_period_started_at": {"type": "timestamp without time zone", "index": 26, "name": "subscription_period_started_at", "comment": null}, "subscription_period_ended_at": {"type": "timestamp without time zone", "index": 27, "name": "subscription_period_ended_at", "comment": null}, "subscription_status": {"type": "text", "index": 28, "name": "subscription_status", "comment": null}, "customer_id": {"type": "bigint", "index": 29, "name": "customer_id", "comment": null}, "customer_created_at": {"type": "timestamp without time zone", "index": 30, "name": "customer_created_at", "comment": null}, "customer_level": {"type": "text", "index": 31, "name": "customer_level", "comment": null}, "customer_name": {"type": "text", "index": 32, "name": "customer_name", "comment": null}, "customer_company": {"type": "text", "index": 33, "name": "customer_company", "comment": null}, "customer_email": {"type": "text", "index": 34, "name": "customer_email", "comment": null}, "customer_city": {"type": "text", "index": 35, "name": "customer_city", "comment": null}, "customer_country": {"type": "text", "index": 36, "name": "customer_country", "comment": null}, "source_relation": {"type": "text", "index": 37, "name": "source_relation", "comment": null}}, "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.shopify.shopify__line_item_enhanced"}, "model.shopify.shopify__order_lines": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__order_lines", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_id": {"type": "bigint", "index": 1, "name": "order_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "order_id": {"type": "bigint", "index": 4, "name": "order_id", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 5, "name": "fulfillable_quantity", "comment": null}, "fulfillment_status": {"type": "text", "index": 6, "name": "fulfillment_status", "comment": null}, "is_gift_card": {"type": "boolean", "index": 7, "name": "is_gift_card", "comment": null}, "grams": {"type": "integer", "index": 8, "name": "grams", "comment": null}, "pre_tax_price": {"type": "integer", "index": 9, "name": "pre_tax_price", "comment": null}, "pre_tax_price_set": {"type": "text", "index": 10, "name": "pre_tax_price_set", "comment": null}, "price": {"type": "double precision", "index": 11, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 12, "name": "price_set", "comment": null}, "product_id": {"type": "bigint", "index": 13, "name": "product_id", "comment": null}, "quantity": {"type": "integer", "index": 14, "name": "quantity", "comment": null}, "is_shipping_required": {"type": "boolean", "index": 15, "name": "is_shipping_required", "comment": null}, "sku": {"type": "text", "index": 16, "name": "sku", "comment": null}, "is_taxable": {"type": "boolean", "index": 17, "name": "is_taxable", "comment": null}, "tax_code": {"type": "text", "index": 18, "name": "tax_code", "comment": null}, "title": {"type": "text", "index": 19, "name": "title", "comment": null}, "total_discount": {"type": "integer", "index": 20, "name": "total_discount", "comment": null}, "total_discount_set": {"type": "text", "index": 21, "name": "total_discount_set", "comment": null}, "variant_id": {"type": "bigint", "index": 22, "name": "variant_id", "comment": null}, "variant_title": {"type": "text", "index": 23, "name": "variant_title", "comment": null}, "variant_inventory_management": {"type": "text", "index": 24, "name": "variant_inventory_management", "comment": null}, "vendor": {"type": "text", "index": 25, "name": "vendor", "comment": null}, "properties": {"type": "text", "index": 26, "name": "properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 27, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}, "order_lines_unique_key": {"type": "text", "index": 29, "name": "order_lines_unique_key", "comment": null}, "restock_types": {"type": "text", "index": 30, "name": "restock_types", "comment": null}, "refunded_quantity": {"type": "bigint", "index": 31, "name": "refunded_quantity", "comment": null}, "refunded_subtotal": {"type": "bigint", "index": 32, "name": "refunded_subtotal", "comment": null}, "quantity_net_refunds": {"type": "bigint", "index": 33, "name": "quantity_net_refunds", "comment": null}, "subtotal_net_refunds": {"type": "bigint", "index": 34, "name": "subtotal_net_refunds", "comment": null}, "variant_created_at": {"type": "timestamp without time zone", "index": 35, "name": "variant_created_at", "comment": null}, "variant_updated_at": {"type": "timestamp without time zone", "index": 36, "name": "variant_updated_at", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 37, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 38, "name": "image_id", "comment": null}, "variant_price": {"type": "integer", "index": 39, "name": "variant_price", "comment": null}, "variant_sku": {"type": "integer", "index": 40, "name": "variant_sku", "comment": null}, "variant_position": {"type": "integer", "index": 41, "name": "variant_position", "comment": null}, "variant_inventory_policy": {"type": "text", "index": 42, "name": "variant_inventory_policy", "comment": null}, "variant_compare_at_price": {"type": "integer", "index": 43, "name": "variant_compare_at_price", "comment": null}, "variant_fulfillment_service": {"type": "text", "index": 44, "name": "variant_fulfillment_service", "comment": null}, "variant_is_taxable": {"type": "boolean", "index": 45, "name": "variant_is_taxable", "comment": null}, "variant_barcode": {"type": "integer", "index": 46, "name": "variant_barcode", "comment": null}, "variant_grams": {"type": "integer", "index": 47, "name": "variant_grams", "comment": null}, "variant_inventory_quantity": {"type": "integer", "index": 48, "name": "variant_inventory_quantity", "comment": null}, "variant_weight": {"type": "integer", "index": 49, "name": "variant_weight", "comment": null}, "variant_weight_unit": {"type": "text", "index": 50, "name": "variant_weight_unit", "comment": null}, "variant_option_1": {"type": "text", "index": 51, "name": "variant_option_1", "comment": null}, "variant_option_2": {"type": "integer", "index": 52, "name": "variant_option_2", "comment": null}, "variant_option_3": {"type": "integer", "index": 53, "name": "variant_option_3", "comment": null}, "variant_tax_code": {"type": "text", "index": 54, "name": "variant_tax_code", "comment": null}, "order_line_tax": {"type": "double precision", "index": 55, "name": "order_line_tax", "comment": null}}, "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.shopify.shopify__order_lines"}, "model.shopify.shopify__order_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__order_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}, "metafield_blade_runner_returnauthorizations": {"type": "text", "index": 81, "name": "metafield_blade_runner_returnauthorizations", "comment": null}}, "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.shopify.shopify__order_metafields"}, "model.shopify.shopify__orders": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__orders", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}, "orders_unique_key": {"type": "text", "index": 81, "name": "orders_unique_key", "comment": null}, "shipping_cost": {"type": "double precision", "index": 82, "name": "shipping_cost", "comment": null}, "order_adjustment_amount": {"type": "bigint", "index": 83, "name": "order_adjustment_amount", "comment": null}, "order_adjustment_tax_amount": {"type": "double precision", "index": 84, "name": "order_adjustment_tax_amount", "comment": null}, "refund_subtotal": {"type": "bigint", "index": 85, "name": "refund_subtotal", "comment": null}, "refund_total_tax": {"type": "double precision", "index": 86, "name": "refund_total_tax", "comment": null}, "order_adjusted_total": {"type": "double precision", "index": 87, "name": "order_adjusted_total", "comment": null}, "line_item_count": {"type": "bigint", "index": 88, "name": "line_item_count", "comment": null}, "shipping_discount_amount": {"type": "double precision", "index": 89, "name": "shipping_discount_amount", "comment": null}, "percentage_calc_discount_amount": {"type": "double precision", "index": 90, "name": "percentage_calc_discount_amount", "comment": null}, "fixed_amount_discount_amount": {"type": "double precision", "index": 91, "name": "fixed_amount_discount_amount", "comment": null}, "count_discount_codes_applied": {"type": "bigint", "index": 92, "name": "count_discount_codes_applied", "comment": null}, "order_total_shipping_tax": {"type": "double precision", "index": 93, "name": "order_total_shipping_tax", "comment": null}, "order_tags": {"type": "text", "index": 94, "name": "order_tags", "comment": null}, "order_url_tags": {"type": "text", "index": 95, "name": "order_url_tags", "comment": null}, "number_of_fulfillments": {"type": "bigint", "index": 96, "name": "number_of_fulfillments", "comment": null}, "fulfillment_services": {"type": "text", "index": 97, "name": "fulfillment_services", "comment": null}, "tracking_companies": {"type": "text", "index": 98, "name": "tracking_companies", "comment": null}, "tracking_numbers": {"type": "text", "index": 99, "name": "tracking_numbers", "comment": null}, "customer_order_seq_number": {"type": "bigint", "index": 100, "name": "customer_order_seq_number", "comment": null}, "new_vs_repeat": {"type": "text", "index": 101, "name": "new_vs_repeat", "comment": null}}, "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.shopify.shopify__orders"}, "model.shopify.shopify__orders__order_line_aggregates": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__orders__order_line_aggregates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "line_item_count": {"type": "bigint", "index": 3, "name": "line_item_count", "comment": null}, "order_total_quantity": {"type": "bigint", "index": 4, "name": "order_total_quantity", "comment": null}, "order_total_tax": {"type": "double precision", "index": 5, "name": "order_total_tax", "comment": null}, "order_total_discount": {"type": "bigint", "index": 6, "name": "order_total_discount", "comment": null}, "order_total_shipping": {"type": "double precision", "index": 7, "name": "order_total_shipping", "comment": null}, "order_total_shipping_with_discounts": {"type": "double precision", "index": 8, "name": "order_total_shipping_with_discounts", "comment": null}, "order_total_shipping_tax": {"type": "double precision", "index": 9, "name": "order_total_shipping_tax", "comment": null}}, "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.shopify.shopify__orders__order_line_aggregates"}, "model.shopify.shopify__product_image_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__product_image_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_image_id": {"type": "integer", "index": 1, "name": "product_image_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "height": {"type": "integer", "index": 3, "name": "height", "comment": null}, "position": {"type": "integer", "index": 4, "name": "position", "comment": null}, "src": {"type": "text", "index": 5, "name": "src", "comment": null}, "variant_ids": {"type": "text", "index": 6, "name": "variant_ids", "comment": null}, "width": {"type": "integer", "index": 7, "name": "width", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_image_metafields"}, "model.shopify.shopify__product_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__product_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_metafields"}, "model.shopify.shopify__product_variant_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__product_variant_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"variant_id": {"type": "bigint", "index": 1, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 4, "name": "image_id", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "price": {"type": "integer", "index": 6, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 9, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 10, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 11, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 12, "name": "inventory_management", "comment": null}, "is_taxable": {"type": "boolean", "index": 13, "name": "is_taxable", "comment": null}, "barcode": {"type": "integer", "index": 14, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 15, "name": "grams", "comment": null}, "inventory_quantity": {"type": "integer", "index": 16, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 17, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 18, "name": "weight_unit", "comment": null}, "option_1": {"type": "text", "index": 19, "name": "option_1", "comment": null}, "option_2": {"type": "integer", "index": 20, "name": "option_2", "comment": null}, "option_3": {"type": "integer", "index": 21, "name": "option_3", "comment": null}, "tax_code": {"type": "text", "index": 22, "name": "tax_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 24, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_variant_metafields"}, "model.shopify.shopify__products": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__products", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}, "collections": {"type": "text", "index": 14, "name": "collections", "comment": null}, "tags": {"type": "text", "index": 15, "name": "tags", "comment": null}, "count_variants": {"type": "bigint", "index": 16, "name": "count_variants", "comment": null}, "has_product_image": {"type": "boolean", "index": 17, "name": "has_product_image", "comment": null}, "total_quantity_sold": {"type": "bigint", "index": 18, "name": "total_quantity_sold", "comment": null}, "subtotal_sold": {"type": "bigint", "index": 19, "name": "subtotal_sold", "comment": null}, "quantity_sold_net_refunds": {"type": "numeric", "index": 20, "name": "quantity_sold_net_refunds", "comment": null}, "subtotal_sold_net_refunds": {"type": "numeric", "index": 21, "name": "subtotal_sold_net_refunds", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 22, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "most_recent_order_timestamp", "comment": null}, "avg_quantity_per_order_line": {"type": "numeric", "index": 24, "name": "avg_quantity_per_order_line", "comment": null}, "product_total_discount": {"type": "bigint", "index": 25, "name": "product_total_discount", "comment": null}, "product_avg_discount_per_order_line": {"type": "numeric", "index": 26, "name": "product_avg_discount_per_order_line", "comment": null}, "product_total_tax": {"type": "double precision", "index": 27, "name": "product_total_tax", "comment": null}, "product_avg_tax_per_order_line": {"type": "double precision", "index": 28, "name": "product_avg_tax_per_order_line", "comment": null}}, "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.shopify.shopify__products"}, "model.shopify.shopify__shop_metafields": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__shop_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"shop_id": {"type": "integer", "index": 1, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "province": {"type": "text", "index": 7, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 8, "name": "province_code", "comment": null}, "country": {"type": "text", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 11, "name": "country_name", "comment": null}, "zip": {"type": "integer", "index": 12, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 13, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 14, "name": "longitude", "comment": null}, "has_county_taxes": {"type": "boolean", "index": 15, "name": "has_county_taxes", "comment": null}, "currency": {"type": "text", "index": 16, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 17, "name": "enabled_presentment_currencies", "comment": null}, "customer_email": {"type": "text", "index": 18, "name": "customer_email", "comment": null}, "email": {"type": "text", "index": 19, "name": "email", "comment": null}, "domain": {"type": "text", "index": 20, "name": "domain", "comment": null}, "phone": {"type": "integer", "index": 21, "name": "phone", "comment": null}, "timezone": {"type": "text", "index": 22, "name": "timezone", "comment": null}, "iana_timezone": {"type": "text", "index": 23, "name": "iana_timezone", "comment": null}, "primary_locale": {"type": "text", "index": 24, "name": "primary_locale", "comment": null}, "weight_unit": {"type": "text", "index": 25, "name": "weight_unit", "comment": null}, "myshopify_domain": {"type": "text", "index": 26, "name": "myshopify_domain", "comment": null}, "cookie_consent_level": {"type": "text", "index": 27, "name": "cookie_consent_level", "comment": null}, "shop_owner": {"type": "text", "index": 28, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 29, "name": "source", "comment": null}, "has_shipping_taxes": {"type": "integer", "index": 30, "name": "has_shipping_taxes", "comment": null}, "has_taxes_included_in_price": {"type": "boolean", "index": 31, "name": "has_taxes_included_in_price", "comment": null}, "has_discounts": {"type": "boolean", "index": 32, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 33, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 34, "name": "has_storefront", "comment": null}, "has_checkout_api_supported": {"type": "boolean", "index": 35, "name": "has_checkout_api_supported", "comment": null}, "is_eligible_for_card_reader_giveaway": {"type": "boolean", "index": 36, "name": "is_eligible_for_card_reader_giveaway", "comment": null}, "is_eligible_for_payments": {"type": "boolean", "index": 37, "name": "is_eligible_for_payments", "comment": null}, "google_apps_domain": {"type": "integer", "index": 38, "name": "google_apps_domain", "comment": null}, "is_google_apps_login_enabled": {"type": "boolean", "index": 39, "name": "is_google_apps_login_enabled", "comment": null}, "money_format": {"type": "text", "index": 40, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 41, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 42, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 43, "name": "money_with_currency_in_emails_format", "comment": null}, "plan_display_name": {"type": "text", "index": 44, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 45, "name": "plan_name", "comment": null}, "is_password_enabled": {"type": "boolean", "index": 46, "name": "is_password_enabled", "comment": null}, "is_pre_launch_enabled": {"type": "boolean", "index": 47, "name": "is_pre_launch_enabled", "comment": null}, "is_extra_payments_agreement_required": {"type": "boolean", "index": 48, "name": "is_extra_payments_agreement_required", "comment": null}, "is_setup_required": {"type": "boolean", "index": 49, "name": "is_setup_required", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 50, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 51, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 52, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 53, "name": "source_relation", "comment": null}}, "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.shopify.shopify__shop_metafields"}, "model.shopify.shopify__transactions": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "shopify__transactions", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "bigint", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "device_id": {"type": "integer", "index": 5, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 6, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 7, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 8, "name": "message", "comment": null}, "currency": {"type": "text", "index": 9, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 10, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 12, "name": "payment_avs_result_code", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 13, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 14, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 15, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 16, "name": "payment_credit_card_company", "comment": null}, "kind": {"type": "text", "index": 17, "name": "kind", "comment": null}, "receipt": {"type": "character varying(100)", "index": 18, "name": "receipt", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 19, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 20, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 21, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 22, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 23, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 24, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "user_id": {"type": "integer", "index": 26, "name": "user_id", "comment": null}, "authorization_code": {"type": "text", "index": 27, "name": "authorization_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "created_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "processed_timestamp", "comment": null}, "authorization_expires_at": {"type": "timestamp without time zone", "index": 30, "name": "authorization_expires_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 31, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 32, "name": "source_relation", "comment": null}, "transactions_unique_id": {"type": "text", "index": 33, "name": "transactions_unique_id", "comment": null}, "payment_method": {"type": "text", "index": 34, "name": "payment_method", "comment": null}, "parent_created_timestamp": {"type": "timestamp without time zone", "index": 35, "name": "parent_created_timestamp", "comment": null}, "parent_kind": {"type": "text", "index": 36, "name": "parent_kind", "comment": null}, "parent_amount": {"type": "double precision", "index": 37, "name": "parent_amount", "comment": null}, "parent_status": {"type": "text", "index": 38, "name": "parent_status", "comment": null}, "exchange_rate": {"type": "numeric", "index": 39, "name": "exchange_rate", "comment": null}, "currency_exchange_calculated_amount": {"type": "double precision", "index": 40, "name": "currency_exchange_calculated_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.shopify.shopify__transactions"}, "model.shopify_source.stg_shopify__abandoned_checkout": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"is_deleted": {"type": "boolean", "index": 1, "name": "is_deleted", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 2, "name": "abandoned_checkout_url", "comment": null}, "billing_address_address_1": {"type": "text", "index": 3, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 4, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 5, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 6, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 7, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 8, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 9, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 10, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 11, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 12, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 13, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 14, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 15, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 16, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 17, "name": "billing_address_zip", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 18, "name": "has_buyer_accepted_marketing", "comment": null}, "cart_token": {"type": "text", "index": 19, "name": "cart_token", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 20, "name": "created_at", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 21, "name": "closed_at", "comment": null}, "shop_currency": {"type": "text", "index": 22, "name": "shop_currency", "comment": null}, "customer_id": {"type": "integer", "index": 23, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 24, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 25, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 26, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 27, "name": "gateway", "comment": null}, "checkout_id": {"type": "integer", "index": 28, "name": "checkout_id", "comment": null}, "landing_site_base_url": {"type": "text", "index": 29, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 30, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 31, "name": "name", "comment": null}, "note": {"type": "integer", "index": 32, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 33, "name": "phone", "comment": null}, "presentment_currency": {"type": "text", "index": 34, "name": "presentment_currency", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 36, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 37, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 38, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 39, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 40, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 41, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 42, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 43, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 44, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 45, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 46, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 47, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 48, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 49, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 50, "name": "shipping_address_zip", "comment": null}, "source_name": {"type": "text", "index": 51, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 52, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 53, "name": "has_taxes_included", "comment": null}, "token": {"type": "text", "index": 54, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_duties": {"type": "integer", "index": 56, "name": "total_duties", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 57, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 58, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 59, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 60, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 61, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 62, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 63, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 64, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout"}, "model.shopify_source.stg_shopify__abandoned_checkout_discount_code": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout_discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "discount_id": {"type": "bigint", "index": 3, "name": "discount_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "type": {"type": "character varying", "index": 5, "name": "type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 8, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}, "index": {"type": "bigint", "index": 10, "name": "index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__abandoned_checkout_discount_code"}, "model.shopify_source.stg_shopify__abandoned_checkout_discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout_discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_discount_code_tmp"}, "model.shopify_source.stg_shopify__abandoned_checkout_shipping_line": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout_shipping_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"abandoned_checkout_shipping_line_id": {"type": "text", "index": 1, "name": "abandoned_checkout_shipping_line_id", "comment": null}, "checkout_id": {"type": "integer", "index": 2, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 3, "name": "index", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "shipping_code": {"type": "text", "index": 5, "name": "shipping_code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 7, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 8, "name": "delivery_expectation_range_max", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 9, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 10, "name": "delivery_expectation_type", "comment": null}, "discounted_price": {"type": "integer", "index": 11, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 17, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_shipping_line"}, "model.shopify_source.stg_shopify__abandoned_checkout_shipping_line_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout_shipping_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_shipping_line_tmp"}, "model.shopify_source.stg_shopify__abandoned_checkout_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__abandoned_checkout_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__abandoned_checkout_tmp"}, "model.shopify_source.stg_shopify__collection": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__collection", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 2, "name": "is_deleted", "comment": null}, "rule_logic": {"type": "text", "index": 3, "name": "rule_logic", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_scope": {"type": "integer", "index": 5, "name": "published_scope", "comment": null}, "rules": {"type": "integer", "index": 6, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 7, "name": "sort_order", "comment": null}, "title": {"type": "character varying", "index": 8, "name": "title", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 9, "name": "published_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__collection"}, "model.shopify_source.stg_shopify__collection_product": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__collection_product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__collection_product"}, "model.shopify_source.stg_shopify__collection_product_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__collection_product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__collection_product_tmp"}, "model.shopify_source.stg_shopify__collection_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__collection_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_source.stg_shopify__collection_tmp"}, "model.shopify_source.stg_shopify__customer": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__customer", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "orders_count": {"type": "integer", "index": 5, "name": "orders_count", "comment": null}, "default_address_id": {"type": "bigint", "index": 6, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 7, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 8, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 9, "name": "is_tax_exempt", "comment": null}, "total_spent": {"type": "double precision", "index": 10, "name": "total_spent", "comment": null}, "is_verified_email": {"type": "boolean", "index": 11, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 12, "name": "note", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 14, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 15, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 16, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 17, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 18, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__customer"}, "model.shopify_source.stg_shopify__customer_tag": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__customer_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__customer_tag"}, "model.shopify_source.stg_shopify__customer_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__customer_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__customer_tag_tmp"}, "model.shopify_source.stg_shopify__customer_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__customer_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__customer_tmp"}, "model.shopify_source.stg_shopify__discount_code": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"discount_code_id": {"type": "integer", "index": 1, "name": "discount_code_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "price_rule_id": {"type": "integer", "index": 3, "name": "price_rule_id", "comment": null}, "usage_count": {"type": "double precision", "index": 4, "name": "usage_count", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__discount_code"}, "model.shopify_source.stg_shopify__discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_source.stg_shopify__discount_code_tmp"}, "model.shopify_source.stg_shopify__fulfillment": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__fulfillment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"fulfillment_id": {"type": "integer", "index": 1, "name": "fulfillment_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 3, "name": "order_id", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "service": {"type": "text", "index": 5, "name": "service", "comment": null}, "shipment_status": {"type": "integer", "index": 6, "name": "shipment_status", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 8, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 9, "name": "tracking_number", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 13, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment"}, "model.shopify_source.stg_shopify__fulfillment_event": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__fulfillment_event", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"fulfillment_event_id": {"type": "integer", "index": 1, "name": "fulfillment_event_id", "comment": null}, "fulfillment_id": {"type": "integer", "index": 2, "name": "fulfillment_id", "comment": null}, "shop_id": {"type": "integer", "index": 3, "name": "shop_id", "comment": null}, "order_id": {"type": "integer", "index": 4, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 5, "name": "status", "comment": null}, "message": {"type": "text", "index": 6, "name": "message", "comment": null}, "estimated_delivery_at": {"type": "timestamp without time zone", "index": 7, "name": "estimated_delivery_at", "comment": null}, "happened_at": {"type": "timestamp without time zone", "index": 8, "name": "happened_at", "comment": null}, "address_1": {"type": "integer", "index": 9, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 10, "name": "city", "comment": null}, "province": {"type": "text", "index": 11, "name": "province", "comment": null}, "country": {"type": "text", "index": 12, "name": "country", "comment": null}, "zip": {"type": "text", "index": 13, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 14, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 15, "name": "longitude", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 17, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 19, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment_event"}, "model.shopify_source.stg_shopify__fulfillment_event_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__fulfillment_event_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__fulfillment_event_tmp"}, "model.shopify_source.stg_shopify__fulfillment_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__fulfillment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment_tmp"}, "model.shopify_source.stg_shopify__inventory_item": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__inventory_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "sku": {"type": "integer", "index": 2, "name": "sku", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "cost": {"type": "integer", "index": 4, "name": "cost", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 5, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 6, "name": "province_code_of_origin", "comment": null}, "is_shipping_required": {"type": "integer", "index": 7, "name": "is_shipping_required", "comment": null}, "is_inventory_quantity_tracked": {"type": "integer", "index": 8, "name": "is_inventory_quantity_tracked", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__inventory_item"}, "model.shopify_source.stg_shopify__inventory_item_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__inventory_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__inventory_item_tmp"}, "model.shopify_source.stg_shopify__inventory_level": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__inventory_level", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "available_quantity": {"type": "integer", "index": 3, "name": "available_quantity", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__inventory_level"}, "model.shopify_source.stg_shopify__inventory_level_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__inventory_level_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__inventory_level_tmp"}, "model.shopify_source.stg_shopify__location": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__location", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"location_id": {"type": "integer", "index": 1, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "is_active": {"type": "boolean", "index": 4, "name": "is_active", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 9, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 10, "name": "country_name", "comment": null}, "is_legacy": {"type": "boolean", "index": 11, "name": "is_legacy", "comment": null}, "localized_country_name": {"type": "text", "index": 12, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 13, "name": "localized_province_name", "comment": null}, "phone": {"type": "integer", "index": 14, "name": "phone", "comment": null}, "province": {"type": "text", "index": 15, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 16, "name": "province_code", "comment": null}, "zip": {"type": "integer", "index": 17, "name": "zip", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 20, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 21, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__location"}, "model.shopify_source.stg_shopify__location_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__location_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__location_tmp"}, "model.shopify_source.stg_shopify__metafield": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify_shopify", "name": "stg_shopify__metafield", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"metafield_id": {"type": "integer", "index": 1, "name": "metafield_id", "comment": null}, "description": {"type": "integer", "index": 2, "name": "description", "comment": null}, "namespace": {"type": "text", "index": 3, "name": "namespace", "comment": null}, "key": {"type": "text", "index": 4, "name": "key", "comment": null}, "value": {"type": "text", "index": 5, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 6, "name": "value_type", "comment": null}, "owner_resource_id": {"type": "integer", "index": 7, "name": "owner_resource_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "metafield_reference": {"type": "text", "index": 12, "name": "metafield_reference", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 13, "name": "is_most_recent_record", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__metafield"}, "model.shopify_source.stg_shopify__metafield_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__metafield_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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.shopify_source.stg_shopify__metafield_tmp"}, "model.shopify_source.stg_shopify__order": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order"}, "model.shopify_source.stg_shopify__order_adjustment": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_adjustment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_adjustment_id": {"type": "bigint", "index": 1, "name": "order_adjustment_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "amount_set": {"type": "integer", "index": 5, "name": "amount_set", "comment": null}, "tax_amount": {"type": "double precision", "index": 6, "name": "tax_amount", "comment": null}, "tax_amount_set": {"type": "integer", "index": 7, "name": "tax_amount_set", "comment": null}, "kind": {"type": "text", "index": 8, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 9, "name": "reason", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_adjustment"}, "model.shopify_source.stg_shopify__order_adjustment_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_adjustment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_adjustment_tmp"}, "model.shopify_source.stg_shopify__order_discount_code": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "type": {"type": "text", "index": 4, "name": "type", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_discount_code"}, "model.shopify_source.stg_shopify__order_discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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.shopify_source.stg_shopify__order_discount_code_tmp"}, "model.shopify_source.stg_shopify__order_line": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_id": {"type": "bigint", "index": 1, "name": "order_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "order_id": {"type": "bigint", "index": 4, "name": "order_id", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 5, "name": "fulfillable_quantity", "comment": null}, "fulfillment_status": {"type": "text", "index": 6, "name": "fulfillment_status", "comment": null}, "is_gift_card": {"type": "boolean", "index": 7, "name": "is_gift_card", "comment": null}, "grams": {"type": "integer", "index": 8, "name": "grams", "comment": null}, "pre_tax_price": {"type": "integer", "index": 9, "name": "pre_tax_price", "comment": null}, "pre_tax_price_set": {"type": "text", "index": 10, "name": "pre_tax_price_set", "comment": null}, "price": {"type": "double precision", "index": 11, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 12, "name": "price_set", "comment": null}, "product_id": {"type": "bigint", "index": 13, "name": "product_id", "comment": null}, "quantity": {"type": "integer", "index": 14, "name": "quantity", "comment": null}, "is_shipping_required": {"type": "boolean", "index": 15, "name": "is_shipping_required", "comment": null}, "sku": {"type": "text", "index": 16, "name": "sku", "comment": null}, "is_taxable": {"type": "boolean", "index": 17, "name": "is_taxable", "comment": null}, "tax_code": {"type": "text", "index": 18, "name": "tax_code", "comment": null}, "title": {"type": "text", "index": 19, "name": "title", "comment": null}, "total_discount": {"type": "integer", "index": 20, "name": "total_discount", "comment": null}, "total_discount_set": {"type": "text", "index": 21, "name": "total_discount_set", "comment": null}, "variant_id": {"type": "bigint", "index": 22, "name": "variant_id", "comment": null}, "variant_title": {"type": "text", "index": 23, "name": "variant_title", "comment": null}, "variant_inventory_management": {"type": "text", "index": 24, "name": "variant_inventory_management", "comment": null}, "vendor": {"type": "text", "index": 25, "name": "vendor", "comment": null}, "properties": {"type": "text", "index": 26, "name": "properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 27, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_line"}, "model.shopify_source.stg_shopify__order_line_refund": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_line_refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_refund_id": {"type": "bigint", "index": 1, "name": "order_line_refund_id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "order_line_id": {"type": "bigint", "index": 3, "name": "order_line_id", "comment": null}, "subtotal": {"type": "integer", "index": 4, "name": "subtotal", "comment": null}, "subtotal_set": {"type": "integer", "index": 5, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 6, "name": "total_tax", "comment": null}, "total_tax_set": {"type": "integer", "index": 7, "name": "total_tax_set", "comment": null}, "quantity": {"type": "integer", "index": 8, "name": "quantity", "comment": null}, "refund_id": {"type": "bigint", "index": 9, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 10, "name": "restock_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_line_refund"}, "model.shopify_source.stg_shopify__order_line_refund_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_line_refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_source.stg_shopify__order_line_refund_tmp"}, "model.shopify_source.stg_shopify__order_line_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_line_tmp"}, "model.shopify_source.stg_shopify__order_note_attribute": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_note_attribute", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_note_attribute"}, "model.shopify_source.stg_shopify__order_note_attribute_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_note_attribute_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_note_attribute_tmp"}, "model.shopify_source.stg_shopify__order_shipping_line": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_shipping_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_shipping_line_id": {"type": "integer", "index": 1, "name": "order_shipping_line_id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 3, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 4, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 5, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 6, "name": "discounted_price", "comment": null}, "discounted_price_set": {"type": "text", "index": 7, "name": "discounted_price_set", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 10, "name": "price_set", "comment": null}, "is_third_party_required": {"type": "boolean", "index": 11, "name": "is_third_party_required", "comment": null}, "source": {"type": "text", "index": 12, "name": "source", "comment": null}, "title": {"type": "text", "index": 13, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_line"}, "model.shopify_source.stg_shopify__order_shipping_line_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_shipping_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_line_tmp"}, "model.shopify_source.stg_shopify__order_shipping_tax_line": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_shipping_tax_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_shipping_line_id": {"type": "integer", "index": 1, "name": "order_shipping_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "price": {"type": "double precision", "index": 3, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 4, "name": "price_set", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_tax_line"}, "model.shopify_source.stg_shopify__order_shipping_tax_line_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_shipping_tax_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_tax_line_tmp"}, "model.shopify_source.stg_shopify__order_tag": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_tag"}, "model.shopify_source.stg_shopify__order_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_tag_tmp"}, "model.shopify_source.stg_shopify__order_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_tmp"}, "model.shopify_source.stg_shopify__order_url_tag": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_url_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_url_tag"}, "model.shopify_source.stg_shopify__order_url_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__order_url_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_url_tag_tmp"}, "model.shopify_source.stg_shopify__price_rule": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__price_rule", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"price_rule_id": {"type": "integer", "index": 1, "name": "price_rule_id", "comment": null}, "allocation_limit": {"type": "integer", "index": 2, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 3, "name": "allocation_method", "comment": null}, "customer_selection": {"type": "text", "index": 4, "name": "customer_selection", "comment": null}, "is_once_per_customer": {"type": "boolean", "index": 5, "name": "is_once_per_customer", "comment": null}, "prereq_min_quantity": {"type": "integer", "index": 6, "name": "prereq_min_quantity", "comment": null}, "prereq_max_shipping_price": {"type": "integer", "index": 7, "name": "prereq_max_shipping_price", "comment": null}, "prereq_min_subtotal": {"type": "double precision", "index": 8, "name": "prereq_min_subtotal", "comment": null}, "prereq_min_purchase_quantity_for_entitlement": {"type": "integer", "index": 9, "name": "prereq_min_purchase_quantity_for_entitlement", "comment": null}, "prereq_buy_x_get_this": {"type": "integer", "index": 10, "name": "prereq_buy_x_get_this", "comment": null}, "prereq_buy_this_get_y": {"type": "integer", "index": 11, "name": "prereq_buy_this_get_y", "comment": null}, "target_selection": {"type": "text", "index": 12, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 13, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 14, "name": "title", "comment": null}, "usage_limit": {"type": "integer", "index": 15, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 16, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 17, "name": "value_type", "comment": null}, "starts_at": {"type": "timestamp without time zone", "index": 18, "name": "starts_at", "comment": null}, "ends_at": {"type": "timestamp without time zone", "index": 19, "name": "ends_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 20, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 21, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 22, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 23, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__price_rule"}, "model.shopify_source.stg_shopify__price_rule_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__price_rule_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_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.shopify_source.stg_shopify__price_rule_tmp"}, "model.shopify_source.stg_shopify__product": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product"}, "model.shopify_source.stg_shopify__product_image": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_image", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_image_id": {"type": "integer", "index": 1, "name": "product_image_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "height": {"type": "integer", "index": 3, "name": "height", "comment": null}, "position": {"type": "integer", "index": 4, "name": "position", "comment": null}, "src": {"type": "text", "index": 5, "name": "src", "comment": null}, "variant_ids": {"type": "text", "index": 6, "name": "variant_ids", "comment": null}, "width": {"type": "integer", "index": 7, "name": "width", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_image"}, "model.shopify_source.stg_shopify__product_image_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_image_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_source.stg_shopify__product_image_tmp"}, "model.shopify_source.stg_shopify__product_tag": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "integer", "index": 1, "name": "product_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_tag"}, "model.shopify_source.stg_shopify__product_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__product_tag_tmp"}, "model.shopify_source.stg_shopify__product_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__product_tmp"}, "model.shopify_source.stg_shopify__product_variant": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_variant", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"variant_id": {"type": "bigint", "index": 1, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 4, "name": "image_id", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "price": {"type": "integer", "index": 6, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 9, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 10, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 11, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 12, "name": "inventory_management", "comment": null}, "is_taxable": {"type": "boolean", "index": 13, "name": "is_taxable", "comment": null}, "barcode": {"type": "integer", "index": 14, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 15, "name": "grams", "comment": null}, "inventory_quantity": {"type": "integer", "index": 16, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 17, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 18, "name": "weight_unit", "comment": null}, "option_1": {"type": "text", "index": 19, "name": "option_1", "comment": null}, "option_2": {"type": "integer", "index": 20, "name": "option_2", "comment": null}, "option_3": {"type": "integer", "index": 21, "name": "option_3", "comment": null}, "tax_code": {"type": "text", "index": 22, "name": "tax_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 24, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_variant"}, "model.shopify_source.stg_shopify__product_variant_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__product_variant_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_source.stg_shopify__product_variant_tmp"}, "model.shopify_source.stg_shopify__refund": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "bigint", "index": 1, "name": "refund_id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "order_id": {"type": "bigint", "index": 3, "name": "order_id", "comment": null}, "restock": {"type": "boolean", "index": 4, "name": "restock", "comment": null}, "total_duties_set": {"type": "integer", "index": 5, "name": "total_duties_set", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 8, "name": "processed_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__refund"}, "model.shopify_source.stg_shopify__refund_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_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.shopify_source.stg_shopify__refund_tmp"}, "model.shopify_source.stg_shopify__shop": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__shop", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"shop_id": {"type": "integer", "index": 1, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "province": {"type": "text", "index": 7, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 8, "name": "province_code", "comment": null}, "country": {"type": "text", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 11, "name": "country_name", "comment": null}, "zip": {"type": "integer", "index": 12, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 13, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 14, "name": "longitude", "comment": null}, "has_county_taxes": {"type": "boolean", "index": 15, "name": "has_county_taxes", "comment": null}, "currency": {"type": "text", "index": 16, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 17, "name": "enabled_presentment_currencies", "comment": null}, "customer_email": {"type": "text", "index": 18, "name": "customer_email", "comment": null}, "email": {"type": "text", "index": 19, "name": "email", "comment": null}, "domain": {"type": "text", "index": 20, "name": "domain", "comment": null}, "phone": {"type": "integer", "index": 21, "name": "phone", "comment": null}, "timezone": {"type": "text", "index": 22, "name": "timezone", "comment": null}, "iana_timezone": {"type": "text", "index": 23, "name": "iana_timezone", "comment": null}, "primary_locale": {"type": "text", "index": 24, "name": "primary_locale", "comment": null}, "weight_unit": {"type": "text", "index": 25, "name": "weight_unit", "comment": null}, "myshopify_domain": {"type": "text", "index": 26, "name": "myshopify_domain", "comment": null}, "cookie_consent_level": {"type": "text", "index": 27, "name": "cookie_consent_level", "comment": null}, "shop_owner": {"type": "text", "index": 28, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 29, "name": "source", "comment": null}, "has_shipping_taxes": {"type": "integer", "index": 30, "name": "has_shipping_taxes", "comment": null}, "has_taxes_included_in_price": {"type": "boolean", "index": 31, "name": "has_taxes_included_in_price", "comment": null}, "has_discounts": {"type": "boolean", "index": 32, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 33, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 34, "name": "has_storefront", "comment": null}, "has_checkout_api_supported": {"type": "boolean", "index": 35, "name": "has_checkout_api_supported", "comment": null}, "is_eligible_for_card_reader_giveaway": {"type": "boolean", "index": 36, "name": "is_eligible_for_card_reader_giveaway", "comment": null}, "is_eligible_for_payments": {"type": "boolean", "index": 37, "name": "is_eligible_for_payments", "comment": null}, "google_apps_domain": {"type": "integer", "index": 38, "name": "google_apps_domain", "comment": null}, "is_google_apps_login_enabled": {"type": "boolean", "index": 39, "name": "is_google_apps_login_enabled", "comment": null}, "money_format": {"type": "text", "index": 40, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 41, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 42, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 43, "name": "money_with_currency_in_emails_format", "comment": null}, "plan_display_name": {"type": "text", "index": 44, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 45, "name": "plan_name", "comment": null}, "is_password_enabled": {"type": "boolean", "index": 46, "name": "is_password_enabled", "comment": null}, "is_pre_launch_enabled": {"type": "boolean", "index": 47, "name": "is_pre_launch_enabled", "comment": null}, "is_extra_payments_agreement_required": {"type": "boolean", "index": 48, "name": "is_extra_payments_agreement_required", "comment": null}, "is_setup_required": {"type": "boolean", "index": 49, "name": "is_setup_required", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 50, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 51, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 52, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 53, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__shop"}, "model.shopify_source.stg_shopify__shop_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__shop_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_source.stg_shopify__shop_tmp"}, "model.shopify_source.stg_shopify__tax_line": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__tax_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "price": {"type": "double precision", "index": 3, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 4, "name": "price_set", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__tax_line"}, "model.shopify_source.stg_shopify__tax_line_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__tax_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__tax_line_tmp"}, "model.shopify_source.stg_shopify__tender_transaction": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__tender_transaction", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "integer", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "payment_method": {"type": "text", "index": 5, "name": "payment_method", "comment": null}, "remote_reference": {"type": "integer", "index": 6, "name": "remote_reference", "comment": null}, "user_id": {"type": "integer", "index": 7, "name": "user_id", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 8, "name": "processed_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__tender_transaction"}, "model.shopify_source.stg_shopify__tender_transaction_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__tender_transaction_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_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.shopify_source.stg_shopify__tender_transaction_tmp"}, "model.shopify_source.stg_shopify__transaction": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__transaction", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "bigint", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "device_id": {"type": "integer", "index": 5, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 6, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 7, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 8, "name": "message", "comment": null}, "currency": {"type": "text", "index": 9, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 10, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 12, "name": "payment_avs_result_code", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 13, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 14, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 15, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 16, "name": "payment_credit_card_company", "comment": null}, "kind": {"type": "text", "index": 17, "name": "kind", "comment": null}, "receipt": {"type": "character varying(100)", "index": 18, "name": "receipt", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 19, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 20, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 21, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 22, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 23, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 24, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "user_id": {"type": "integer", "index": 26, "name": "user_id", "comment": null}, "authorization_code": {"type": "text", "index": 27, "name": "authorization_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "created_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "processed_timestamp", "comment": null}, "authorization_expires_at": {"type": "timestamp without time zone", "index": 30, "name": "authorization_expires_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 31, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 32, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__transaction"}, "model.shopify_source.stg_shopify__transaction_tmp": {"metadata": {"type": "VIEW", "schema": "zz_shopify_shopify", "name": "stg_shopify__transaction_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_source.stg_shopify__transaction_tmp"}}, "sources": {"source.shopify_source.shopify.abandoned_checkout": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.abandoned_checkout"}, "source.shopify_source.shopify.abandoned_checkout_discount_code": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_source.shopify.abandoned_checkout_discount_code"}, "source.shopify_source.shopify.abandoned_checkout_shipping_line": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_abandoned_checkout_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_source.shopify.abandoned_checkout_shipping_line"}, "source.shopify_source.shopify.collection": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_collection_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_source.shopify.collection"}, "source.shopify_source.shopify.collection_product": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_collection_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.collection_product"}, "source.shopify_source.shopify.customer": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_customer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.customer"}, "source.shopify_source.shopify.customer_tag": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_customer_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.customer_tag"}, "source.shopify_source.shopify.discount_code": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_source.shopify.discount_code"}, "source.shopify_source.shopify.fulfillment": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_fulfillment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_source.shopify.fulfillment"}, "source.shopify_source.shopify.fulfillment_event": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_fulfillment_event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.fulfillment_event"}, "source.shopify_source.shopify.inventory_item": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_inventory_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.inventory_item"}, "source.shopify_source.shopify.inventory_level": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_inventory_level_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.inventory_level"}, "source.shopify_source.shopify.location": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_location_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.location"}, "source.shopify_source.shopify.metafield": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_metafield_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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": "source.shopify_source.shopify.metafield"}, "source.shopify_source.shopify.order_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order_adjustment"}, "source.shopify_source.shopify.order": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order"}, "source.shopify_source.shopify.order_discount_code": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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": "source.shopify_source.shopify.order_discount_code"}, "source.shopify_source.shopify.order_line": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order_line"}, "source.shopify_source.shopify.order_line_refund": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_line_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_source.shopify.order_line_refund"}, "source.shopify_source.shopify.order_note_attribute": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_note_attribute_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_note_attribute"}, "source.shopify_source.shopify.order_shipping_line": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.order_shipping_line"}, "source.shopify_source.shopify.order_shipping_tax_line": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_shipping_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.order_shipping_tax_line"}, "source.shopify_source.shopify.order_tag": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_tag"}, "source.shopify_source.shopify.order_url_tag": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_order_url_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_url_tag"}, "source.shopify_source.shopify.price_rule": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_price_rule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.price_rule"}, "source.shopify_source.shopify.product": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.product"}, "source.shopify_source.shopify.product_image": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_image_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_source.shopify.product_image"}, "source.shopify_source.shopify.product_tag": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.product_tag"}, "source.shopify_source.shopify.product_variant": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_product_variant_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_source.shopify.product_variant"}, "source.shopify_source.shopify.refund": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.refund"}, "source.shopify_source.shopify.shop": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_shop_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_source.shopify.shop"}, "source.shopify_source.shopify.tax_line": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.tax_line"}, "source.shopify_source.shopify.tender_transaction": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_tender_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.tender_transaction"}, "source.shopify_source.shopify.transaction": {"metadata": {"type": "BASE TABLE", "schema": "zz_shopify", "name": "shopify_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_source.shopify.transaction"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.9", "generated_at": "2024-11-25T22:36:05.152280Z", "invocation_id": "cc54bece-144b-4efe-bb15-930e9eae8805", "env": {}}, "nodes": {"seed.shopify_integration_tests.shopify_abandoned_checkout_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_abandoned_checkout_data"}, "seed.shopify_integration_tests.shopify_abandoned_checkout_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_integration_tests.shopify_abandoned_checkout_discount_code_data"}, "seed.shopify_integration_tests.shopify_abandoned_checkout_shipping_line_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_integration_tests.shopify_abandoned_checkout_shipping_line_data"}, "seed.shopify_integration_tests.shopify_collection_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_collection_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_integration_tests.shopify_collection_data"}, "seed.shopify_integration_tests.shopify_collection_product_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_collection_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_collection_product_data"}, "seed.shopify_integration_tests.shopify_customer_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_customer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_customer_data"}, "seed.shopify_integration_tests.shopify_customer_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_customer_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_customer_tag_data"}, "seed.shopify_integration_tests.shopify_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_integration_tests.shopify_discount_code_data"}, "seed.shopify_integration_tests.shopify_fulfillment_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_fulfillment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_integration_tests.shopify_fulfillment_data"}, "seed.shopify_integration_tests.shopify_fulfillment_event_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_fulfillment_event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_fulfillment_event_data"}, "seed.shopify_integration_tests.shopify_inventory_item_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_inventory_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_inventory_item_data"}, "seed.shopify_integration_tests.shopify_inventory_level_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_inventory_level_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_inventory_level_data"}, "seed.shopify_integration_tests.shopify_location_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_location_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_location_data"}, "seed.shopify_integration_tests.shopify_metafield_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_metafield_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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": "seed.shopify_integration_tests.shopify_metafield_data"}, "seed.shopify_integration_tests.shopify_order_adjustment_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_adjustment_data"}, "seed.shopify_integration_tests.shopify_order_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_data"}, "seed.shopify_integration_tests.shopify_order_discount_code_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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": "seed.shopify_integration_tests.shopify_order_discount_code_data"}, "seed.shopify_integration_tests.shopify_order_line_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_order_line_data"}, "seed.shopify_integration_tests.shopify_order_line_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_line_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_integration_tests.shopify_order_line_refund_data"}, "seed.shopify_integration_tests.shopify_order_note_attribute_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_note_attribute_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_note_attribute_data"}, "seed.shopify_integration_tests.shopify_order_shipping_line_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_order_shipping_line_data"}, "seed.shopify_integration_tests.shopify_order_shipping_tax_line_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_shipping_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_order_shipping_tax_line_data"}, "seed.shopify_integration_tests.shopify_order_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_tag_data"}, "seed.shopify_integration_tests.shopify_order_url_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_url_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_order_url_tag_data"}, "seed.shopify_integration_tests.shopify_price_rule_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_price_rule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_price_rule_data"}, "seed.shopify_integration_tests.shopify_product_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_integration_tests.shopify_product_data"}, "seed.shopify_integration_tests.shopify_product_image_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_image_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_integration_tests.shopify_product_image_data"}, "seed.shopify_integration_tests.shopify_product_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_integration_tests.shopify_product_tag_data"}, "seed.shopify_integration_tests.shopify_product_variant_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_variant_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_integration_tests.shopify_product_variant_data"}, "seed.shopify_integration_tests.shopify_refund_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_refund_data"}, "seed.shopify_integration_tests.shopify_shop_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_shop_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_integration_tests.shopify_shop_data"}, "seed.shopify_integration_tests.shopify_tax_line_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_integration_tests.shopify_tax_line_data"}, "seed.shopify_integration_tests.shopify_tender_transaction_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_tender_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.shopify_integration_tests.shopify_tender_transaction_data"}, "seed.shopify_integration_tests.shopify_transaction_data": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_integration_tests.shopify_transaction_data"}, "model.shopify.int_shopify__customer_email_rollup": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "int_shopify__customer_email_rollup", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "customer_ids": {"type": "text", "index": 3, "name": "customer_ids", "comment": null}, "phone_numbers": {"type": "text", "index": 4, "name": "phone_numbers", "comment": null}, "customer_tags": {"type": "text", "index": 5, "name": "customer_tags", "comment": null}, "first_account_created_at": {"type": "timestamp without time zone", "index": 6, "name": "first_account_created_at", "comment": null}, "last_account_created_at": {"type": "timestamp without time zone", "index": 7, "name": "last_account_created_at", "comment": null}, "last_updated_at": {"type": "timestamp without time zone", "index": 8, "name": "last_updated_at", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 9, "name": "marketing_consent_updated_at", "comment": null}, "last_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "last_fivetran_synced", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 11, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 12, "name": "is_verified_email", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 14, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 15, "name": "default_address_id", "comment": null}, "account_state": {"type": "text", "index": 16, "name": "account_state", "comment": null}, "note": {"type": "text", "index": 17, "name": "note", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 19, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 20, "name": "marketing_opt_in_level", "comment": null}}, "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.shopify.int_shopify__customer_email_rollup"}, "model.shopify.shopify__calendar": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__calendar", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}}, "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.shopify.shopify__calendar"}, "model.shopify.shopify__collection_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__collection_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 2, "name": "is_deleted", "comment": null}, "rule_logic": {"type": "text", "index": 3, "name": "rule_logic", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_scope": {"type": "integer", "index": 5, "name": "published_scope", "comment": null}, "rules": {"type": "integer", "index": 6, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 7, "name": "sort_order", "comment": null}, "title": {"type": "character varying", "index": 8, "name": "title", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 9, "name": "published_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify.shopify__collection_metafields"}, "model.shopify.shopify__customer_cohorts": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__customer_cohorts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_month": {"type": "date", "index": 1, "name": "date_month", "comment": null}, "customer_id": {"type": "bigint", "index": 2, "name": "customer_id", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "first_order_timestamp", "comment": null}, "cohort_month": {"type": "date", "index": 4, "name": "cohort_month", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}, "order_count_in_month": {"type": "bigint", "index": 6, "name": "order_count_in_month", "comment": null}, "total_price_in_month": {"type": "double precision", "index": 7, "name": "total_price_in_month", "comment": null}, "line_item_count_in_month": {"type": "numeric", "index": 8, "name": "line_item_count_in_month", "comment": null}, "total_price_lifetime": {"type": "double precision", "index": 9, "name": "total_price_lifetime", "comment": null}, "order_count_lifetime": {"type": "numeric", "index": 10, "name": "order_count_lifetime", "comment": null}, "line_item_count_lifetime": {"type": "numeric", "index": 11, "name": "line_item_count_lifetime", "comment": null}, "cohort_month_number": {"type": "bigint", "index": 12, "name": "cohort_month_number", "comment": null}, "customer_cohort_id": {"type": "text", "index": 13, "name": "customer_cohort_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.shopify.shopify__customer_cohorts"}, "model.shopify.shopify__customer_email_cohorts": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__customer_email_cohorts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_month": {"type": "date", "index": 1, "name": "date_month", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "first_order_timestamp", "comment": null}, "cohort_month": {"type": "timestamp without time zone", "index": 4, "name": "cohort_month", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}, "order_count_in_month": {"type": "bigint", "index": 6, "name": "order_count_in_month", "comment": null}, "total_price_in_month": {"type": "double precision", "index": 7, "name": "total_price_in_month", "comment": null}, "line_item_count_in_month": {"type": "numeric", "index": 8, "name": "line_item_count_in_month", "comment": null}, "total_price_lifetime": {"type": "double precision", "index": 9, "name": "total_price_lifetime", "comment": null}, "order_count_lifetime": {"type": "numeric", "index": 10, "name": "order_count_lifetime", "comment": null}, "line_item_count_lifetime": {"type": "numeric", "index": 11, "name": "line_item_count_lifetime", "comment": null}, "cohort_month_number": {"type": "bigint", "index": 12, "name": "cohort_month_number", "comment": null}, "customer_cohort_id": {"type": "text", "index": 13, "name": "customer_cohort_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.shopify.shopify__customer_email_cohorts"}, "model.shopify.shopify__customer_emails": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__customer_emails", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"email": {"type": "text", "index": 1, "name": "email", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "customer_ids": {"type": "text", "index": 3, "name": "customer_ids", "comment": null}, "phone_numbers": {"type": "text", "index": 4, "name": "phone_numbers", "comment": null}, "customer_tags": {"type": "text", "index": 5, "name": "customer_tags", "comment": null}, "first_account_created_at": {"type": "timestamp without time zone", "index": 6, "name": "first_account_created_at", "comment": null}, "last_account_created_at": {"type": "timestamp without time zone", "index": 7, "name": "last_account_created_at", "comment": null}, "last_updated_at": {"type": "timestamp without time zone", "index": 8, "name": "last_updated_at", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 9, "name": "marketing_consent_updated_at", "comment": null}, "last_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "last_fivetran_synced", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 11, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 12, "name": "is_verified_email", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 14, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 15, "name": "default_address_id", "comment": null}, "account_state": {"type": "text", "index": 16, "name": "account_state", "comment": null}, "note": {"type": "text", "index": 17, "name": "note", "comment": null}, "currency": {"type": "text", "index": 18, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 19, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 20, "name": "marketing_opt_in_level", "comment": null}, "lifetime_abandoned_checkouts": {"type": "bigint", "index": 21, "name": "lifetime_abandoned_checkouts", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 22, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "most_recent_order_timestamp", "comment": null}, "avg_order_value": {"type": "double precision", "index": 24, "name": "avg_order_value", "comment": null}, "lifetime_total_spent": {"type": "double precision", "index": 25, "name": "lifetime_total_spent", "comment": null}, "lifetime_total_refunded": {"type": "double precision", "index": 26, "name": "lifetime_total_refunded", "comment": null}, "lifetime_total_net": {"type": "double precision", "index": 27, "name": "lifetime_total_net", "comment": null}, "lifetime_count_orders": {"type": "bigint", "index": 28, "name": "lifetime_count_orders", "comment": null}, "avg_quantity_per_order": {"type": "numeric", "index": 29, "name": "avg_quantity_per_order", "comment": null}, "lifetime_total_tax": {"type": "double precision", "index": 30, "name": "lifetime_total_tax", "comment": null}, "avg_tax_per_order": {"type": "double precision", "index": 31, "name": "avg_tax_per_order", "comment": null}, "lifetime_total_discount": {"type": "numeric", "index": 32, "name": "lifetime_total_discount", "comment": null}, "avg_discount_per_order": {"type": "numeric", "index": 33, "name": "avg_discount_per_order", "comment": null}, "lifetime_total_shipping": {"type": "double precision", "index": 34, "name": "lifetime_total_shipping", "comment": null}, "avg_shipping_per_order": {"type": "double precision", "index": 35, "name": "avg_shipping_per_order", "comment": null}, "lifetime_total_shipping_with_discounts": {"type": "double precision", "index": 36, "name": "lifetime_total_shipping_with_discounts", "comment": null}, "avg_shipping_with_discounts_per_order": {"type": "double precision", "index": 37, "name": "avg_shipping_with_discounts_per_order", "comment": null}, "lifetime_total_shipping_tax": {"type": "double precision", "index": 38, "name": "lifetime_total_shipping_tax", "comment": null}, "avg_shipping_tax_per_order": {"type": "double precision", "index": 39, "name": "avg_shipping_tax_per_order", "comment": null}}, "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.shopify.shopify__customer_emails"}, "model.shopify.shopify__customer_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__customer_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "orders_count": {"type": "integer", "index": 5, "name": "orders_count", "comment": null}, "default_address_id": {"type": "bigint", "index": 6, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 7, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 8, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 9, "name": "is_tax_exempt", "comment": null}, "total_spent": {"type": "double precision", "index": 10, "name": "total_spent", "comment": null}, "is_verified_email": {"type": "boolean", "index": 11, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 12, "name": "note", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 14, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 15, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 16, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 17, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 18, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "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.shopify.shopify__customer_metafields"}, "model.shopify.shopify__customers": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__customers", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "default_address_id": {"type": "bigint", "index": 5, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 6, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 7, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 8, "name": "is_tax_exempt", "comment": null}, "is_verified_email": {"type": "boolean", "index": 9, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 10, "name": "note", "comment": null}, "currency": {"type": "text", "index": 11, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 12, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 13, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 14, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 15, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 16, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 17, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}, "lifetime_abandoned_checkouts": {"type": "bigint", "index": 19, "name": "lifetime_abandoned_checkouts", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 21, "name": "most_recent_order_timestamp", "comment": null}, "customer_tags": {"type": "text", "index": 22, "name": "customer_tags", "comment": null}, "avg_order_value": {"type": "double precision", "index": 23, "name": "avg_order_value", "comment": null}, "lifetime_total_spent": {"type": "double precision", "index": 24, "name": "lifetime_total_spent", "comment": null}, "lifetime_total_refunded": {"type": "double precision", "index": 25, "name": "lifetime_total_refunded", "comment": null}, "lifetime_total_net": {"type": "double precision", "index": 26, "name": "lifetime_total_net", "comment": null}, "lifetime_count_orders": {"type": "bigint", "index": 27, "name": "lifetime_count_orders", "comment": null}, "avg_quantity_per_order": {"type": "numeric", "index": 28, "name": "avg_quantity_per_order", "comment": null}, "lifetime_total_tax": {"type": "double precision", "index": 29, "name": "lifetime_total_tax", "comment": null}, "avg_tax_per_order": {"type": "double precision", "index": 30, "name": "avg_tax_per_order", "comment": null}, "lifetime_total_discount": {"type": "numeric", "index": 31, "name": "lifetime_total_discount", "comment": null}, "avg_discount_per_order": {"type": "numeric", "index": 32, "name": "avg_discount_per_order", "comment": null}, "lifetime_total_shipping": {"type": "double precision", "index": 33, "name": "lifetime_total_shipping", "comment": null}, "avg_shipping_per_order": {"type": "double precision", "index": 34, "name": "avg_shipping_per_order", "comment": null}, "lifetime_total_shipping_with_discounts": {"type": "double precision", "index": 35, "name": "lifetime_total_shipping_with_discounts", "comment": null}, "avg_shipping_with_discounts_per_order": {"type": "double precision", "index": 36, "name": "avg_shipping_with_discounts_per_order", "comment": null}, "lifetime_total_shipping_tax": {"type": "double precision", "index": 37, "name": "lifetime_total_shipping_tax", "comment": null}, "avg_shipping_tax_per_order": {"type": "double precision", "index": 38, "name": "avg_shipping_tax_per_order", "comment": null}}, "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.shopify.shopify__customers"}, "model.shopify.shopify__daily_shop": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__daily_shop", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "shop_id": {"type": "integer", "index": 2, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "domain": {"type": "text", "index": 4, "name": "domain", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 7, "name": "enabled_presentment_currencies", "comment": null}, "iana_timezone": {"type": "text", "index": 8, "name": "iana_timezone", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}, "count_orders": {"type": "bigint", "index": 11, "name": "count_orders", "comment": null}, "count_line_items": {"type": "numeric", "index": 12, "name": "count_line_items", "comment": null}, "avg_line_item_count": {"type": "numeric", "index": 13, "name": "avg_line_item_count", "comment": null}, "count_customers": {"type": "bigint", "index": 14, "name": "count_customers", "comment": null}, "count_customer_emails": {"type": "bigint", "index": 15, "name": "count_customer_emails", "comment": null}, "order_adjusted_total": {"type": "double precision", "index": 16, "name": "order_adjusted_total", "comment": null}, "avg_order_value": {"type": "double precision", "index": 17, "name": "avg_order_value", "comment": null}, "shipping_cost": {"type": "double precision", "index": 18, "name": "shipping_cost", "comment": null}, "order_adjustment_amount": {"type": "numeric", "index": 19, "name": "order_adjustment_amount", "comment": null}, "order_adjustment_tax_amount": {"type": "double precision", "index": 20, "name": "order_adjustment_tax_amount", "comment": null}, "refund_subtotal": {"type": "numeric", "index": 21, "name": "refund_subtotal", "comment": null}, "refund_total_tax": {"type": "double precision", "index": 22, "name": "refund_total_tax", "comment": null}, "total_discounts": {"type": "double precision", "index": 23, "name": "total_discounts", "comment": null}, "avg_discount": {"type": "double precision", "index": 24, "name": "avg_discount", "comment": null}, "shipping_discount_amount": {"type": "double precision", "index": 25, "name": "shipping_discount_amount", "comment": null}, "avg_shipping_discount_amount": {"type": "double precision", "index": 26, "name": "avg_shipping_discount_amount", "comment": null}, "percentage_calc_discount_amount": {"type": "double precision", "index": 27, "name": "percentage_calc_discount_amount", "comment": null}, "avg_percentage_calc_discount_amount": {"type": "double precision", "index": 28, "name": "avg_percentage_calc_discount_amount", "comment": null}, "fixed_amount_discount_amount": {"type": "double precision", "index": 29, "name": "fixed_amount_discount_amount", "comment": null}, "avg_fixed_amount_discount_amount": {"type": "double precision", "index": 30, "name": "avg_fixed_amount_discount_amount", "comment": null}, "count_discount_codes_applied": {"type": "numeric", "index": 31, "name": "count_discount_codes_applied", "comment": null}, "count_locations_ordered_from": {"type": "bigint", "index": 32, "name": "count_locations_ordered_from", "comment": null}, "count_orders_with_discounts": {"type": "bigint", "index": 33, "name": "count_orders_with_discounts", "comment": null}, "count_orders_with_refunds": {"type": "bigint", "index": 34, "name": "count_orders_with_refunds", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 35, "name": "first_order_timestamp", "comment": null}, "last_order_timestamp": {"type": "timestamp without time zone", "index": 36, "name": "last_order_timestamp", "comment": null}, "quantity_sold": {"type": "bigint", "index": 37, "name": "quantity_sold", "comment": null}, "quantity_refunded": {"type": "numeric", "index": 38, "name": "quantity_refunded", "comment": null}, "quantity_net": {"type": "numeric", "index": 39, "name": "quantity_net", "comment": null}, "avg_quantity_sold": {"type": "bigint", "index": 40, "name": "avg_quantity_sold", "comment": null}, "avg_quantity_net": {"type": "numeric", "index": 41, "name": "avg_quantity_net", "comment": null}, "count_variants_sold": {"type": "bigint", "index": 42, "name": "count_variants_sold", "comment": null}, "count_products_sold": {"type": "bigint", "index": 43, "name": "count_products_sold", "comment": null}, "quantity_gift_cards_sold": {"type": "numeric", "index": 44, "name": "quantity_gift_cards_sold", "comment": null}, "quantity_requiring_shipping": {"type": "numeric", "index": 45, "name": "quantity_requiring_shipping", "comment": null}, "count_abandoned_checkouts": {"type": "bigint", "index": 46, "name": "count_abandoned_checkouts", "comment": null}, "count_customers_abandoned_checkout": {"type": "bigint", "index": 47, "name": "count_customers_abandoned_checkout", "comment": null}, "count_customer_emails_abandoned_checkout": {"type": "bigint", "index": 48, "name": "count_customer_emails_abandoned_checkout", "comment": null}, "count_fulfillment_attempted_delivery": {"type": "bigint", "index": 49, "name": "count_fulfillment_attempted_delivery", "comment": null}, "count_fulfillment_delayed": {"type": "bigint", "index": 50, "name": "count_fulfillment_delayed", "comment": null}, "count_fulfillment_delivered": {"type": "bigint", "index": 51, "name": "count_fulfillment_delivered", "comment": null}, "count_fulfillment_failure": {"type": "bigint", "index": 52, "name": "count_fulfillment_failure", "comment": null}, "count_fulfillment_in_transit": {"type": "bigint", "index": 53, "name": "count_fulfillment_in_transit", "comment": null}, "count_fulfillment_out_for_delivery": {"type": "bigint", "index": 54, "name": "count_fulfillment_out_for_delivery", "comment": null}, "count_fulfillment_ready_for_pickup": {"type": "bigint", "index": 55, "name": "count_fulfillment_ready_for_pickup", "comment": null}, "count_fulfillment_picked_up": {"type": "bigint", "index": 56, "name": "count_fulfillment_picked_up", "comment": null}, "count_fulfillment_label_printed": {"type": "bigint", "index": 57, "name": "count_fulfillment_label_printed", "comment": null}, "count_fulfillment_label_purchased": {"type": "bigint", "index": 58, "name": "count_fulfillment_label_purchased", "comment": null}, "count_fulfillment_confirmed": {"type": "bigint", "index": 59, "name": "count_fulfillment_confirmed", "comment": null}}, "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.shopify.shopify__daily_shop"}, "model.shopify.shopify__discounts": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__discounts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"discount_code_id": {"type": "integer", "index": 1, "name": "discount_code_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "price_rule_id": {"type": "integer", "index": 3, "name": "price_rule_id", "comment": null}, "usage_count": {"type": "double precision", "index": 4, "name": "usage_count", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}, "discounts_unique_key": {"type": "text", "index": 9, "name": "discounts_unique_key", "comment": null}, "target_selection": {"type": "text", "index": 10, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 11, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "usage_limit": {"type": "integer", "index": 13, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 14, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 15, "name": "value_type", "comment": null}, "allocation_limit": {"type": "integer", "index": 16, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 17, "name": "allocation_method", "comment": null}, "is_once_per_customer": {"type": "boolean", "index": 18, "name": "is_once_per_customer", "comment": null}, "customer_selection": {"type": "text", "index": 19, "name": "customer_selection", "comment": null}, "prereq_min_quantity": {"type": "integer", "index": 20, "name": "prereq_min_quantity", "comment": null}, "prereq_max_shipping_price": {"type": "integer", "index": 21, "name": "prereq_max_shipping_price", "comment": null}, "prereq_min_subtotal": {"type": "double precision", "index": 22, "name": "prereq_min_subtotal", "comment": null}, "prereq_min_purchase_quantity_for_entitlement": {"type": "integer", "index": 23, "name": "prereq_min_purchase_quantity_for_entitlement", "comment": null}, "prereq_buy_x_get_this": {"type": "integer", "index": 24, "name": "prereq_buy_x_get_this", "comment": null}, "prereq_buy_this_get_y": {"type": "integer", "index": 25, "name": "prereq_buy_this_get_y", "comment": null}, "starts_at": {"type": "timestamp without time zone", "index": 26, "name": "starts_at", "comment": null}, "ends_at": {"type": "timestamp without time zone", "index": 27, "name": "ends_at", "comment": null}, "price_rule_created_at": {"type": "timestamp without time zone", "index": 28, "name": "price_rule_created_at", "comment": null}, "price_rule_updated_at": {"type": "timestamp without time zone", "index": 29, "name": "price_rule_updated_at", "comment": null}, "count_orders": {"type": "bigint", "index": 30, "name": "count_orders", "comment": null}, "avg_order_discount_amount": {"type": "double precision", "index": 31, "name": "avg_order_discount_amount", "comment": null}, "total_order_discount_amount": {"type": "double precision", "index": 32, "name": "total_order_discount_amount", "comment": null}, "total_order_line_items_price": {"type": "double precision", "index": 33, "name": "total_order_line_items_price", "comment": null}, "total_order_shipping_cost": {"type": "double precision", "index": 34, "name": "total_order_shipping_cost", "comment": null}, "total_order_refund_amount": {"type": "double precision", "index": 35, "name": "total_order_refund_amount", "comment": null}, "count_customers": {"type": "bigint", "index": 36, "name": "count_customers", "comment": null}, "count_customer_emails": {"type": "bigint", "index": 37, "name": "count_customer_emails", "comment": null}, "total_abandoned_checkout_discount_amount": {"type": "double precision", "index": 38, "name": "total_abandoned_checkout_discount_amount", "comment": null}, "total_abandoned_checkout_shipping_price": {"type": "double precision", "index": 39, "name": "total_abandoned_checkout_shipping_price", "comment": null}, "count_abandoned_checkouts": {"type": "bigint", "index": 40, "name": "count_abandoned_checkouts", "comment": null}, "count_abandoned_checkout_customers": {"type": "bigint", "index": 41, "name": "count_abandoned_checkout_customers", "comment": null}, "count_abandoned_checkout_customer_emails": {"type": "bigint", "index": 42, "name": "count_abandoned_checkout_customer_emails", "comment": null}}, "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.shopify.shopify__discounts"}, "model.shopify.shopify__inventory_levels": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__inventory_levels", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "available_quantity": {"type": "integer", "index": 3, "name": "available_quantity", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "is_inventory_item_deleted": {"type": "boolean", "index": 8, "name": "is_inventory_item_deleted", "comment": null}, "cost": {"type": "integer", "index": 9, "name": "cost", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 10, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 11, "name": "province_code_of_origin", "comment": null}, "is_shipping_required": {"type": "integer", "index": 12, "name": "is_shipping_required", "comment": null}, "is_inventory_quantity_tracked": {"type": "integer", "index": 13, "name": "is_inventory_quantity_tracked", "comment": null}, "inventory_item_created_at": {"type": "timestamp without time zone", "index": 14, "name": "inventory_item_created_at", "comment": null}, "inventory_item_updated_at": {"type": "timestamp without time zone", "index": 15, "name": "inventory_item_updated_at", "comment": null}, "location_name": {"type": "text", "index": 16, "name": "location_name", "comment": null}, "is_location_deleted": {"type": "boolean", "index": 17, "name": "is_location_deleted", "comment": null}, "is_location_active": {"type": "boolean", "index": 18, "name": "is_location_active", "comment": null}, "address_1": {"type": "text", "index": 19, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 20, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 21, "name": "city", "comment": null}, "country": {"type": "text", "index": 22, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 23, "name": "country_code", "comment": null}, "is_legacy_location": {"type": "boolean", "index": 24, "name": "is_legacy_location", "comment": null}, "province": {"type": "text", "index": 25, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 26, "name": "province_code", "comment": null}, "phone": {"type": "integer", "index": 27, "name": "phone", "comment": null}, "zip": {"type": "integer", "index": 28, "name": "zip", "comment": null}, "location_created_at": {"type": "timestamp without time zone", "index": 29, "name": "location_created_at", "comment": null}, "location_updated_at": {"type": "timestamp without time zone", "index": 30, "name": "location_updated_at", "comment": null}, "variant_id": {"type": "bigint", "index": 31, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 32, "name": "product_id", "comment": null}, "variant_title": {"type": "text", "index": 33, "name": "variant_title", "comment": null}, "variant_inventory_policy": {"type": "text", "index": 34, "name": "variant_inventory_policy", "comment": null}, "variant_price": {"type": "integer", "index": 35, "name": "variant_price", "comment": null}, "variant_image_id": {"type": "integer", "index": 36, "name": "variant_image_id", "comment": null}, "variant_fulfillment_service": {"type": "text", "index": 37, "name": "variant_fulfillment_service", "comment": null}, "variant_inventory_management": {"type": "text", "index": 38, "name": "variant_inventory_management", "comment": null}, "is_variant_taxable": {"type": "boolean", "index": 39, "name": "is_variant_taxable", "comment": null}, "variant_barcode": {"type": "integer", "index": 40, "name": "variant_barcode", "comment": null}, "variant_grams": {"type": "integer", "index": 41, "name": "variant_grams", "comment": null}, "variant_inventory_quantity": {"type": "integer", "index": 42, "name": "variant_inventory_quantity", "comment": null}, "variant_weight": {"type": "integer", "index": 43, "name": "variant_weight", "comment": null}, "variant_weight_unit": {"type": "text", "index": 44, "name": "variant_weight_unit", "comment": null}, "variant_option_1": {"type": "text", "index": 45, "name": "variant_option_1", "comment": null}, "variant_option_2": {"type": "integer", "index": 46, "name": "variant_option_2", "comment": null}, "variant_option_3": {"type": "integer", "index": 47, "name": "variant_option_3", "comment": null}, "variant_tax_code": {"type": "text", "index": 48, "name": "variant_tax_code", "comment": null}, "variant_created_at": {"type": "timestamp without time zone", "index": 49, "name": "variant_created_at", "comment": null}, "variant_updated_at": {"type": "timestamp without time zone", "index": 50, "name": "variant_updated_at", "comment": null}, "subtotal_sold": {"type": "bigint", "index": 51, "name": "subtotal_sold", "comment": null}, "quantity_sold": {"type": "bigint", "index": 52, "name": "quantity_sold", "comment": null}, "count_distinct_orders": {"type": "bigint", "index": 53, "name": "count_distinct_orders", "comment": null}, "count_distinct_customers": {"type": "bigint", "index": 54, "name": "count_distinct_customers", "comment": null}, "count_distinct_customer_emails": {"type": "bigint", "index": 55, "name": "count_distinct_customer_emails", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 56, "name": "first_order_timestamp", "comment": null}, "last_order_timestamp": {"type": "timestamp without time zone", "index": 57, "name": "last_order_timestamp", "comment": null}, "subtotal_sold_refunds": {"type": "numeric", "index": 58, "name": "subtotal_sold_refunds", "comment": null}, "quantity_sold_refunds": {"type": "numeric", "index": 59, "name": "quantity_sold_refunds", "comment": null}, "count_fulfillment_pending": {"type": "bigint", "index": 60, "name": "count_fulfillment_pending", "comment": null}, "count_fulfillment_open": {"type": "bigint", "index": 61, "name": "count_fulfillment_open", "comment": null}, "count_fulfillment_success": {"type": "bigint", "index": 62, "name": "count_fulfillment_success", "comment": null}, "count_fulfillment_cancelled": {"type": "bigint", "index": 63, "name": "count_fulfillment_cancelled", "comment": null}, "count_fulfillment_error": {"type": "bigint", "index": 64, "name": "count_fulfillment_error", "comment": null}, "count_fulfillment_failure": {"type": "bigint", "index": 65, "name": "count_fulfillment_failure", "comment": null}, "net_subtotal_sold": {"type": "numeric", "index": 66, "name": "net_subtotal_sold", "comment": null}, "net_quantity_sold": {"type": "numeric", "index": 67, "name": "net_quantity_sold", "comment": null}}, "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.shopify.shopify__inventory_levels"}, "model.shopify.shopify__line_item_enhanced": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__line_item_enhanced", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"header_id": {"type": "bigint", "index": 1, "name": "header_id", "comment": null}, "line_item_id": {"type": "numeric(28,6)", "index": 2, "name": "line_item_id", "comment": null}, "line_item_index": {"type": "numeric(28,6)", "index": 3, "name": "line_item_index", "comment": null}, "record_type": {"type": "text", "index": 4, "name": "record_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 6, "name": "currency", "comment": null}, "header_status": {"type": "text", "index": 7, "name": "header_status", "comment": null}, "product_id": {"type": "numeric(28,6)", "index": 8, "name": "product_id", "comment": null}, "product_name": {"type": "text", "index": 9, "name": "product_name", "comment": null}, "transaction_type": {"type": "text", "index": 10, "name": "transaction_type", "comment": null}, "billing_type": {"type": "text", "index": 11, "name": "billing_type", "comment": null}, "product_type": {"type": "text", "index": 12, "name": "product_type", "comment": null}, "quantity": {"type": "numeric(28,6)", "index": 13, "name": "quantity", "comment": null}, "unit_amount": {"type": "numeric(28,6)", "index": 14, "name": "unit_amount", "comment": null}, "discount_amount": {"type": "double precision", "index": 15, "name": "discount_amount", "comment": null}, "tax_amount": {"type": "numeric", "index": 16, "name": "tax_amount", "comment": null}, "total_amount": {"type": "numeric(28,6)", "index": 17, "name": "total_amount", "comment": null}, "payment_id": {"type": "text", "index": 18, "name": "payment_id", "comment": null}, "payment_method_id": {"type": "text", "index": 19, "name": "payment_method_id", "comment": null}, "payment_method": {"type": "text", "index": 20, "name": "payment_method", "comment": null}, "payment_at": {"type": "text", "index": 21, "name": "payment_at", "comment": null}, "fee_amount": {"type": "double precision", "index": 22, "name": "fee_amount", "comment": null}, "refund_amount": {"type": "double precision", "index": 23, "name": "refund_amount", "comment": null}, "subscription_id": {"type": "text", "index": 24, "name": "subscription_id", "comment": null}, "subscription_plan": {"type": "text", "index": 25, "name": "subscription_plan", "comment": null}, "subscription_period_started_at": {"type": "timestamp without time zone", "index": 26, "name": "subscription_period_started_at", "comment": null}, "subscription_period_ended_at": {"type": "timestamp without time zone", "index": 27, "name": "subscription_period_ended_at", "comment": null}, "subscription_status": {"type": "text", "index": 28, "name": "subscription_status", "comment": null}, "customer_id": {"type": "bigint", "index": 29, "name": "customer_id", "comment": null}, "customer_created_at": {"type": "timestamp without time zone", "index": 30, "name": "customer_created_at", "comment": null}, "customer_level": {"type": "text", "index": 31, "name": "customer_level", "comment": null}, "customer_name": {"type": "text", "index": 32, "name": "customer_name", "comment": null}, "customer_company": {"type": "text", "index": 33, "name": "customer_company", "comment": null}, "customer_email": {"type": "text", "index": 34, "name": "customer_email", "comment": null}, "customer_city": {"type": "text", "index": 35, "name": "customer_city", "comment": null}, "customer_country": {"type": "text", "index": 36, "name": "customer_country", "comment": null}, "source_relation": {"type": "text", "index": 37, "name": "source_relation", "comment": null}}, "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.shopify.shopify__line_item_enhanced"}, "model.shopify.shopify__order_lines": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__order_lines", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_id": {"type": "bigint", "index": 1, "name": "order_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "order_id": {"type": "bigint", "index": 4, "name": "order_id", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 5, "name": "fulfillable_quantity", "comment": null}, "fulfillment_status": {"type": "text", "index": 6, "name": "fulfillment_status", "comment": null}, "is_gift_card": {"type": "boolean", "index": 7, "name": "is_gift_card", "comment": null}, "grams": {"type": "integer", "index": 8, "name": "grams", "comment": null}, "pre_tax_price": {"type": "integer", "index": 9, "name": "pre_tax_price", "comment": null}, "pre_tax_price_set": {"type": "text", "index": 10, "name": "pre_tax_price_set", "comment": null}, "price": {"type": "double precision", "index": 11, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 12, "name": "price_set", "comment": null}, "product_id": {"type": "bigint", "index": 13, "name": "product_id", "comment": null}, "quantity": {"type": "integer", "index": 14, "name": "quantity", "comment": null}, "is_shipping_required": {"type": "boolean", "index": 15, "name": "is_shipping_required", "comment": null}, "sku": {"type": "text", "index": 16, "name": "sku", "comment": null}, "is_taxable": {"type": "boolean", "index": 17, "name": "is_taxable", "comment": null}, "tax_code": {"type": "text", "index": 18, "name": "tax_code", "comment": null}, "title": {"type": "text", "index": 19, "name": "title", "comment": null}, "total_discount": {"type": "integer", "index": 20, "name": "total_discount", "comment": null}, "total_discount_set": {"type": "text", "index": 21, "name": "total_discount_set", "comment": null}, "variant_id": {"type": "bigint", "index": 22, "name": "variant_id", "comment": null}, "variant_title": {"type": "text", "index": 23, "name": "variant_title", "comment": null}, "variant_inventory_management": {"type": "text", "index": 24, "name": "variant_inventory_management", "comment": null}, "vendor": {"type": "text", "index": 25, "name": "vendor", "comment": null}, "properties": {"type": "text", "index": 26, "name": "properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 27, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}, "order_lines_unique_key": {"type": "text", "index": 29, "name": "order_lines_unique_key", "comment": null}, "restock_types": {"type": "text", "index": 30, "name": "restock_types", "comment": null}, "refunded_quantity": {"type": "bigint", "index": 31, "name": "refunded_quantity", "comment": null}, "refunded_subtotal": {"type": "bigint", "index": 32, "name": "refunded_subtotal", "comment": null}, "quantity_net_refunds": {"type": "bigint", "index": 33, "name": "quantity_net_refunds", "comment": null}, "subtotal_net_refunds": {"type": "bigint", "index": 34, "name": "subtotal_net_refunds", "comment": null}, "variant_created_at": {"type": "timestamp without time zone", "index": 35, "name": "variant_created_at", "comment": null}, "variant_updated_at": {"type": "timestamp without time zone", "index": 36, "name": "variant_updated_at", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 37, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 38, "name": "image_id", "comment": null}, "variant_price": {"type": "integer", "index": 39, "name": "variant_price", "comment": null}, "variant_sku": {"type": "integer", "index": 40, "name": "variant_sku", "comment": null}, "variant_position": {"type": "integer", "index": 41, "name": "variant_position", "comment": null}, "variant_inventory_policy": {"type": "text", "index": 42, "name": "variant_inventory_policy", "comment": null}, "variant_compare_at_price": {"type": "integer", "index": 43, "name": "variant_compare_at_price", "comment": null}, "variant_fulfillment_service": {"type": "text", "index": 44, "name": "variant_fulfillment_service", "comment": null}, "variant_is_taxable": {"type": "boolean", "index": 45, "name": "variant_is_taxable", "comment": null}, "variant_barcode": {"type": "integer", "index": 46, "name": "variant_barcode", "comment": null}, "variant_grams": {"type": "integer", "index": 47, "name": "variant_grams", "comment": null}, "variant_inventory_quantity": {"type": "integer", "index": 48, "name": "variant_inventory_quantity", "comment": null}, "variant_weight": {"type": "integer", "index": 49, "name": "variant_weight", "comment": null}, "variant_weight_unit": {"type": "text", "index": 50, "name": "variant_weight_unit", "comment": null}, "variant_option_1": {"type": "text", "index": 51, "name": "variant_option_1", "comment": null}, "variant_option_2": {"type": "integer", "index": 52, "name": "variant_option_2", "comment": null}, "variant_option_3": {"type": "integer", "index": 53, "name": "variant_option_3", "comment": null}, "variant_tax_code": {"type": "text", "index": 54, "name": "variant_tax_code", "comment": null}, "order_line_tax": {"type": "double precision", "index": 55, "name": "order_line_tax", "comment": null}}, "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.shopify.shopify__order_lines"}, "model.shopify.shopify__order_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__order_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}, "metafield_blade_runner_returnauthorizations": {"type": "text", "index": 81, "name": "metafield_blade_runner_returnauthorizations", "comment": null}}, "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.shopify.shopify__order_metafields"}, "model.shopify.shopify__orders": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__orders", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}, "orders_unique_key": {"type": "text", "index": 81, "name": "orders_unique_key", "comment": null}, "shipping_cost": {"type": "double precision", "index": 82, "name": "shipping_cost", "comment": null}, "order_adjustment_amount": {"type": "bigint", "index": 83, "name": "order_adjustment_amount", "comment": null}, "order_adjustment_tax_amount": {"type": "double precision", "index": 84, "name": "order_adjustment_tax_amount", "comment": null}, "refund_subtotal": {"type": "bigint", "index": 85, "name": "refund_subtotal", "comment": null}, "refund_total_tax": {"type": "double precision", "index": 86, "name": "refund_total_tax", "comment": null}, "order_adjusted_total": {"type": "double precision", "index": 87, "name": "order_adjusted_total", "comment": null}, "line_item_count": {"type": "bigint", "index": 88, "name": "line_item_count", "comment": null}, "shipping_discount_amount": {"type": "double precision", "index": 89, "name": "shipping_discount_amount", "comment": null}, "percentage_calc_discount_amount": {"type": "double precision", "index": 90, "name": "percentage_calc_discount_amount", "comment": null}, "fixed_amount_discount_amount": {"type": "double precision", "index": 91, "name": "fixed_amount_discount_amount", "comment": null}, "count_discount_codes_applied": {"type": "bigint", "index": 92, "name": "count_discount_codes_applied", "comment": null}, "order_total_shipping_tax": {"type": "double precision", "index": 93, "name": "order_total_shipping_tax", "comment": null}, "order_tags": {"type": "text", "index": 94, "name": "order_tags", "comment": null}, "order_url_tags": {"type": "text", "index": 95, "name": "order_url_tags", "comment": null}, "number_of_fulfillments": {"type": "bigint", "index": 96, "name": "number_of_fulfillments", "comment": null}, "fulfillment_services": {"type": "text", "index": 97, "name": "fulfillment_services", "comment": null}, "tracking_companies": {"type": "text", "index": 98, "name": "tracking_companies", "comment": null}, "tracking_numbers": {"type": "text", "index": 99, "name": "tracking_numbers", "comment": null}, "customer_order_seq_number": {"type": "bigint", "index": 100, "name": "customer_order_seq_number", "comment": null}, "new_vs_repeat": {"type": "text", "index": 101, "name": "new_vs_repeat", "comment": null}}, "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.shopify.shopify__orders"}, "model.shopify.shopify__orders__order_line_aggregates": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__orders__order_line_aggregates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "line_item_count": {"type": "bigint", "index": 3, "name": "line_item_count", "comment": null}, "order_total_quantity": {"type": "bigint", "index": 4, "name": "order_total_quantity", "comment": null}, "order_total_tax": {"type": "double precision", "index": 5, "name": "order_total_tax", "comment": null}, "order_total_discount": {"type": "bigint", "index": 6, "name": "order_total_discount", "comment": null}, "order_total_shipping": {"type": "double precision", "index": 7, "name": "order_total_shipping", "comment": null}, "order_total_shipping_with_discounts": {"type": "double precision", "index": 8, "name": "order_total_shipping_with_discounts", "comment": null}, "order_total_shipping_tax": {"type": "double precision", "index": 9, "name": "order_total_shipping_tax", "comment": null}}, "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.shopify.shopify__orders__order_line_aggregates"}, "model.shopify.shopify__product_image_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__product_image_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_image_id": {"type": "integer", "index": 1, "name": "product_image_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "height": {"type": "integer", "index": 3, "name": "height", "comment": null}, "position": {"type": "integer", "index": 4, "name": "position", "comment": null}, "src": {"type": "text", "index": 5, "name": "src", "comment": null}, "variant_ids": {"type": "text", "index": 6, "name": "variant_ids", "comment": null}, "width": {"type": "integer", "index": 7, "name": "width", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_image_metafields"}, "model.shopify.shopify__product_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__product_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_metafields"}, "model.shopify.shopify__product_variant_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__product_variant_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"variant_id": {"type": "bigint", "index": 1, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 4, "name": "image_id", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "price": {"type": "integer", "index": 6, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 9, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 10, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 11, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 12, "name": "inventory_management", "comment": null}, "is_taxable": {"type": "boolean", "index": 13, "name": "is_taxable", "comment": null}, "barcode": {"type": "integer", "index": 14, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 15, "name": "grams", "comment": null}, "inventory_quantity": {"type": "integer", "index": 16, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 17, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 18, "name": "weight_unit", "comment": null}, "option_1": {"type": "text", "index": 19, "name": "option_1", "comment": null}, "option_2": {"type": "integer", "index": 20, "name": "option_2", "comment": null}, "option_3": {"type": "integer", "index": 21, "name": "option_3", "comment": null}, "tax_code": {"type": "text", "index": 22, "name": "tax_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 24, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "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.shopify.shopify__product_variant_metafields"}, "model.shopify.shopify__products": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__products", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}, "collections": {"type": "text", "index": 14, "name": "collections", "comment": null}, "tags": {"type": "text", "index": 15, "name": "tags", "comment": null}, "count_variants": {"type": "bigint", "index": 16, "name": "count_variants", "comment": null}, "has_product_image": {"type": "boolean", "index": 17, "name": "has_product_image", "comment": null}, "total_quantity_sold": {"type": "bigint", "index": 18, "name": "total_quantity_sold", "comment": null}, "subtotal_sold": {"type": "bigint", "index": 19, "name": "subtotal_sold", "comment": null}, "quantity_sold_net_refunds": {"type": "numeric", "index": 20, "name": "quantity_sold_net_refunds", "comment": null}, "subtotal_sold_net_refunds": {"type": "numeric", "index": 21, "name": "subtotal_sold_net_refunds", "comment": null}, "first_order_timestamp": {"type": "timestamp without time zone", "index": 22, "name": "first_order_timestamp", "comment": null}, "most_recent_order_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "most_recent_order_timestamp", "comment": null}, "avg_quantity_per_order_line": {"type": "numeric", "index": 24, "name": "avg_quantity_per_order_line", "comment": null}, "product_total_discount": {"type": "bigint", "index": 25, "name": "product_total_discount", "comment": null}, "product_avg_discount_per_order_line": {"type": "numeric", "index": 26, "name": "product_avg_discount_per_order_line", "comment": null}, "product_total_tax": {"type": "double precision", "index": 27, "name": "product_total_tax", "comment": null}, "product_avg_tax_per_order_line": {"type": "double precision", "index": 28, "name": "product_avg_tax_per_order_line", "comment": null}}, "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.shopify.shopify__products"}, "model.shopify.shopify__shop_metafields": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__shop_metafields", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"shop_id": {"type": "integer", "index": 1, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "province": {"type": "text", "index": 7, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 8, "name": "province_code", "comment": null}, "country": {"type": "text", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 11, "name": "country_name", "comment": null}, "zip": {"type": "integer", "index": 12, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 13, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 14, "name": "longitude", "comment": null}, "has_county_taxes": {"type": "boolean", "index": 15, "name": "has_county_taxes", "comment": null}, "currency": {"type": "text", "index": 16, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 17, "name": "enabled_presentment_currencies", "comment": null}, "customer_email": {"type": "text", "index": 18, "name": "customer_email", "comment": null}, "email": {"type": "text", "index": 19, "name": "email", "comment": null}, "domain": {"type": "text", "index": 20, "name": "domain", "comment": null}, "phone": {"type": "integer", "index": 21, "name": "phone", "comment": null}, "timezone": {"type": "text", "index": 22, "name": "timezone", "comment": null}, "iana_timezone": {"type": "text", "index": 23, "name": "iana_timezone", "comment": null}, "primary_locale": {"type": "text", "index": 24, "name": "primary_locale", "comment": null}, "weight_unit": {"type": "text", "index": 25, "name": "weight_unit", "comment": null}, "myshopify_domain": {"type": "text", "index": 26, "name": "myshopify_domain", "comment": null}, "cookie_consent_level": {"type": "text", "index": 27, "name": "cookie_consent_level", "comment": null}, "shop_owner": {"type": "text", "index": 28, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 29, "name": "source", "comment": null}, "has_shipping_taxes": {"type": "integer", "index": 30, "name": "has_shipping_taxes", "comment": null}, "has_taxes_included_in_price": {"type": "boolean", "index": 31, "name": "has_taxes_included_in_price", "comment": null}, "has_discounts": {"type": "boolean", "index": 32, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 33, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 34, "name": "has_storefront", "comment": null}, "has_checkout_api_supported": {"type": "boolean", "index": 35, "name": "has_checkout_api_supported", "comment": null}, "is_eligible_for_card_reader_giveaway": {"type": "boolean", "index": 36, "name": "is_eligible_for_card_reader_giveaway", "comment": null}, "is_eligible_for_payments": {"type": "boolean", "index": 37, "name": "is_eligible_for_payments", "comment": null}, "google_apps_domain": {"type": "integer", "index": 38, "name": "google_apps_domain", "comment": null}, "is_google_apps_login_enabled": {"type": "boolean", "index": 39, "name": "is_google_apps_login_enabled", "comment": null}, "money_format": {"type": "text", "index": 40, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 41, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 42, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 43, "name": "money_with_currency_in_emails_format", "comment": null}, "plan_display_name": {"type": "text", "index": 44, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 45, "name": "plan_name", "comment": null}, "is_password_enabled": {"type": "boolean", "index": 46, "name": "is_password_enabled", "comment": null}, "is_pre_launch_enabled": {"type": "boolean", "index": 47, "name": "is_pre_launch_enabled", "comment": null}, "is_extra_payments_agreement_required": {"type": "boolean", "index": 48, "name": "is_extra_payments_agreement_required", "comment": null}, "is_setup_required": {"type": "boolean", "index": 49, "name": "is_setup_required", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 50, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 51, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 52, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 53, "name": "source_relation", "comment": null}}, "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.shopify.shopify__shop_metafields"}, "model.shopify.shopify__transactions": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "shopify__transactions", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "bigint", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "device_id": {"type": "integer", "index": 5, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 6, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 7, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 8, "name": "message", "comment": null}, "currency": {"type": "text", "index": 9, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 10, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 12, "name": "payment_avs_result_code", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 13, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 14, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 15, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 16, "name": "payment_credit_card_company", "comment": null}, "kind": {"type": "text", "index": 17, "name": "kind", "comment": null}, "receipt": {"type": "character varying(100)", "index": 18, "name": "receipt", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 19, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 20, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 21, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 22, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 23, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 24, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "user_id": {"type": "integer", "index": 26, "name": "user_id", "comment": null}, "authorization_code": {"type": "text", "index": 27, "name": "authorization_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "created_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "processed_timestamp", "comment": null}, "authorization_expires_at": {"type": "timestamp without time zone", "index": 30, "name": "authorization_expires_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 31, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 32, "name": "source_relation", "comment": null}, "transactions_unique_id": {"type": "text", "index": 33, "name": "transactions_unique_id", "comment": null}, "payment_method": {"type": "text", "index": 34, "name": "payment_method", "comment": null}, "parent_created_timestamp": {"type": "timestamp without time zone", "index": 35, "name": "parent_created_timestamp", "comment": null}, "parent_kind": {"type": "text", "index": 36, "name": "parent_kind", "comment": null}, "parent_amount": {"type": "double precision", "index": 37, "name": "parent_amount", "comment": null}, "parent_status": {"type": "text", "index": 38, "name": "parent_status", "comment": null}, "exchange_rate": {"type": "numeric", "index": 39, "name": "exchange_rate", "comment": null}, "currency_exchange_calculated_amount": {"type": "double precision", "index": 40, "name": "currency_exchange_calculated_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.shopify.shopify__transactions"}, "model.shopify_source.stg_shopify__abandoned_checkout": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"is_deleted": {"type": "boolean", "index": 1, "name": "is_deleted", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 2, "name": "abandoned_checkout_url", "comment": null}, "billing_address_address_1": {"type": "text", "index": 3, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 4, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 5, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 6, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 7, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 8, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 9, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 10, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 11, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 12, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 13, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 14, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 15, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 16, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 17, "name": "billing_address_zip", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 18, "name": "has_buyer_accepted_marketing", "comment": null}, "cart_token": {"type": "text", "index": 19, "name": "cart_token", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 20, "name": "created_at", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 21, "name": "closed_at", "comment": null}, "shop_currency": {"type": "text", "index": 22, "name": "shop_currency", "comment": null}, "customer_id": {"type": "integer", "index": 23, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 24, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 25, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 26, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 27, "name": "gateway", "comment": null}, "checkout_id": {"type": "integer", "index": 28, "name": "checkout_id", "comment": null}, "landing_site_base_url": {"type": "text", "index": 29, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 30, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 31, "name": "name", "comment": null}, "note": {"type": "integer", "index": 32, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 33, "name": "phone", "comment": null}, "presentment_currency": {"type": "text", "index": 34, "name": "presentment_currency", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 36, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 37, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 38, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 39, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 40, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 41, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 42, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 43, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 44, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 45, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 46, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 47, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 48, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 49, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 50, "name": "shipping_address_zip", "comment": null}, "source_name": {"type": "text", "index": 51, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 52, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 53, "name": "has_taxes_included", "comment": null}, "token": {"type": "text", "index": 54, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_duties": {"type": "integer", "index": 56, "name": "total_duties", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 57, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 58, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 59, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 60, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 61, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 62, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 63, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 64, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout"}, "model.shopify_source.stg_shopify__abandoned_checkout_discount_code": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout_discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "discount_id": {"type": "bigint", "index": 3, "name": "discount_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "type": {"type": "character varying", "index": 5, "name": "type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 8, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}, "index": {"type": "bigint", "index": 10, "name": "index", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__abandoned_checkout_discount_code"}, "model.shopify_source.stg_shopify__abandoned_checkout_discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout_discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_discount_code_tmp"}, "model.shopify_source.stg_shopify__abandoned_checkout_shipping_line": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout_shipping_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"abandoned_checkout_shipping_line_id": {"type": "text", "index": 1, "name": "abandoned_checkout_shipping_line_id", "comment": null}, "checkout_id": {"type": "integer", "index": 2, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 3, "name": "index", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "shipping_code": {"type": "text", "index": 5, "name": "shipping_code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 7, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 8, "name": "delivery_expectation_range_max", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 9, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 10, "name": "delivery_expectation_type", "comment": null}, "discounted_price": {"type": "integer", "index": 11, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 17, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_shipping_line"}, "model.shopify_source.stg_shopify__abandoned_checkout_shipping_line_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout_shipping_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_source.stg_shopify__abandoned_checkout_shipping_line_tmp"}, "model.shopify_source.stg_shopify__abandoned_checkout_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__abandoned_checkout_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__abandoned_checkout_tmp"}, "model.shopify_source.stg_shopify__collection": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__collection", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 2, "name": "is_deleted", "comment": null}, "rule_logic": {"type": "text", "index": 3, "name": "rule_logic", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_scope": {"type": "integer", "index": 5, "name": "published_scope", "comment": null}, "rules": {"type": "integer", "index": 6, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 7, "name": "sort_order", "comment": null}, "title": {"type": "character varying", "index": 8, "name": "title", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 9, "name": "published_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__collection"}, "model.shopify_source.stg_shopify__collection_product": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__collection_product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__collection_product"}, "model.shopify_source.stg_shopify__collection_product_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__collection_product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__collection_product_tmp"}, "model.shopify_source.stg_shopify__collection_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__collection_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_source.stg_shopify__collection_tmp"}, "model.shopify_source.stg_shopify__customer": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__customer", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 2, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": null}, "orders_count": {"type": "integer", "index": 5, "name": "orders_count", "comment": null}, "default_address_id": {"type": "bigint", "index": 6, "name": "default_address_id", "comment": null}, "phone": {"type": "integer", "index": 7, "name": "phone", "comment": null}, "account_state": {"type": "text", "index": 8, "name": "account_state", "comment": null}, "is_tax_exempt": {"type": "boolean", "index": 9, "name": "is_tax_exempt", "comment": null}, "total_spent": {"type": "double precision", "index": 10, "name": "total_spent", "comment": null}, "is_verified_email": {"type": "boolean", "index": 11, "name": "is_verified_email", "comment": null}, "note": {"type": "text", "index": 12, "name": "note", "comment": null}, "currency": {"type": "text", "index": 13, "name": "currency", "comment": null}, "marketing_consent_state": {"type": "text", "index": 14, "name": "marketing_consent_state", "comment": null}, "marketing_opt_in_level": {"type": "text", "index": 15, "name": "marketing_opt_in_level", "comment": null}, "marketing_consent_updated_at": {"type": "timestamp without time zone", "index": 16, "name": "marketing_consent_updated_at", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 17, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 18, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__customer"}, "model.shopify_source.stg_shopify__customer_tag": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__customer_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__customer_tag"}, "model.shopify_source.stg_shopify__customer_tag_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__customer_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__customer_tag_tmp"}, "model.shopify_source.stg_shopify__customer_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__customer_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__customer_tmp"}, "model.shopify_source.stg_shopify__discount_code": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"discount_code_id": {"type": "integer", "index": 1, "name": "discount_code_id", "comment": null}, "code": {"type": "text", "index": 2, "name": "code", "comment": null}, "price_rule_id": {"type": "integer", "index": 3, "name": "price_rule_id", "comment": null}, "usage_count": {"type": "double precision", "index": 4, "name": "usage_count", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__discount_code"}, "model.shopify_source.stg_shopify__discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_source.stg_shopify__discount_code_tmp"}, "model.shopify_source.stg_shopify__fulfillment": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__fulfillment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"fulfillment_id": {"type": "integer", "index": 1, "name": "fulfillment_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 3, "name": "order_id", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "service": {"type": "text", "index": 5, "name": "service", "comment": null}, "shipment_status": {"type": "integer", "index": 6, "name": "shipment_status", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 8, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 9, "name": "tracking_number", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 13, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment"}, "model.shopify_source.stg_shopify__fulfillment_event": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__fulfillment_event", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"fulfillment_event_id": {"type": "integer", "index": 1, "name": "fulfillment_event_id", "comment": null}, "fulfillment_id": {"type": "integer", "index": 2, "name": "fulfillment_id", "comment": null}, "shop_id": {"type": "integer", "index": 3, "name": "shop_id", "comment": null}, "order_id": {"type": "integer", "index": 4, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 5, "name": "status", "comment": null}, "message": {"type": "text", "index": 6, "name": "message", "comment": null}, "estimated_delivery_at": {"type": "timestamp without time zone", "index": 7, "name": "estimated_delivery_at", "comment": null}, "happened_at": {"type": "timestamp without time zone", "index": 8, "name": "happened_at", "comment": null}, "address_1": {"type": "integer", "index": 9, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 10, "name": "city", "comment": null}, "province": {"type": "text", "index": 11, "name": "province", "comment": null}, "country": {"type": "text", "index": 12, "name": "country", "comment": null}, "zip": {"type": "text", "index": 13, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 14, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 15, "name": "longitude", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 16, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 17, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 18, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 19, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment_event"}, "model.shopify_source.stg_shopify__fulfillment_event_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__fulfillment_event_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__fulfillment_event_tmp"}, "model.shopify_source.stg_shopify__fulfillment_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__fulfillment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_source.stg_shopify__fulfillment_tmp"}, "model.shopify_source.stg_shopify__inventory_item": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__inventory_item", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "sku": {"type": "integer", "index": 2, "name": "sku", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "cost": {"type": "integer", "index": 4, "name": "cost", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 5, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 6, "name": "province_code_of_origin", "comment": null}, "is_shipping_required": {"type": "integer", "index": 7, "name": "is_shipping_required", "comment": null}, "is_inventory_quantity_tracked": {"type": "integer", "index": 8, "name": "is_inventory_quantity_tracked", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__inventory_item"}, "model.shopify_source.stg_shopify__inventory_item_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__inventory_item_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__inventory_item_tmp"}, "model.shopify_source.stg_shopify__inventory_level": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__inventory_level", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "available_quantity": {"type": "integer", "index": 3, "name": "available_quantity", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__inventory_level"}, "model.shopify_source.stg_shopify__inventory_level_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__inventory_level_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__inventory_level_tmp"}, "model.shopify_source.stg_shopify__location": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__location", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"location_id": {"type": "integer", "index": 1, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "is_active": {"type": "boolean", "index": 4, "name": "is_active", "comment": null}, "address_1": {"type": "text", "index": 5, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 6, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 7, "name": "city", "comment": null}, "country": {"type": "text", "index": 8, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 9, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 10, "name": "country_name", "comment": null}, "is_legacy": {"type": "boolean", "index": 11, "name": "is_legacy", "comment": null}, "localized_country_name": {"type": "text", "index": 12, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 13, "name": "localized_province_name", "comment": null}, "phone": {"type": "integer", "index": 14, "name": "phone", "comment": null}, "province": {"type": "text", "index": 15, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 16, "name": "province_code", "comment": null}, "zip": {"type": "integer", "index": 17, "name": "zip", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 18, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 19, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 20, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 21, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__location"}, "model.shopify_source.stg_shopify__location_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__location_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.shopify_source.stg_shopify__location_tmp"}, "model.shopify_source.stg_shopify__metafield": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__metafield", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"metafield_id": {"type": "integer", "index": 1, "name": "metafield_id", "comment": null}, "description": {"type": "integer", "index": 2, "name": "description", "comment": null}, "namespace": {"type": "text", "index": 3, "name": "namespace", "comment": null}, "key": {"type": "text", "index": 4, "name": "key", "comment": null}, "value": {"type": "text", "index": 5, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 6, "name": "value_type", "comment": null}, "owner_resource_id": {"type": "integer", "index": 7, "name": "owner_resource_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "metafield_reference": {"type": "text", "index": 12, "name": "metafield_reference", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 13, "name": "is_most_recent_record", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__metafield"}, "model.shopify_source.stg_shopify__metafield_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__metafield_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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.shopify_source.stg_shopify__metafield_tmp"}, "model.shopify_source.stg_shopify__order": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "total_discounts": {"type": "double precision", "index": 3, "name": "total_discounts", "comment": null}, "total_discounts_set": {"type": "text", "index": 4, "name": "total_discounts_set", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 5, "name": "total_line_items_price", "comment": null}, "total_line_items_price_set": {"type": "text", "index": 6, "name": "total_line_items_price_set", "comment": null}, "total_price": {"type": "double precision", "index": 7, "name": "total_price", "comment": null}, "total_price_set": {"type": "text", "index": 8, "name": "total_price_set", "comment": null}, "total_tax_set": {"type": "text", "index": 9, "name": "total_tax_set", "comment": null}, "total_tax": {"type": "integer", "index": 10, "name": "total_tax", "comment": null}, "source_name": {"type": "text", "index": 11, "name": "source_name", "comment": null}, "subtotal_price": {"type": "double precision", "index": 12, "name": "subtotal_price", "comment": null}, "has_taxes_included": {"type": "boolean", "index": 13, "name": "has_taxes_included", "comment": null}, "total_weight": {"type": "integer", "index": 14, "name": "total_weight", "comment": null}, "total_tip_received": {"type": "double precision", "index": 15, "name": "total_tip_received", "comment": null}, "landing_site_base_url": {"type": "text", "index": 16, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "bigint", "index": 17, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 18, "name": "name", "comment": null}, "note": {"type": "text", "index": 19, "name": "note", "comment": null}, "number": {"type": "integer", "index": 20, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 21, "name": "order_number", "comment": null}, "cancel_reason": {"type": "integer", "index": 22, "name": "cancel_reason", "comment": null}, "cart_token": {"type": "text", "index": 23, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 24, "name": "checkout_token", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 25, "name": "created_timestamp", "comment": null}, "cancelled_timestamp": {"type": "timestamp without time zone", "index": 26, "name": "cancelled_timestamp", "comment": null}, "closed_timestamp": {"type": "timestamp without time zone", "index": 27, "name": "closed_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "processed_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "updated_timestamp", "comment": null}, "currency": {"type": "text", "index": 30, "name": "currency", "comment": null}, "customer_id": {"type": "bigint", "index": 31, "name": "customer_id", "comment": null}, "email": {"type": "text", "index": 32, "name": "email", "comment": null}, "financial_status": {"type": "text", "index": 33, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 34, "name": "fulfillment_status", "comment": null}, "referring_site": {"type": "text", "index": 35, "name": "referring_site", "comment": null}, "billing_address_address_1": {"type": "text", "index": 36, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 37, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 38, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "text", "index": 39, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 40, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 41, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 42, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 43, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "text", "index": 44, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 45, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 46, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "text", "index": 47, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 48, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 49, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 50, "name": "billing_address_zip", "comment": null}, "browser_ip": {"type": "text", "index": 51, "name": "browser_ip", "comment": null}, "total_shipping_price_set": {"type": "text", "index": 52, "name": "total_shipping_price_set", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 53, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 54, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 55, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "text", "index": 56, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 57, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 58, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 59, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 60, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 61, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 62, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 63, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "text", "index": 64, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 65, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 66, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 67, "name": "shipping_address_zip", "comment": null}, "token": {"type": "text", "index": 68, "name": "token", "comment": null}, "app_id": {"type": "integer", "index": 69, "name": "app_id", "comment": null}, "checkout_id": {"type": "integer", "index": 70, "name": "checkout_id", "comment": null}, "client_details_user_agent": {"type": "text", "index": 71, "name": "client_details_user_agent", "comment": null}, "customer_locale": {"type": "text", "index": 72, "name": "customer_locale", "comment": null}, "order_status_url": {"type": "text", "index": 73, "name": "order_status_url", "comment": null}, "presentment_currency": {"type": "text", "index": 74, "name": "presentment_currency", "comment": null}, "is_test_order": {"type": "boolean", "index": 75, "name": "is_test_order", "comment": null}, "is_deleted": {"type": "boolean", "index": 76, "name": "is_deleted", "comment": null}, "has_buyer_accepted_marketing": {"type": "boolean", "index": 77, "name": "has_buyer_accepted_marketing", "comment": null}, "is_confirmed": {"type": "boolean", "index": 78, "name": "is_confirmed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 79, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 80, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order"}, "model.shopify_source.stg_shopify__order_adjustment": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_adjustment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_adjustment_id": {"type": "bigint", "index": 1, "name": "order_adjustment_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "amount_set": {"type": "integer", "index": 5, "name": "amount_set", "comment": null}, "tax_amount": {"type": "double precision", "index": 6, "name": "tax_amount", "comment": null}, "tax_amount_set": {"type": "integer", "index": 7, "name": "tax_amount_set", "comment": null}, "kind": {"type": "text", "index": 8, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 9, "name": "reason", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_adjustment"}, "model.shopify_source.stg_shopify__order_adjustment_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_adjustment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_adjustment_tmp"}, "model.shopify_source.stg_shopify__order_discount_code": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_discount_code", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "type": {"type": "text", "index": 4, "name": "type", "comment": null}, "amount": {"type": "double precision", "index": 5, "name": "amount", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 6, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_discount_code"}, "model.shopify_source.stg_shopify__order_discount_code_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_discount_code_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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.shopify_source.stg_shopify__order_discount_code_tmp"}, "model.shopify_source.stg_shopify__order_line": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_id": {"type": "bigint", "index": 1, "name": "order_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "order_id": {"type": "bigint", "index": 4, "name": "order_id", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 5, "name": "fulfillable_quantity", "comment": null}, "fulfillment_status": {"type": "text", "index": 6, "name": "fulfillment_status", "comment": null}, "is_gift_card": {"type": "boolean", "index": 7, "name": "is_gift_card", "comment": null}, "grams": {"type": "integer", "index": 8, "name": "grams", "comment": null}, "pre_tax_price": {"type": "integer", "index": 9, "name": "pre_tax_price", "comment": null}, "pre_tax_price_set": {"type": "text", "index": 10, "name": "pre_tax_price_set", "comment": null}, "price": {"type": "double precision", "index": 11, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 12, "name": "price_set", "comment": null}, "product_id": {"type": "bigint", "index": 13, "name": "product_id", "comment": null}, "quantity": {"type": "integer", "index": 14, "name": "quantity", "comment": null}, "is_shipping_required": {"type": "boolean", "index": 15, "name": "is_shipping_required", "comment": null}, "sku": {"type": "text", "index": 16, "name": "sku", "comment": null}, "is_taxable": {"type": "boolean", "index": 17, "name": "is_taxable", "comment": null}, "tax_code": {"type": "text", "index": 18, "name": "tax_code", "comment": null}, "title": {"type": "text", "index": 19, "name": "title", "comment": null}, "total_discount": {"type": "integer", "index": 20, "name": "total_discount", "comment": null}, "total_discount_set": {"type": "text", "index": 21, "name": "total_discount_set", "comment": null}, "variant_id": {"type": "bigint", "index": 22, "name": "variant_id", "comment": null}, "variant_title": {"type": "text", "index": 23, "name": "variant_title", "comment": null}, "variant_inventory_management": {"type": "text", "index": 24, "name": "variant_inventory_management", "comment": null}, "vendor": {"type": "text", "index": 25, "name": "vendor", "comment": null}, "properties": {"type": "text", "index": 26, "name": "properties", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 27, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_line"}, "model.shopify_source.stg_shopify__order_line_refund": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_line_refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_line_refund_id": {"type": "bigint", "index": 1, "name": "order_line_refund_id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "order_line_id": {"type": "bigint", "index": 3, "name": "order_line_id", "comment": null}, "subtotal": {"type": "integer", "index": 4, "name": "subtotal", "comment": null}, "subtotal_set": {"type": "integer", "index": 5, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 6, "name": "total_tax", "comment": null}, "total_tax_set": {"type": "integer", "index": 7, "name": "total_tax_set", "comment": null}, "quantity": {"type": "integer", "index": 8, "name": "quantity", "comment": null}, "refund_id": {"type": "bigint", "index": 9, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 10, "name": "restock_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_line_refund"}, "model.shopify_source.stg_shopify__order_line_refund_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_line_refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_source.stg_shopify__order_line_refund_tmp"}, "model.shopify_source.stg_shopify__order_line_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_line_tmp"}, "model.shopify_source.stg_shopify__order_note_attribute": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_note_attribute", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_note_attribute"}, "model.shopify_source.stg_shopify__order_note_attribute_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_note_attribute_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_note_attribute_tmp"}, "model.shopify_source.stg_shopify__order_shipping_line": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_shipping_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_shipping_line_id": {"type": "integer", "index": 1, "name": "order_shipping_line_id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 3, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 4, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 5, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 6, "name": "discounted_price", "comment": null}, "discounted_price_set": {"type": "text", "index": 7, "name": "discounted_price_set", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 10, "name": "price_set", "comment": null}, "is_third_party_required": {"type": "boolean", "index": 11, "name": "is_third_party_required", "comment": null}, "source": {"type": "text", "index": 12, "name": "source", "comment": null}, "title": {"type": "text", "index": 13, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_line"}, "model.shopify_source.stg_shopify__order_shipping_line_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_shipping_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_line_tmp"}, "model.shopify_source.stg_shopify__order_shipping_tax_line": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_shipping_tax_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_shipping_line_id": {"type": "integer", "index": 1, "name": "order_shipping_line_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "price": {"type": "double precision", "index": 3, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 4, "name": "price_set", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_tax_line"}, "model.shopify_source.stg_shopify__order_shipping_tax_line_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_shipping_tax_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__order_shipping_tax_line_tmp"}, "model.shopify_source.stg_shopify__order_tag": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_tag"}, "model.shopify_source.stg_shopify__order_tag_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_tag_tmp"}, "model.shopify_source.stg_shopify__order_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__order_tmp"}, "model.shopify_source.stg_shopify__order_url_tag": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_url_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "integer", "index": 1, "name": "order_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__order_url_tag"}, "model.shopify_source.stg_shopify__order_url_tag_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__order_url_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__order_url_tag_tmp"}, "model.shopify_source.stg_shopify__price_rule": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__price_rule", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"price_rule_id": {"type": "integer", "index": 1, "name": "price_rule_id", "comment": null}, "allocation_limit": {"type": "integer", "index": 2, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 3, "name": "allocation_method", "comment": null}, "customer_selection": {"type": "text", "index": 4, "name": "customer_selection", "comment": null}, "is_once_per_customer": {"type": "boolean", "index": 5, "name": "is_once_per_customer", "comment": null}, "prereq_min_quantity": {"type": "integer", "index": 6, "name": "prereq_min_quantity", "comment": null}, "prereq_max_shipping_price": {"type": "integer", "index": 7, "name": "prereq_max_shipping_price", "comment": null}, "prereq_min_subtotal": {"type": "double precision", "index": 8, "name": "prereq_min_subtotal", "comment": null}, "prereq_min_purchase_quantity_for_entitlement": {"type": "integer", "index": 9, "name": "prereq_min_purchase_quantity_for_entitlement", "comment": null}, "prereq_buy_x_get_this": {"type": "integer", "index": 10, "name": "prereq_buy_x_get_this", "comment": null}, "prereq_buy_this_get_y": {"type": "integer", "index": 11, "name": "prereq_buy_this_get_y", "comment": null}, "target_selection": {"type": "text", "index": 12, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 13, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 14, "name": "title", "comment": null}, "usage_limit": {"type": "integer", "index": 15, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 16, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 17, "name": "value_type", "comment": null}, "starts_at": {"type": "timestamp without time zone", "index": 18, "name": "starts_at", "comment": null}, "ends_at": {"type": "timestamp without time zone", "index": 19, "name": "ends_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 20, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 21, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 22, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 23, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__price_rule"}, "model.shopify_source.stg_shopify__price_rule_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__price_rule_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_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.shopify_source.stg_shopify__price_rule_tmp"}, "model.shopify_source.stg_shopify__product": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "bigint", "index": 1, "name": "product_id", "comment": null}, "handle": {"type": "text", "index": 2, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 3, "name": "product_type", "comment": null}, "published_scope": {"type": "text", "index": 4, "name": "published_scope", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 6, "name": "vendor", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 9, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "published_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "published_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 12, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 13, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product"}, "model.shopify_source.stg_shopify__product_image": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_image", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_image_id": {"type": "integer", "index": 1, "name": "product_image_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "height": {"type": "integer", "index": 3, "name": "height", "comment": null}, "position": {"type": "integer", "index": 4, "name": "position", "comment": null}, "src": {"type": "text", "index": 5, "name": "src", "comment": null}, "variant_ids": {"type": "text", "index": 6, "name": "variant_ids", "comment": null}, "width": {"type": "integer", "index": 7, "name": "width", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 8, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_image"}, "model.shopify_source.stg_shopify__product_image_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_image_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_source.stg_shopify__product_image_tmp"}, "model.shopify_source.stg_shopify__product_tag": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"product_id": {"type": "integer", "index": 1, "name": "product_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "value": {"type": "text", "index": 3, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 5, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_tag"}, "model.shopify_source.stg_shopify__product_tag_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.stg_shopify__product_tag_tmp"}, "model.shopify_source.stg_shopify__product_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.stg_shopify__product_tmp"}, "model.shopify_source.stg_shopify__product_variant": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_variant", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"variant_id": {"type": "bigint", "index": 1, "name": "variant_id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "image_id": {"type": "integer", "index": 4, "name": "image_id", "comment": null}, "title": {"type": "text", "index": 5, "name": "title", "comment": null}, "price": {"type": "integer", "index": 6, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 7, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 9, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 10, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 11, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 12, "name": "inventory_management", "comment": null}, "is_taxable": {"type": "boolean", "index": 13, "name": "is_taxable", "comment": null}, "barcode": {"type": "integer", "index": 14, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 15, "name": "grams", "comment": null}, "inventory_quantity": {"type": "integer", "index": 16, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 17, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 18, "name": "weight_unit", "comment": null}, "option_1": {"type": "text", "index": 19, "name": "option_1", "comment": null}, "option_2": {"type": "integer", "index": 20, "name": "option_2", "comment": null}, "option_3": {"type": "integer", "index": 21, "name": "option_3", "comment": null}, "tax_code": {"type": "text", "index": 22, "name": "tax_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 23, "name": "created_timestamp", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 24, "name": "updated_timestamp", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__product_variant"}, "model.shopify_source.stg_shopify__product_variant_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__product_variant_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_source.stg_shopify__product_variant_tmp"}, "model.shopify_source.stg_shopify__refund": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__refund", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"refund_id": {"type": "bigint", "index": 1, "name": "refund_id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "order_id": {"type": "bigint", "index": 3, "name": "order_id", "comment": null}, "restock": {"type": "boolean", "index": 4, "name": "restock", "comment": null}, "total_duties_set": {"type": "integer", "index": 5, "name": "total_duties_set", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 8, "name": "processed_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__refund"}, "model.shopify_source.stg_shopify__refund_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__refund_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_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.shopify_source.stg_shopify__refund_tmp"}, "model.shopify_source.stg_shopify__shop": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__shop", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"shop_id": {"type": "integer", "index": 1, "name": "shop_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 3, "name": "is_deleted", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "province": {"type": "text", "index": 7, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 8, "name": "province_code", "comment": null}, "country": {"type": "text", "index": 9, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 11, "name": "country_name", "comment": null}, "zip": {"type": "integer", "index": 12, "name": "zip", "comment": null}, "latitude": {"type": "double precision", "index": 13, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 14, "name": "longitude", "comment": null}, "has_county_taxes": {"type": "boolean", "index": 15, "name": "has_county_taxes", "comment": null}, "currency": {"type": "text", "index": 16, "name": "currency", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 17, "name": "enabled_presentment_currencies", "comment": null}, "customer_email": {"type": "text", "index": 18, "name": "customer_email", "comment": null}, "email": {"type": "text", "index": 19, "name": "email", "comment": null}, "domain": {"type": "text", "index": 20, "name": "domain", "comment": null}, "phone": {"type": "integer", "index": 21, "name": "phone", "comment": null}, "timezone": {"type": "text", "index": 22, "name": "timezone", "comment": null}, "iana_timezone": {"type": "text", "index": 23, "name": "iana_timezone", "comment": null}, "primary_locale": {"type": "text", "index": 24, "name": "primary_locale", "comment": null}, "weight_unit": {"type": "text", "index": 25, "name": "weight_unit", "comment": null}, "myshopify_domain": {"type": "text", "index": 26, "name": "myshopify_domain", "comment": null}, "cookie_consent_level": {"type": "text", "index": 27, "name": "cookie_consent_level", "comment": null}, "shop_owner": {"type": "text", "index": 28, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 29, "name": "source", "comment": null}, "has_shipping_taxes": {"type": "integer", "index": 30, "name": "has_shipping_taxes", "comment": null}, "has_taxes_included_in_price": {"type": "boolean", "index": 31, "name": "has_taxes_included_in_price", "comment": null}, "has_discounts": {"type": "boolean", "index": 32, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 33, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 34, "name": "has_storefront", "comment": null}, "has_checkout_api_supported": {"type": "boolean", "index": 35, "name": "has_checkout_api_supported", "comment": null}, "is_eligible_for_card_reader_giveaway": {"type": "boolean", "index": 36, "name": "is_eligible_for_card_reader_giveaway", "comment": null}, "is_eligible_for_payments": {"type": "boolean", "index": 37, "name": "is_eligible_for_payments", "comment": null}, "google_apps_domain": {"type": "integer", "index": 38, "name": "google_apps_domain", "comment": null}, "is_google_apps_login_enabled": {"type": "boolean", "index": 39, "name": "is_google_apps_login_enabled", "comment": null}, "money_format": {"type": "text", "index": 40, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 41, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 42, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 43, "name": "money_with_currency_in_emails_format", "comment": null}, "plan_display_name": {"type": "text", "index": 44, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 45, "name": "plan_name", "comment": null}, "is_password_enabled": {"type": "boolean", "index": 46, "name": "is_password_enabled", "comment": null}, "is_pre_launch_enabled": {"type": "boolean", "index": 47, "name": "is_pre_launch_enabled", "comment": null}, "is_extra_payments_agreement_required": {"type": "boolean", "index": 48, "name": "is_extra_payments_agreement_required", "comment": null}, "is_setup_required": {"type": "boolean", "index": 49, "name": "is_setup_required", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 50, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 51, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 52, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 53, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__shop"}, "model.shopify_source.stg_shopify__shop_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__shop_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_source.stg_shopify__shop_tmp"}, "model.shopify_source.stg_shopify__tax_line": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__tax_line", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "price": {"type": "double precision", "index": 3, "name": "price", "comment": null}, "price_set": {"type": "text", "index": 4, "name": "price_set", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__tax_line"}, "model.shopify_source.stg_shopify__tax_line_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__tax_line_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.stg_shopify__tax_line_tmp"}, "model.shopify_source.stg_shopify__tender_transaction": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__tender_transaction", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "integer", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "payment_method": {"type": "text", "index": 5, "name": "payment_method", "comment": null}, "remote_reference": {"type": "integer", "index": 6, "name": "remote_reference", "comment": null}, "user_id": {"type": "integer", "index": 7, "name": "user_id", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 8, "name": "processed_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__tender_transaction"}, "model.shopify_source.stg_shopify__tender_transaction_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__tender_transaction_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_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.shopify_source.stg_shopify__tender_transaction_tmp"}, "model.shopify_source.stg_shopify__transaction": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__transaction", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"transaction_id": {"type": "bigint", "index": 1, "name": "transaction_id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "device_id": {"type": "integer", "index": 5, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 6, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 7, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 8, "name": "message", "comment": null}, "currency": {"type": "text", "index": 9, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 10, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 12, "name": "payment_avs_result_code", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 13, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 14, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 15, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 16, "name": "payment_credit_card_company", "comment": null}, "kind": {"type": "text", "index": 17, "name": "kind", "comment": null}, "receipt": {"type": "character varying(100)", "index": 18, "name": "receipt", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 19, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 20, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 21, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 22, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 23, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 24, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 25, "name": "status", "comment": null}, "user_id": {"type": "integer", "index": 26, "name": "user_id", "comment": null}, "authorization_code": {"type": "text", "index": 27, "name": "authorization_code", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 28, "name": "created_timestamp", "comment": null}, "processed_timestamp": {"type": "timestamp without time zone", "index": 29, "name": "processed_timestamp", "comment": null}, "authorization_expires_at": {"type": "timestamp without time zone", "index": 30, "name": "authorization_expires_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 31, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 32, "name": "source_relation", "comment": null}}, "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.shopify_source.stg_shopify__transaction"}, "model.shopify_source.stg_shopify__transaction_tmp": {"metadata": {"type": "VIEW", "schema": "shopify_integration_tests_11_shopify", "name": "stg_shopify__transaction_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_source.stg_shopify__transaction_tmp"}}, "sources": {"source.shopify_source.shopify.abandoned_checkout": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "abandoned_checkout_url": {"type": "text", "index": 3, "name": "abandoned_checkout_url", "comment": null}, "applied_discount_amount": {"type": "integer", "index": 4, "name": "applied_discount_amount", "comment": null}, "applied_discount_applicable": {"type": "integer", "index": 5, "name": "applied_discount_applicable", "comment": null}, "applied_discount_description": {"type": "integer", "index": 6, "name": "applied_discount_description", "comment": null}, "applied_discount_non_applicable_reason": {"type": "integer", "index": 7, "name": "applied_discount_non_applicable_reason", "comment": null}, "applied_discount_title": {"type": "integer", "index": 8, "name": "applied_discount_title", "comment": null}, "applied_discount_value": {"type": "integer", "index": 9, "name": "applied_discount_value", "comment": null}, "applied_discount_value_type": {"type": "integer", "index": 10, "name": "applied_discount_value_type", "comment": null}, "billing_address_address_1": {"type": "text", "index": 11, "name": "billing_address_address_1", "comment": null}, "billing_address_address_0": {"type": "text", "index": 12, "name": "billing_address_address_0", "comment": null}, "billing_address_city": {"type": "text", "index": 13, "name": "billing_address_city", "comment": null}, "billing_address_company": {"type": "integer", "index": 14, "name": "billing_address_company", "comment": null}, "billing_address_country": {"type": "text", "index": 15, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 16, "name": "billing_address_country_code", "comment": null}, "billing_address_first_name": {"type": "text", "index": 17, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 18, "name": "billing_address_last_name", "comment": null}, "billing_address_latitude": {"type": "double precision", "index": 19, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "double precision", "index": 20, "name": "billing_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 21, "name": "billing_address_name", "comment": null}, "billing_address_phone": {"type": "character varying", "index": 22, "name": "billing_address_phone", "comment": null}, "billing_address_province": {"type": "text", "index": 23, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "text", "index": 24, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "integer", "index": 25, "name": "billing_address_zip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 26, "name": "buyer_accepts_marketing", "comment": null}, "cart_token": {"type": "text", "index": 27, "name": "cart_token", "comment": null}, "closed_at": {"type": "timestamp without time zone", "index": 28, "name": "closed_at", "comment": null}, "completed_at": {"type": "integer", "index": 29, "name": "completed_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 30, "name": "created_at", "comment": null}, "credit_card_first_name": {"type": "integer", "index": 31, "name": "credit_card_first_name", "comment": null}, "credit_card_last_name": {"type": "integer", "index": 32, "name": "credit_card_last_name", "comment": null}, "credit_card_month": {"type": "integer", "index": 33, "name": "credit_card_month", "comment": null}, "credit_card_number": {"type": "integer", "index": 34, "name": "credit_card_number", "comment": null}, "credit_card_verification_value": {"type": "integer", "index": 35, "name": "credit_card_verification_value", "comment": null}, "credit_card_year": {"type": "integer", "index": 36, "name": "credit_card_year", "comment": null}, "currency": {"type": "text", "index": 37, "name": "currency", "comment": null}, "customer_id": {"type": "integer", "index": 38, "name": "customer_id", "comment": null}, "customer_locale": {"type": "text", "index": 39, "name": "customer_locale", "comment": null}, "device_id": {"type": "integer", "index": 40, "name": "device_id", "comment": null}, "email": {"type": "text", "index": 41, "name": "email", "comment": null}, "gateway": {"type": "text", "index": 42, "name": "gateway", "comment": null}, "landing_site_base_url": {"type": "text", "index": 43, "name": "landing_site_base_url", "comment": null}, "location_id": {"type": "integer", "index": 44, "name": "location_id", "comment": null}, "name": {"type": "text", "index": 45, "name": "name", "comment": null}, "note": {"type": "integer", "index": 46, "name": "note", "comment": null}, "phone": {"type": "integer", "index": 47, "name": "phone", "comment": null}, "referring_site": {"type": "text", "index": 48, "name": "referring_site", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 49, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_0": {"type": "text", "index": 50, "name": "shipping_address_address_0", "comment": null}, "shipping_address_city": {"type": "text", "index": 51, "name": "shipping_address_city", "comment": null}, "shipping_address_company": {"type": "integer", "index": 52, "name": "shipping_address_company", "comment": null}, "shipping_address_country": {"type": "text", "index": 53, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 54, "name": "shipping_address_country_code", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 55, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 56, "name": "shipping_address_last_name", "comment": null}, "shipping_address_latitude": {"type": "double precision", "index": 57, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "double precision", "index": 58, "name": "shipping_address_longitude", "comment": null}, "shipping_address_name": {"type": "text", "index": 59, "name": "shipping_address_name", "comment": null}, "shipping_address_phone": {"type": "character varying", "index": 60, "name": "shipping_address_phone", "comment": null}, "shipping_address_province": {"type": "text", "index": 61, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "text", "index": 62, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 63, "name": "shipping_address_zip", "comment": null}, "shipping_line": {"type": "integer", "index": 64, "name": "shipping_line", "comment": null}, "shipping_rate_id": {"type": "integer", "index": 65, "name": "shipping_rate_id", "comment": null}, "shipping_rate_price": {"type": "integer", "index": 66, "name": "shipping_rate_price", "comment": null}, "shipping_rate_title": {"type": "integer", "index": 67, "name": "shipping_rate_title", "comment": null}, "source": {"type": "integer", "index": 68, "name": "source", "comment": null}, "source_identifier": {"type": "integer", "index": 69, "name": "source_identifier", "comment": null}, "source_name": {"type": "text", "index": 70, "name": "source_name", "comment": null}, "source_url": {"type": "integer", "index": 71, "name": "source_url", "comment": null}, "subtotal_price": {"type": "double precision", "index": 72, "name": "subtotal_price", "comment": null}, "taxes_included": {"type": "boolean", "index": 73, "name": "taxes_included", "comment": null}, "token": {"type": "text", "index": 74, "name": "token", "comment": null}, "total_discounts": {"type": "double precision", "index": 75, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 76, "name": "total_line_items_price", "comment": null}, "total_price": {"type": "double precision", "index": 77, "name": "total_price", "comment": null}, "total_tax": {"type": "double precision", "index": 78, "name": "total_tax", "comment": null}, "total_weight": {"type": "integer", "index": 79, "name": "total_weight", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 80, "name": "updated_at", "comment": null}, "user_id": {"type": "integer", "index": 81, "name": "user_id", "comment": null}, "note_attribute_littledata_updated_at": {"type": "integer", "index": 82, "name": "note_attribute_littledata_updated_at", "comment": null}, "note_attribute_segment_client_id": {"type": "text", "index": 83, "name": "note_attribute_segment_client_id", "comment": null}, "billing_address_id": {"type": "integer", "index": 84, "name": "billing_address_id", "comment": null}, "billing_address_is_default": {"type": "integer", "index": 85, "name": "billing_address_is_default", "comment": null}, "presentment_currency": {"type": "text", "index": 86, "name": "presentment_currency", "comment": null}, "shipping_address_id": {"type": "integer", "index": 87, "name": "shipping_address_id", "comment": null}, "shipping_address_is_default": {"type": "integer", "index": 88, "name": "shipping_address_is_default", "comment": null}, "total_duties": {"type": "integer", "index": 89, "name": "total_duties", "comment": null}, "note_attribute_email_client_id": {"type": "integer", "index": 90, "name": "note_attribute_email_client_id", "comment": null}, "note_attributes": {"type": "text", "index": 91, "name": "note_attributes", "comment": null}, "note_attribute_google_client_id": {"type": "integer", "index": 92, "name": "note_attribute_google_client_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 93, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.abandoned_checkout"}, "source.shopify_source.shopify.abandoned_checkout_discount_code": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "bigint", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "discount_id": {"type": "bigint", "index": 5, "name": "discount_id", "comment": null}, "code": {"type": "character varying", "index": 6, "name": "code", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "type": {"type": "character varying", "index": 8, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "usage_count": {"type": "integer", "index": 10, "name": "usage_count", "comment": null}}, "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.shopify_source.shopify.abandoned_checkout_discount_code"}, "source.shopify_source.shopify.abandoned_checkout_shipping_line": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_abandoned_checkout_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"checkout_id": {"type": "integer", "index": 1, "name": "checkout_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "api_client_id": {"type": "integer", "index": 4, "name": "api_client_id", "comment": null}, "carrier_identifier": {"type": "integer", "index": 5, "name": "carrier_identifier", "comment": null}, "carrier_service_id": {"type": "integer", "index": 6, "name": "carrier_service_id", "comment": null}, "code": {"type": "text", "index": 7, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 8, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "integer", "index": 9, "name": "discounted_price", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "markup": {"type": "character varying", "index": 11, "name": "markup", "comment": null}, "phone": {"type": "integer", "index": 12, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 13, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 14, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 15, "name": "source", "comment": null}, "title": {"type": "text", "index": 16, "name": "title", "comment": null}, "validation_context": {"type": "integer", "index": 17, "name": "validation_context", "comment": null}, "delivery_expectation_range": {"type": "integer", "index": 18, "name": "delivery_expectation_range", "comment": null}, "delivery_expectation_type": {"type": "integer", "index": 19, "name": "delivery_expectation_type", "comment": null}, "original_shop_markup": {"type": "character varying", "index": 20, "name": "original_shop_markup", "comment": null}, "original_shop_price": {"type": "character varying", "index": 21, "name": "original_shop_price", "comment": null}, "presentment_title": {"type": "text", "index": 22, "name": "presentment_title", "comment": null}, "delivery_expectation_range_min": {"type": "integer", "index": 23, "name": "delivery_expectation_range_min", "comment": null}, "delivery_expectation_range_max": {"type": "integer", "index": 24, "name": "delivery_expectation_range_max", "comment": null}}, "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.shopify_source.shopify.abandoned_checkout_shipping_line"}, "source.shopify_source.shopify.collection": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_collection_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "handle": {"type": "integer", "index": 4, "name": "handle", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 5, "name": "published_at", "comment": null}, "published_scope": {"type": "integer", "index": 6, "name": "published_scope", "comment": null}, "title": {"type": "character varying", "index": 7, "name": "title", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "disjunctive": {"type": "boolean", "index": 9, "name": "disjunctive", "comment": null}, "rules": {"type": "integer", "index": 10, "name": "rules", "comment": null}, "sort_order": {"type": "integer", "index": 11, "name": "sort_order", "comment": null}, "template_suffix": {"type": "integer", "index": 12, "name": "template_suffix", "comment": null}, "body_html": {"type": "integer", "index": 13, "name": "body_html", "comment": null}}, "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.shopify_source.shopify.collection"}, "source.shopify_source.shopify.collection_product": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_collection_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"collection_id": {"type": "integer", "index": 1, "name": "collection_id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.collection_product"}, "source.shopify_source.shopify.customer": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_customer_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "first_name": {"type": "text", "index": 2, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 3, "name": "last_name", "comment": null}, "email": {"type": "character varying", "index": 4, "name": "email", "comment": null}, "phone": {"type": "integer", "index": 5, "name": "phone", "comment": null}, "state": {"type": "text", "index": 6, "name": "state", "comment": null}, "orders_count": {"type": "integer", "index": 7, "name": "orders_count", "comment": null}, "total_spent": {"type": "double precision", "index": 8, "name": "total_spent", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "accepts_marketing": {"type": "boolean", "index": 11, "name": "accepts_marketing", "comment": null}, "tax_exempt": {"type": "boolean", "index": 12, "name": "tax_exempt", "comment": null}, "verified_email": {"type": "boolean", "index": 13, "name": "verified_email", "comment": null}, "default_address_id": {"type": "bigint", "index": 14, "name": "default_address_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 15, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.customer"}, "source.shopify_source.shopify.customer_tag": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_customer_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"customer_id": {"type": "bigint", "index": 1, "name": "customer_id", "comment": null}, "index": {"type": "integer", "index": 2, "name": "index", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.customer_tag"}, "source.shopify_source.shopify.discount_code": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "code": {"type": "text", "index": 3, "name": "code", "comment": null}, "created_at": {"type": "text", "index": 4, "name": "created_at", "comment": null}, "price_rule_id": {"type": "integer", "index": 5, "name": "price_rule_id", "comment": null}, "updated_at": {"type": "text", "index": 6, "name": "updated_at", "comment": null}, "usage_count": {"type": "double precision", "index": 7, "name": "usage_count", "comment": null}}, "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.shopify_source.shopify.discount_code"}, "source.shopify_source.shopify.fulfillment": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_fulfillment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "text", "index": 3, "name": "created_at", "comment": null}, "location_id": {"type": "integer", "index": 4, "name": "location_id", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "tracking_company": {"type": "integer", "index": 7, "name": "tracking_company", "comment": null}, "tracking_number": {"type": "integer", "index": 8, "name": "tracking_number", "comment": null}, "updated_at": {"type": "text", "index": 9, "name": "updated_at", "comment": null}, "tracking_numbers": {"type": "text", "index": 10, "name": "tracking_numbers", "comment": null}, "tracking_urls": {"type": "text", "index": 11, "name": "tracking_urls", "comment": null}, "shipment_status": {"type": "integer", "index": 12, "name": "shipment_status", "comment": null}, "service": {"type": "text", "index": 13, "name": "service", "comment": null}, "name": {"type": "text", "index": 14, "name": "name", "comment": null}, "receipt_authorization": {"type": "integer", "index": 15, "name": "receipt_authorization", "comment": null}}, "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.shopify_source.shopify.fulfillment"}, "source.shopify_source.shopify.fulfillment_event": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_fulfillment_event_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "integer", "index": 3, "name": "address_1", "comment": null}, "city": {"type": "text", "index": 4, "name": "city", "comment": null}, "country": {"type": "text", "index": 5, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "estimated_delivery_at": {"type": "text", "index": 7, "name": "estimated_delivery_at", "comment": null}, "fulfillment_id": {"type": "integer", "index": 8, "name": "fulfillment_id", "comment": null}, "happened_at": {"type": "text", "index": 9, "name": "happened_at", "comment": null}, "latitude": {"type": "double precision", "index": 10, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 11, "name": "longitude", "comment": null}, "message": {"type": "text", "index": 12, "name": "message", "comment": null}, "order_id": {"type": "integer", "index": 13, "name": "order_id", "comment": null}, "province": {"type": "text", "index": 14, "name": "province", "comment": null}, "shop_id": {"type": "integer", "index": 15, "name": "shop_id", "comment": null}, "status": {"type": "text", "index": 16, "name": "status", "comment": null}, "updated_at": {"type": "text", "index": 17, "name": "updated_at", "comment": null}, "zip": {"type": "text", "index": 18, "name": "zip", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 19, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.fulfillment_event"}, "source.shopify_source.shopify.inventory_item": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_inventory_item_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "cost": {"type": "integer", "index": 3, "name": "cost", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "requires_shipping": {"type": "integer", "index": 5, "name": "requires_shipping", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "tracked": {"type": "integer", "index": 7, "name": "tracked", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 8, "name": "updated_at", "comment": null}, "country_code_of_origin": {"type": "integer", "index": 9, "name": "country_code_of_origin", "comment": null}, "province_code_of_origin": {"type": "integer", "index": 10, "name": "province_code_of_origin", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 11, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.inventory_item"}, "source.shopify_source.shopify.inventory_level": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_inventory_level_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"inventory_item_id": {"type": "integer", "index": 1, "name": "inventory_item_id", "comment": null}, "location_id": {"type": "integer", "index": 2, "name": "location_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "available": {"type": "integer", "index": 4, "name": "available", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 5, "name": "updated_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.inventory_level"}, "source.shopify_source.shopify.location": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_location_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "integer", "index": 5, "name": "address_2", "comment": null}, "city": {"type": "text", "index": 6, "name": "city", "comment": null}, "country": {"type": "text", "index": 7, "name": "country", "comment": null}, "created_at": {"type": "text", "index": 8, "name": "created_at", "comment": null}, "legacy": {"type": "boolean", "index": 9, "name": "legacy", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "province": {"type": "text", "index": 12, "name": "province", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "zip": {"type": "integer", "index": 14, "name": "zip", "comment": null}, "country_code": {"type": "text", "index": 15, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 16, "name": "country_name", "comment": null}, "localized_country_name": {"type": "text", "index": 17, "name": "localized_country_name", "comment": null}, "localized_province_name": {"type": "text", "index": 18, "name": "localized_province_name", "comment": null}, "province_code": {"type": "text", "index": 19, "name": "province_code", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 20, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.location"}, "source.shopify_source.shopify.metafield": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_metafield_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "description": {"type": "integer", "index": 4, "name": "description", "comment": null}, "key": {"type": "text", "index": 5, "name": "key", "comment": null}, "namespace": {"type": "text", "index": 6, "name": "namespace", "comment": null}, "owner_id": {"type": "integer", "index": 7, "name": "owner_id", "comment": null}, "owner_resource": {"type": "text", "index": 8, "name": "owner_resource", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 9, "name": "updated_at", "comment": null}, "value": {"type": "text", "index": 10, "name": "value", "comment": null}, "value_type": {"type": "character varying", "index": 11, "name": "value_type", "comment": null}, "type": {"type": "character varying", "index": 12, "name": "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": "source.shopify_source.shopify.metafield"}, "source.shopify_source.shopify.order_adjustment": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_adjustment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "integer", "index": 4, "name": "amount", "comment": null}, "tax_amount": {"type": "double precision", "index": 5, "name": "tax_amount", "comment": null}, "kind": {"type": "text", "index": 6, "name": "kind", "comment": null}, "reason": {"type": "text", "index": 7, "name": "reason", "comment": null}, "amount_set": {"type": "integer", "index": 8, "name": "amount_set", "comment": null}, "tax_amount_set": {"type": "integer", "index": 9, "name": "tax_amount_set", "comment": null}, "_fivetran_synced": {"type": "text", "index": 10, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order_adjustment"}, "source.shopify_source.shopify.order": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "note": {"type": "text", "index": 2, "name": "note", "comment": null}, "email": {"type": "text", "index": 3, "name": "email", "comment": null}, "taxes_included": {"type": "boolean", "index": 4, "name": "taxes_included", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "subtotal_price": {"type": "double precision", "index": 6, "name": "subtotal_price", "comment": null}, "total_tax": {"type": "integer", "index": 7, "name": "total_tax", "comment": null}, "total_price": {"type": "double precision", "index": 8, "name": "total_price", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 10, "name": "updated_at", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "shipping_address_name": {"type": "text", "index": 12, "name": "shipping_address_name", "comment": null}, "shipping_address_first_name": {"type": "text", "index": 13, "name": "shipping_address_first_name", "comment": null}, "shipping_address_last_name": {"type": "text", "index": 14, "name": "shipping_address_last_name", "comment": null}, "shipping_address_company": {"type": "text", "index": 15, "name": "shipping_address_company", "comment": null}, "shipping_address_phone": {"type": "text", "index": 16, "name": "shipping_address_phone", "comment": null}, "shipping_address_address_1": {"type": "text", "index": 17, "name": "shipping_address_address_1", "comment": null}, "shipping_address_address_2": {"type": "text", "index": 18, "name": "shipping_address_address_2", "comment": null}, "shipping_address_city": {"type": "text", "index": 19, "name": "shipping_address_city", "comment": null}, "shipping_address_country": {"type": "text", "index": 20, "name": "shipping_address_country", "comment": null}, "shipping_address_country_code": {"type": "text", "index": 21, "name": "shipping_address_country_code", "comment": null}, "shipping_address_province": {"type": "text", "index": 22, "name": "shipping_address_province", "comment": null}, "shipping_address_province_code": {"type": "integer", "index": 23, "name": "shipping_address_province_code", "comment": null}, "shipping_address_zip": {"type": "text", "index": 24, "name": "shipping_address_zip", "comment": null}, "shipping_address_latitude": {"type": "text", "index": 25, "name": "shipping_address_latitude", "comment": null}, "shipping_address_longitude": {"type": "text", "index": 26, "name": "shipping_address_longitude", "comment": null}, "billing_address_name": {"type": "text", "index": 27, "name": "billing_address_name", "comment": null}, "billing_address_first_name": {"type": "text", "index": 28, "name": "billing_address_first_name", "comment": null}, "billing_address_last_name": {"type": "text", "index": 29, "name": "billing_address_last_name", "comment": null}, "billing_address_company": {"type": "text", "index": 30, "name": "billing_address_company", "comment": null}, "billing_address_phone": {"type": "text", "index": 31, "name": "billing_address_phone", "comment": null}, "billing_address_address_1": {"type": "text", "index": 32, "name": "billing_address_address_1", "comment": null}, "billing_address_address_2": {"type": "text", "index": 33, "name": "billing_address_address_2", "comment": null}, "billing_address_city": {"type": "text", "index": 34, "name": "billing_address_city", "comment": null}, "billing_address_country": {"type": "text", "index": 35, "name": "billing_address_country", "comment": null}, "billing_address_country_code": {"type": "text", "index": 36, "name": "billing_address_country_code", "comment": null}, "billing_address_province": {"type": "text", "index": 37, "name": "billing_address_province", "comment": null}, "billing_address_province_code": {"type": "integer", "index": 38, "name": "billing_address_province_code", "comment": null}, "billing_address_zip": {"type": "text", "index": 39, "name": "billing_address_zip", "comment": null}, "billing_address_latitude": {"type": "text", "index": 40, "name": "billing_address_latitude", "comment": null}, "billing_address_longitude": {"type": "text", "index": 41, "name": "billing_address_longitude", "comment": null}, "customer_id": {"type": "bigint", "index": 42, "name": "customer_id", "comment": null}, "location_id": {"type": "bigint", "index": 43, "name": "location_id", "comment": null}, "user_id": {"type": "bigint", "index": 44, "name": "user_id", "comment": null}, "number": {"type": "integer", "index": 45, "name": "number", "comment": null}, "order_number": {"type": "integer", "index": 46, "name": "order_number", "comment": null}, "financial_status": {"type": "text", "index": 47, "name": "financial_status", "comment": null}, "fulfillment_status": {"type": "text", "index": 48, "name": "fulfillment_status", "comment": null}, "processed_at": {"type": "timestamp without time zone", "index": 49, "name": "processed_at", "comment": null}, "processing_method": {"type": "text", "index": 50, "name": "processing_method", "comment": null}, "referring_site": {"type": "text", "index": 51, "name": "referring_site", "comment": null}, "cancel_reason": {"type": "integer", "index": 52, "name": "cancel_reason", "comment": null}, "cancelled_at": {"type": "timestamp without time zone", "index": 53, "name": "cancelled_at", "comment": null}, "closed_at": {"type": "text", "index": 54, "name": "closed_at", "comment": null}, "total_discounts": {"type": "double precision", "index": 55, "name": "total_discounts", "comment": null}, "total_line_items_price": {"type": "double precision", "index": 56, "name": "total_line_items_price", "comment": null}, "total_weight": {"type": "integer", "index": 57, "name": "total_weight", "comment": null}, "source_name": {"type": "text", "index": 58, "name": "source_name", "comment": null}, "browser_ip": {"type": "text", "index": 59, "name": "browser_ip", "comment": null}, "buyer_accepts_marketing": {"type": "boolean", "index": 60, "name": "buyer_accepts_marketing", "comment": null}, "token": {"type": "text", "index": 61, "name": "token", "comment": null}, "cart_token": {"type": "text", "index": 62, "name": "cart_token", "comment": null}, "checkout_token": {"type": "text", "index": 63, "name": "checkout_token", "comment": null}, "test": {"type": "boolean", "index": 64, "name": "test", "comment": null}, "landing_site_base_url": {"type": "text", "index": 65, "name": "landing_site_base_url", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 66, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order"}, "source.shopify_source.shopify.order_discount_code": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_discount_code_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "type": {"type": "text", "index": 6, "name": "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": "source.shopify_source.shopify.order_discount_code"}, "source.shopify_source.shopify.order_line": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"order_id": {"type": "bigint", "index": 1, "name": "order_id", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 3, "name": "product_id", "comment": null}, "variant_id": {"type": "bigint", "index": 4, "name": "variant_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "vendor": {"type": "text", "index": 7, "name": "vendor", "comment": null}, "price": {"type": "double precision", "index": 8, "name": "price", "comment": null}, "quantity": {"type": "integer", "index": 9, "name": "quantity", "comment": null}, "grams": {"type": "integer", "index": 10, "name": "grams", "comment": null}, "sku": {"type": "text", "index": 11, "name": "sku", "comment": null}, "fulfillable_quantity": {"type": "integer", "index": 12, "name": "fulfillable_quantity", "comment": null}, "fulfillment_service": {"type": "text", "index": 13, "name": "fulfillment_service", "comment": null}, "gift_card": {"type": "boolean", "index": 14, "name": "gift_card", "comment": null}, "requires_shipping": {"type": "boolean", "index": 15, "name": "requires_shipping", "comment": null}, "taxable": {"type": "boolean", "index": 16, "name": "taxable", "comment": null}, "index": {"type": "integer", "index": 17, "name": "index", "comment": null}, "total_discount": {"type": "integer", "index": 18, "name": "total_discount", "comment": null}, "pre_tax_price": {"type": "integer", "index": 19, "name": "pre_tax_price", "comment": null}, "fulfillment_status": {"type": "text", "index": 20, "name": "fulfillment_status", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 21, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.order_line"}, "source.shopify_source.shopify.order_line_refund": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_line_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "location_id": {"type": "bigint", "index": 2, "name": "location_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "restock_type": {"type": "text", "index": 4, "name": "restock_type", "comment": null}, "quantity": {"type": "integer", "index": 5, "name": "quantity", "comment": null}, "order_line_id": {"type": "bigint", "index": 6, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "subtotal": {"type": "integer", "index": 8, "name": "subtotal", "comment": null}, "total_tax_set": {"type": "integer", "index": 9, "name": "total_tax_set", "comment": null}, "subtotal_set": {"type": "integer", "index": 10, "name": "subtotal_set", "comment": null}, "total_tax": {"type": "double precision", "index": 11, "name": "total_tax", "comment": null}}, "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.shopify_source.shopify.order_line_refund"}, "source.shopify_source.shopify.order_note_attribute": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_note_attribute_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"name": {"type": "text", "index": 1, "name": "name", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_note_attribute"}, "source.shopify_source.shopify.order_shipping_line": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_shipping_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "carrier_identifier": {"type": "integer", "index": 4, "name": "carrier_identifier", "comment": null}, "code": {"type": "text", "index": 5, "name": "code", "comment": null}, "delivery_category": {"type": "integer", "index": 6, "name": "delivery_category", "comment": null}, "discounted_price": {"type": "double precision", "index": 7, "name": "discounted_price", "comment": null}, "phone": {"type": "integer", "index": 8, "name": "phone", "comment": null}, "price": {"type": "double precision", "index": 9, "name": "price", "comment": null}, "requested_fulfillment_service_id": {"type": "integer", "index": 10, "name": "requested_fulfillment_service_id", "comment": null}, "source": {"type": "text", "index": 11, "name": "source", "comment": null}, "title": {"type": "text", "index": 12, "name": "title", "comment": null}, "discounted_price_set": {"type": "text", "index": 13, "name": "discounted_price_set", "comment": null}, "price_set": {"type": "text", "index": 14, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.order_shipping_line"}, "source.shopify_source.shopify.order_shipping_tax_line": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_shipping_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_shipping_line_id": {"type": "integer", "index": 2, "name": "order_shipping_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.order_shipping_tax_line"}, "source.shopify_source.shopify.order_tag": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_tag"}, "source.shopify_source.shopify.order_url_tag": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_order_url_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "text", "index": 1, "name": "key", "comment": null}, "order_id": {"type": "integer", "index": 2, "name": "order_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.order_url_tag"}, "source.shopify_source.shopify.price_rule": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_price_rule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "allocation_limit": {"type": "integer", "index": 3, "name": "allocation_limit", "comment": null}, "allocation_method": {"type": "text", "index": 4, "name": "allocation_method", "comment": null}, "created_at": {"type": "text", "index": 5, "name": "created_at", "comment": null}, "customer_selection": {"type": "text", "index": 6, "name": "customer_selection", "comment": null}, "ends_at": {"type": "text", "index": 7, "name": "ends_at", "comment": null}, "once_per_customer": {"type": "boolean", "index": 8, "name": "once_per_customer", "comment": null}, "prerequisite_quantity_range": {"type": "integer", "index": 9, "name": "prerequisite_quantity_range", "comment": null}, "prerequisite_shipping_price_range": {"type": "integer", "index": 10, "name": "prerequisite_shipping_price_range", "comment": null}, "prerequisite_subtotal_range": {"type": "double precision", "index": 11, "name": "prerequisite_subtotal_range", "comment": null}, "quantity_ratio_entitled_quantity": {"type": "integer", "index": 12, "name": "quantity_ratio_entitled_quantity", "comment": null}, "quantity_ratio_prerequisite_quantity": {"type": "integer", "index": 13, "name": "quantity_ratio_prerequisite_quantity", "comment": null}, "starts_at": {"type": "text", "index": 14, "name": "starts_at", "comment": null}, "target_selection": {"type": "text", "index": 15, "name": "target_selection", "comment": null}, "target_type": {"type": "text", "index": 16, "name": "target_type", "comment": null}, "title": {"type": "text", "index": 17, "name": "title", "comment": null}, "updated_at": {"type": "text", "index": 18, "name": "updated_at", "comment": null}, "usage_limit": {"type": "integer", "index": 19, "name": "usage_limit", "comment": null}, "value": {"type": "double precision", "index": 20, "name": "value", "comment": null}, "value_type": {"type": "text", "index": 21, "name": "value_type", "comment": null}, "prerequisite_to_entitlement_purchase_prerequisite_amount": {"type": "integer", "index": 22, "name": "prerequisite_to_entitlement_purchase_prerequisite_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.price_rule"}, "source.shopify_source.shopify.product": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "title": {"type": "text", "index": 2, "name": "title", "comment": null}, "handle": {"type": "text", "index": 3, "name": "handle", "comment": null}, "product_type": {"type": "text", "index": 4, "name": "product_type", "comment": null}, "vendor": {"type": "text", "index": 5, "name": "vendor", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "published_at": {"type": "timestamp without time zone", "index": 8, "name": "published_at", "comment": null}, "published_scope": {"type": "text", "index": 9, "name": "published_scope", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": null}}, "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.shopify_source.shopify.product"}, "source.shopify_source.shopify.product_image": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_image_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 4, "name": "_fivetran_synced", "comment": null}, "alt": {"type": "integer", "index": 5, "name": "alt", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "height": {"type": "integer", "index": 7, "name": "height", "comment": null}, "position": {"type": "integer", "index": 8, "name": "position", "comment": null}, "src": {"type": "text", "index": 9, "name": "src", "comment": null}, "updated_at": {"type": "text", "index": 10, "name": "updated_at", "comment": null}, "width": {"type": "integer", "index": 11, "name": "width", "comment": null}, "is_default": {"type": "boolean", "index": 12, "name": "is_default", "comment": null}, "variant_ids": {"type": "text", "index": 13, "name": "variant_ids", "comment": null}}, "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.shopify_source.shopify.product_image"}, "source.shopify_source.shopify.product_tag": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "product_id": {"type": "integer", "index": 2, "name": "product_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}}, "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.shopify_source.shopify.product_tag"}, "source.shopify_source.shopify.product_variant": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_product_variant_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "product_id": {"type": "bigint", "index": 2, "name": "product_id", "comment": null}, "inventory_item_id": {"type": "bigint", "index": 3, "name": "inventory_item_id", "comment": null}, "title": {"type": "text", "index": 4, "name": "title", "comment": null}, "price": {"type": "integer", "index": 5, "name": "price", "comment": null}, "sku": {"type": "integer", "index": 6, "name": "sku", "comment": null}, "position": {"type": "integer", "index": 7, "name": "position", "comment": null}, "inventory_policy": {"type": "text", "index": 8, "name": "inventory_policy", "comment": null}, "compare_at_price": {"type": "integer", "index": 9, "name": "compare_at_price", "comment": null}, "fulfillment_service": {"type": "text", "index": 10, "name": "fulfillment_service", "comment": null}, "inventory_management": {"type": "text", "index": 11, "name": "inventory_management", "comment": null}, "created_at": {"type": "text", "index": 12, "name": "created_at", "comment": null}, "updated_at": {"type": "text", "index": 13, "name": "updated_at", "comment": null}, "taxable": {"type": "boolean", "index": 14, "name": "taxable", "comment": null}, "barcode": {"type": "integer", "index": 15, "name": "barcode", "comment": null}, "grams": {"type": "integer", "index": 16, "name": "grams", "comment": null}, "image_id": {"type": "integer", "index": 17, "name": "image_id", "comment": null}, "inventory_quantity": {"type": "integer", "index": 18, "name": "inventory_quantity", "comment": null}, "weight": {"type": "integer", "index": 19, "name": "weight", "comment": null}, "weight_unit": {"type": "text", "index": 20, "name": "weight_unit", "comment": null}, "old_inventory_quantity": {"type": "integer", "index": 21, "name": "old_inventory_quantity", "comment": null}, "requires_shipping": {"type": "boolean", "index": 22, "name": "requires_shipping", "comment": null}, "_fivetran_synced": {"type": "text", "index": 23, "name": "_fivetran_synced", "comment": null}, "option_2": {"type": "integer", "index": 24, "name": "option_2", "comment": null}, "tax_code": {"type": "text", "index": 25, "name": "tax_code", "comment": null}, "option_3": {"type": "integer", "index": 26, "name": "option_3", "comment": null}, "option_1": {"type": "text", "index": 27, "name": "option_1", "comment": null}}, "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.shopify_source.shopify.product_variant"}, "source.shopify_source.shopify.refund": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_refund_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "created_at": {"type": "text", "index": 2, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 3, "name": "processed_at", "comment": null}, "note": {"type": "text", "index": 4, "name": "note", "comment": null}, "restock": {"type": "boolean", "index": 5, "name": "restock", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 7, "name": "_fivetran_synced", "comment": null}, "total_duties_set": {"type": "integer", "index": 8, "name": "total_duties_set", "comment": null}, "order_id": {"type": "bigint", "index": 9, "name": "order_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.refund"}, "source.shopify_source.shopify.shop": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_shop_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "address_1": {"type": "text", "index": 4, "name": "address_1", "comment": null}, "address_2": {"type": "text", "index": 5, "name": "address_2", "comment": null}, "auto_configure_tax_inclusivity": {"type": "integer", "index": 6, "name": "auto_configure_tax_inclusivity", "comment": null}, "checkout_api_supported": {"type": "boolean", "index": 7, "name": "checkout_api_supported", "comment": null}, "city": {"type": "text", "index": 8, "name": "city", "comment": null}, "cookie_consent_level": {"type": "text", "index": 9, "name": "cookie_consent_level", "comment": null}, "country": {"type": "text", "index": 10, "name": "country", "comment": null}, "country_code": {"type": "text", "index": 11, "name": "country_code", "comment": null}, "country_name": {"type": "text", "index": 12, "name": "country_name", "comment": null}, "county_taxes": {"type": "boolean", "index": 13, "name": "county_taxes", "comment": null}, "created_at": {"type": "text", "index": 14, "name": "created_at", "comment": null}, "currency": {"type": "text", "index": 15, "name": "currency", "comment": null}, "customer_email": {"type": "text", "index": 16, "name": "customer_email", "comment": null}, "domain": {"type": "text", "index": 17, "name": "domain", "comment": null}, "eligible_for_card_reader_giveaway": {"type": "boolean", "index": 18, "name": "eligible_for_card_reader_giveaway", "comment": null}, "eligible_for_payments": {"type": "boolean", "index": 19, "name": "eligible_for_payments", "comment": null}, "email": {"type": "text", "index": 20, "name": "email", "comment": null}, "enabled_presentment_currencies": {"type": "text", "index": 21, "name": "enabled_presentment_currencies", "comment": null}, "force_ssl": {"type": "boolean", "index": 22, "name": "force_ssl", "comment": null}, "google_apps_domain": {"type": "integer", "index": 23, "name": "google_apps_domain", "comment": null}, "google_apps_login_enabled": {"type": "boolean", "index": 24, "name": "google_apps_login_enabled", "comment": null}, "has_discounts": {"type": "boolean", "index": 25, "name": "has_discounts", "comment": null}, "has_gift_cards": {"type": "boolean", "index": 26, "name": "has_gift_cards", "comment": null}, "has_storefront": {"type": "boolean", "index": 27, "name": "has_storefront", "comment": null}, "iana_timezone": {"type": "text", "index": 28, "name": "iana_timezone", "comment": null}, "latitude": {"type": "double precision", "index": 29, "name": "latitude", "comment": null}, "longitude": {"type": "double precision", "index": 30, "name": "longitude", "comment": null}, "money_format": {"type": "text", "index": 31, "name": "money_format", "comment": null}, "money_in_emails_format": {"type": "text", "index": 32, "name": "money_in_emails_format", "comment": null}, "money_with_currency_format": {"type": "text", "index": 33, "name": "money_with_currency_format", "comment": null}, "money_with_currency_in_emails_format": {"type": "text", "index": 34, "name": "money_with_currency_in_emails_format", "comment": null}, "multi_location_enabled": {"type": "boolean", "index": 35, "name": "multi_location_enabled", "comment": null}, "myshopify_domain": {"type": "text", "index": 36, "name": "myshopify_domain", "comment": null}, "name": {"type": "text", "index": 37, "name": "name", "comment": null}, "password_enabled": {"type": "boolean", "index": 38, "name": "password_enabled", "comment": null}, "phone": {"type": "integer", "index": 39, "name": "phone", "comment": null}, "plan_display_name": {"type": "text", "index": 40, "name": "plan_display_name", "comment": null}, "plan_name": {"type": "text", "index": 41, "name": "plan_name", "comment": null}, "pre_launch_enabled": {"type": "boolean", "index": 42, "name": "pre_launch_enabled", "comment": null}, "primary_locale": {"type": "text", "index": 43, "name": "primary_locale", "comment": null}, "primary_location_id": {"type": "integer", "index": 44, "name": "primary_location_id", "comment": null}, "province": {"type": "text", "index": 45, "name": "province", "comment": null}, "province_code": {"type": "text", "index": 46, "name": "province_code", "comment": null}, "requires_extra_payments_agreement": {"type": "boolean", "index": 47, "name": "requires_extra_payments_agreement", "comment": null}, "setup_required": {"type": "boolean", "index": 48, "name": "setup_required", "comment": null}, "shop_owner": {"type": "text", "index": 49, "name": "shop_owner", "comment": null}, "source": {"type": "integer", "index": 50, "name": "source", "comment": null}, "tax_shipping": {"type": "integer", "index": 51, "name": "tax_shipping", "comment": null}, "taxes_included": {"type": "boolean", "index": 52, "name": "taxes_included", "comment": null}, "timezone": {"type": "text", "index": 53, "name": "timezone", "comment": null}, "updated_at": {"type": "text", "index": 54, "name": "updated_at", "comment": null}, "visitor_tracking_consent_preference": {"type": "text", "index": 55, "name": "visitor_tracking_consent_preference", "comment": null}, "weight_unit": {"type": "text", "index": 56, "name": "weight_unit", "comment": null}, "zip": {"type": "integer", "index": 57, "name": "zip", "comment": null}}, "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.shopify_source.shopify.shop"}, "source.shopify_source.shopify.tax_line": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_tax_line_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "order_line_id": {"type": "integer", "index": 2, "name": "order_line_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "price": {"type": "double precision", "index": 4, "name": "price", "comment": null}, "rate": {"type": "double precision", "index": 5, "name": "rate", "comment": null}, "title": {"type": "text", "index": 6, "name": "title", "comment": null}, "price_set": {"type": "text", "index": 7, "name": "price_set", "comment": null}}, "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.shopify_source.shopify.tax_line"}, "source.shopify_source.shopify.tender_transaction": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_tender_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "amount": {"type": "double precision", "index": 3, "name": "amount", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "order_id": {"type": "integer", "index": 5, "name": "order_id", "comment": null}, "payment_details_credit_card_company": {"type": "integer", "index": 6, "name": "payment_details_credit_card_company", "comment": null}, "payment_details_credit_card_number": {"type": "integer", "index": 7, "name": "payment_details_credit_card_number", "comment": null}, "payment_method": {"type": "text", "index": 8, "name": "payment_method", "comment": null}, "processed_at": {"type": "text", "index": 9, "name": "processed_at", "comment": null}, "remote_reference": {"type": "integer", "index": 10, "name": "remote_reference", "comment": null}, "test": {"type": "boolean", "index": 11, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 12, "name": "user_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.shopify_source.shopify.tender_transaction"}, "source.shopify_source.shopify.transaction": {"metadata": {"type": "BASE TABLE", "schema": "shopify_integration_tests_11", "name": "shopify_transaction_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "order_id": {"type": "bigint", "index": 2, "name": "order_id", "comment": null}, "refund_id": {"type": "bigint", "index": 3, "name": "refund_id", "comment": null}, "amount": {"type": "double precision", "index": 4, "name": "amount", "comment": null}, "authorization": {"type": "text", "index": 5, "name": "authorization", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "processed_at": {"type": "text", "index": 7, "name": "processed_at", "comment": null}, "device_id": {"type": "integer", "index": 8, "name": "device_id", "comment": null}, "gateway": {"type": "text", "index": 9, "name": "gateway", "comment": null}, "source_name": {"type": "text", "index": 10, "name": "source_name", "comment": null}, "message": {"type": "text", "index": 11, "name": "message", "comment": null}, "currency": {"type": "text", "index": 12, "name": "currency", "comment": null}, "location_id": {"type": "integer", "index": 13, "name": "location_id", "comment": null}, "parent_id": {"type": "integer", "index": 14, "name": "parent_id", "comment": null}, "payment_avs_result_code": {"type": "text", "index": 15, "name": "payment_avs_result_code", "comment": null}, "kind": {"type": "text", "index": 16, "name": "kind", "comment": null}, "currency_exchange_id": {"type": "integer", "index": 17, "name": "currency_exchange_id", "comment": null}, "currency_exchange_adjustment": {"type": "integer", "index": 18, "name": "currency_exchange_adjustment", "comment": null}, "currency_exchange_original_amount": {"type": "integer", "index": 19, "name": "currency_exchange_original_amount", "comment": null}, "currency_exchange_final_amount": {"type": "integer", "index": 20, "name": "currency_exchange_final_amount", "comment": null}, "currency_exchange_currency": {"type": "integer", "index": 21, "name": "currency_exchange_currency", "comment": null}, "error_code": {"type": "integer", "index": 22, "name": "error_code", "comment": null}, "status": {"type": "text", "index": 23, "name": "status", "comment": null}, "test": {"type": "boolean", "index": 24, "name": "test", "comment": null}, "user_id": {"type": "integer", "index": 25, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 26, "name": "_fivetran_synced", "comment": null}, "payment_credit_card_bin": {"type": "integer", "index": 27, "name": "payment_credit_card_bin", "comment": null}, "payment_cvv_result_code": {"type": "integer", "index": 28, "name": "payment_cvv_result_code", "comment": null}, "payment_credit_card_number": {"type": "integer", "index": 29, "name": "payment_credit_card_number", "comment": null}, "payment_credit_card_company": {"type": "integer", "index": 30, "name": "payment_credit_card_company", "comment": null}, "receipt": {"type": "character varying(100)", "index": 31, "name": "receipt", "comment": null}}, "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.shopify_source.shopify.transaction"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index c580ce9..ca1e6f8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,30 @@ -Source | \nTable | \nDescription | \nLink | \nMore? | \n
---|---|---|---|---|
\n \n {{ source.source_name }}\n \n | \n \n {{ source.name }}\n | \n \n\n View docs\n | \n\n \n \n \n \n \n \n \n \n | \n|
\n \n \n \n \n Description\n \n | \n